ERC-721
Overview
Max Total Supply
53 5th Dimension Original
Holders
43
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 5th Dimension OriginalLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Fifth_Dimension_Original
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-21 */ // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.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) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } } // 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/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // 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.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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: fifthdimensionog.sol pragma solidity ^0.8.0; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * 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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) // prettier-ignore for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00)) // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if `from` is a blocked operator. /// Can be turned on / off via `enabled`. /// For gas efficiency, you can use tight variable packing to efficiently read / write /// the boolean value for `enabled`. modifier onlyAllowedOperator(address from, bool enabled) virtual { /// @solidity memory-safe-assembly assembly { // This code prioritizes runtime gas costs on a chain with the registry. // As such, we will not use `extcodesize`, but rather abuse the behavior // of `staticcall` returning 1 when called on an empty / missing contract, // to avoid reverting when a chain does not have the registry. if enabled { // Check if `from` is not equal to `msg.sender`, // discarding the upper 96 bits of `from` in case they are dirty. if iszero(eq(shr(96, shl(96, from)), caller())) { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `msg.sender`. mstore(0x3a, caller()) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } } _; } /// @dev Modifier to guard a function from approving a blocked operator. /// Can be turned on / off via `enabled`. /// For efficiency, you can use tight variable packing to efficiently read / write /// the boolean value for `enabled`. modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual { /// @solidity memory-safe-assembly assembly { // For more information on the optimization techniques used, // see the comments in `onlyAllowedOperator`. if enabled { // Store the function selector of `isOperatorAllowed(address,address)`, mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`, discarding the upper 96 bits in case they are dirty. mstore(0x3a, shr(96, shl(96, operator))) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // Restore the part of the free memory pointer that was overwritten. mstore(0x3a, 0) } } _; } } error AlreadyReservedTokens(); error CallerNotOffsetter(); error FunctionLocked(); error InsufficientValue(); error InsufficientMints(); error InsufficientSupply(); error InvalidSignature(); error NoContractMinting(); error ProvenanceHashAlreadySet(); error ProvenanceHashNotSet(); error TokenOffsetAlreadySet(); error TokenOffsetNotSet(); error WithdrawFailed(); interface Offsetable { function setOffset(uint256 randomness) external; } contract Fifth_Dimension_Original is ERC721A, ERC2981, OperatorFilterer, Ownable { using ECDSA for bytes32; string private _baseTokenURI; string public baseExtension = ".json"; uint256 public constant RESERVED = 9; uint256 public SEC_RESERVED = 0; uint256 public constant MAX_SUPPLY = 99; uint256 public PUBLIC_SUPPLY = 90; uint256 public mintPrice = 0.031 ether; string public provenanceHash; bool public operatorFilteringEnabled; bool public mintEnable = false; mapping(bytes4 => bool) public functionLocked; mapping(address => bool) public isUk; mapping(address => bool) public minter; constructor( address _royaltyReceiver, uint96 _royaltyFraction ) ERC721A("5th Dimension Original", "5th Dimension Original") { _registerForOperatorFiltering(); operatorFilteringEnabled = true; minter[0xa8C10eC49dF815e73A881ABbE0Aa7b210f39E2Df] = true; minter[0x79bB164367BB64742E993f381372961a945BF447] = true; minter[0xFd88229910A28D6B319E147b40c822FA5CF38a45] = true; minter[0x6b40a842e05D60081F5474046c713b294B4BbC63] = true; minter[0x8528fA2503c49893B704B981e0cBAC021E678789] = true; _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction); } /** * @notice Modifier applied to functions that will be disabled when they're no longer needed */ modifier lockable() { if (functionLocked[msg.sig]) revert FunctionLocked(); _; } modifier onlyMinter() { require(minter[msg.sender] == true, "You're not a minter"); _; } /** * @inheritdoc ERC721A */ function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } /** * @notice Override ERC721A _baseURI function to use base URI pattern */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension)) : ""; } /** * @notice Return the number of tokens an address has minted * @param account Address to return the number of tokens minted for */ function numberMinted(address account) external view returns (uint256) { return _numberMinted(account); } /** * @notice Lock a function so that it can no longer be called * @dev WARNING: THIS CANNOT BE UNDONE * @param id Function signature */ function lockFunction(bytes4 id) external onlyOwner { functionLocked[id] = true; } /** * @notice Set the state of the OpenSea operator filter * @param value Flag indicating if the operator filter should be applied to transfers and approvals */ function setOperatorFilteringEnabled(bool value) external lockable onlyOwner { operatorFilteringEnabled = value; } /** * @notice Set new royalties settings for the collection * @param receiver Address to receive royalties * @param royaltyFraction Royalty fee respective to fee denominator (10_000) */ function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner { _setDefaultRoyalty(receiver, royaltyFraction); } /** * @notice Set token metadata base URI * @param _newBaseURI New base URI */ function setBaseURI(string calldata _newBaseURI) external lockable onlyOwner { _baseTokenURI = _newBaseURI; } /** * @notice Set provenance hash for the collection * @param _provenanceHash New hash of the metadata */ function setProvenanceHash(string calldata _provenanceHash) external lockable onlyOwner { if (bytes(provenanceHash).length != 0) revert ProvenanceHashAlreadySet(); provenanceHash = _provenanceHash; } /** * @notice Mint `RESERVED` amount of tokens to an address * @param to Address to send the reserved tokens */ function reserve(address to) external lockable onlyOwner { if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens(); _mint(to, RESERVED); } function secondaryReserve(address to, uint256 quantity) external lockable onlyOwner { require(_totalMinted() + quantity <= MAX_SUPPLY,"Exceeds Maximum Supply"); _mint(to, quantity); } function publicMint(address to, uint256 quantity, bool _isUk) external payable onlyMinter{ require(mintEnable == true, "Minting is not yet open."); require(quantity <= PUBLIC_SUPPLY, "NFT amount exceeds"); require(_totalMinted() + quantity <= MAX_SUPPLY , "Exceeds Maximum Supply" ); uint totalCost = quantity * mintPrice; require( msg.value >= totalCost, "Ether sent is not correct." ); _mint(to, quantity); PUBLIC_SUPPLY -= quantity; isUk[to] = _isUk; if (msg.value > totalCost) { payable(msg.sender).transfer(msg.value - totalCost); } } function setMintPrice(uint256 _newPrice) external onlyOwner() { mintPrice = _newPrice; } function setPublicSupply(uint256 _newSupply) external onlyOwner() { PUBLIC_SUPPLY = _newSupply; } function setSecondaryReserve(uint256 amount) external onlyOwner() { SEC_RESERVED = amount; } function enableMinting(bool _enable) external onlyOwner{ mintEnable = _enable; } function assignMinterRole(address _minter) external onlyOwner{ require(minter[_minter] == false, "Already a minter"); minter[_minter] = true; } function revokeMinterRole(address _minter) external onlyOwner{ require(minter[_minter] == true, "Not a minter"); minter[_minter] = false; } /** * @notice Withdraw all ETH sent to the contract */ function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); if (!success) revert WithdrawFailed(); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator, operatorFilteringEnabled) { super.setApprovalForAll(operator, approved); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator, operatorFilteringEnabled) { super.approve(operator, tokenId); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) { super.transferFrom(from, to, tokenId); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) { super.safeTransferFrom(from, to, tokenId); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEC_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"assignMinterRole","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"secondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSecondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a919062000960565b506000600d55605a600e55666e2255f4098000600f556000601160016101000a81548160ff0219169083151502179055503480156200008857600080fd5b5060405162005541380380620055418339818101604052810190620000ae919062000afa565b6040518060400160405280601681526020017f3574682044696d656e73696f6e204f726967696e616c000000000000000000008152506040518060400160405280601681526020017f3574682044696d656e73696f6e204f726967696e616c0000000000000000000081525081600290816200012b919062000960565b5080600390816200013d919062000960565b506200014e620003d760201b60201c565b6000819055505050620001766200016a620003e060201b60201c565b620003e860201b60201c565b62000186620004ae60201b60201c565b6001601160006101000a81548160ff02191690831515021790555060016014600073a8c10ec49df815e73a881abbe0aa7b210f39e2df73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460007379bb164367bb64742e993f381372961a945bf44773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600073fd88229910a28d6b319e147b40c822fa5cf38a4573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000736b40a842e05d60081f5474046c713b294b4bbc6373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000738528fa2503c49893b704b981e0cbac021e67878973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003cf8282620004d760201b60201c565b505062000c5c565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004d5733cc6cdda760b79bafa08df41ecfa224f810dceb660016200067a60201b60201c565b565b620004e7620006dc60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000548576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053f9062000bc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b19062000c3a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c925081620006a95782620006a157634420e4869050620006a9565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076857607f821691505b6020821081036200077e576200077d62000720565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a9565b620007f48683620007a9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008416200083b62000835846200080c565b62000816565b6200080c565b9050919050565b6000819050919050565b6200085d8362000820565b620008756200086c8262000848565b848454620007b6565b825550505050565b600090565b6200088c6200087d565b6200089981848462000852565b505050565b5b81811015620008c157620008b560008262000882565b6001810190506200089f565b5050565b601f8211156200091057620008da8162000784565b620008e58462000799565b81016020851015620008f5578190505b6200090d620009048562000799565b8301826200089e565b50505b505050565b600082821c905092915050565b6000620009356000198460080262000915565b1980831691505092915050565b600062000950838362000922565b9150826002028217905092915050565b6200096b82620006e6565b67ffffffffffffffff811115620009875762000986620006f1565b5b6200099382546200074f565b620009a0828285620008c5565b600060209050601f831160018114620009d85760008415620009c3578287015190505b620009cf858262000942565b86555062000a3f565b601f198416620009e88662000784565b60005b8281101562000a1257848901518255600182019150602085019450602081019050620009eb565b8683101562000a32578489015162000a2e601f89168262000922565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a798262000a4c565b9050919050565b62000a8b8162000a6c565b811462000a9757600080fd5b50565b60008151905062000aab8162000a80565b92915050565b60006bffffffffffffffffffffffff82169050919050565b62000ad48162000ab1565b811462000ae057600080fd5b50565b60008151905062000af48162000ac9565b92915050565b6000806040838503121562000b145762000b1362000a47565b5b600062000b248582860162000a9a565b925050602062000b378582860162000ae3565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000bb0602a8362000b41565b915062000bbd8262000b52565b604082019050919050565b6000602082019050818103600083015262000be38162000ba1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000c2260198362000b41565b915062000c2f8262000bea565b602082019050919050565b6000602082019050818103600083015262000c558162000c13565b9050919050565b6148d58062000c6c6000396000f3fe6080604052600436106102885760003560e01c806374d0101d1161015a578063c1e1ce29116100c1578063dc33e6811161007a578063dc33e68114610986578063e75179a4146109c3578063e985e9c5146109ec578063f2fde38b14610a29578063f4a0a52814610a52578063fb796e6c14610a7b57610288565b8063c1e1ce2914610876578063c21b471b146108a1578063c6682862146108ca578063c6ab67a3146108f5578063c87b56dd14610920578063da3ef23f1461095d57610288565b8063aa592f2511610113578063aa592f2514610763578063b366d6131461078e578063b629f192146107b7578063b7c0b8e8146107f4578063b88d4fde1461081d578063bbadfe761461083957610288565b806374d0101d1461066757806378acea1e146106905780638342083a146106b95780638da5cb5b146106e457806395d89b411461070f578063a22cb4651461073a57610288565b80633ccfd60b116101fe578063601e5e77116101b7578063601e5e77146105575780636352211e146105825780636817c76c146105bf57806369e2f0fb146105ea57806370a0823114610613578063715018a61461065057610288565b80633ccfd60b146104795780633dd08c3814610490578063402c3856146104cd57806342842e0e146104e9578063559c55b91461050557806355f804b31461052e57610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a257806326aa420a146103be5780632a55205a146103e757806332cb6b0c14610425578063345318281461045057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b314610332578063109695231461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906133c0565b610aa6565b6040516102c19190613408565b60405180910390f35b3480156102d657600080fd5b506102df610ac8565b6040516102ec91906134b3565b60405180910390f35b34801561030157600080fd5b5061031c6004803603810190610317919061350b565b610b5a565b6040516103299190613579565b60405180910390f35b61034c600480360381019061034791906135c0565b610bd9565b005b34801561035a57600080fd5b5061037560048036038101906103709190613665565b610c48565b005b34801561038357600080fd5b5061038c610d67565b60405161039991906136c1565b60405180910390f35b6103bc60048036038101906103b791906136dc565b610d7e565b005b3480156103ca57600080fd5b506103e560048036038101906103e0919061350b565b610df7565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061372f565b610e09565b60405161041c92919061376f565b60405180910390f35b34801561043157600080fd5b5061043a610ff3565b60405161044791906136c1565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906133c0565b610ff8565b005b34801561048557600080fd5b5061048e61106d565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613798565b61111b565b6040516104c49190613408565b60405180910390f35b6104e760048036038101906104e291906137f1565b61113b565b005b61050360048036038101906104fe91906136dc565b6113ef565b005b34801561051157600080fd5b5061052c6004803603810190610527919061350b565b611468565b005b34801561053a57600080fd5b5061055560048036038101906105509190613665565b61147a565b005b34801561056357600080fd5b5061056c611551565b60405161057991906136c1565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a4919061350b565b611557565b6040516105b69190613579565b60405180910390f35b3480156105cb57600080fd5b506105d4611569565b6040516105e191906136c1565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613798565b61156f565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613798565b611665565b60405161064791906136c1565b60405180910390f35b34801561065c57600080fd5b5061066561171d565b005b34801561067357600080fd5b5061068e600480360381019061068991906135c0565b611731565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613844565b611856565b005b3480156106c557600080fd5b506106ce61187b565b6040516106db91906136c1565b60405180910390f35b3480156106f057600080fd5b506106f9611881565b6040516107069190613579565b60405180910390f35b34801561071b57600080fd5b506107246118ab565b60405161073191906134b3565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613871565b61193d565b005b34801561076f57600080fd5b506107786119ac565b60405161078591906136c1565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613798565b6119b1565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613798565b611aa7565b6040516107eb9190613408565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190613844565b611ac7565b005b610837600480360381019061083291906139e1565b611ba5565b005b34801561084557600080fd5b50610860600480360381019061085b91906133c0565b611c20565b60405161086d9190613408565b60405180910390f35b34801561088257600080fd5b5061088b611c40565b6040516108989190613408565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613aa8565b611c53565b005b3480156108d657600080fd5b506108df611c69565b6040516108ec91906134b3565b60405180910390f35b34801561090157600080fd5b5061090a611cf7565b60405161091791906134b3565b60405180910390f35b34801561092c57600080fd5b506109476004803603810190610942919061350b565b611d85565b60405161095491906134b3565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613b89565b611e2f565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613798565b611e4a565b6040516109ba91906136c1565b60405180910390f35b3480156109cf57600080fd5b506109ea60048036038101906109e59190613798565b611e5c565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613bd2565b611f6c565b604051610a209190613408565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613798565b612000565b005b348015610a5e57600080fd5b50610a796004803603810190610a74919061350b565b612083565b005b348015610a8757600080fd5b50610a90612095565b604051610a9d9190613408565b60405180910390f35b6000610ab1826120a8565b80610ac15750610ac08261213a565b5b9050919050565b606060028054610ad790613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613c41565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b6000610b65826121b4565b610b9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610c385769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c32573d6000803e3d6000fd5b6000603a525b610c428484612213565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610d01576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d09612357565b600060108054610d1890613c41565b905014610d51576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610d62929190613e29565b505050565b6000610d716123d5565b6001546000540303905090565b82601160009054906101000a900460ff168015610de557338260601b60601c14610de45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610dde573d6000803e3d6000fd5b6000603a525b5b610df08585856123de565b5050505050565b610dff612357565b80600e8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610f9e5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fa8612700565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610fd49190613f28565b610fde9190613f99565b90508160000151819350935050509250929050565b606381565b611000612357565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611075612357565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109b90613ffb565b60006040518083038185875af1925050503d80600081146110d8576040519150601f19603f3d011682016040523d82523d6000602084013e6110dd565b606091505b5050905080611118576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60146020528060005260406000206000915054906101000a900460ff1681565b60011515601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c59061405c565b60405180910390fd5b60011515601160019054906101000a900460ff16151514611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906140c8565b60405180910390fd5b600e54821115611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614134565b60405180910390fd5b60638261127461270a565b61127e9190614154565b11156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906141d4565b60405180910390fd5b6000600f54836112cf9190613f28565b905080341015611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90614240565b60405180910390fd5b61131e848461271d565b82600e60008282546113309190614260565b9250508190555081601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156113e9573373ffffffffffffffffffffffffffffffffffffffff166108fc82346113bc9190614260565b9081150290604051600060405180830381858888f193505050501580156113e7573d6000803e3d6000fd5b505b50505050565b82601160009054906101000a900460ff16801561145657338260601b60601c146114555769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61144f573d6000803e3d6000fd5b6000603a525b5b6114618585856128d8565b5050505050565b611470612357565b80600d8190555050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611533576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153b612357565b8181600b918261154c929190613e29565b505050565b600d5481565b6000611562826128f8565b9050919050565b600f5481565b611577612357565b60011515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906142e0565b60405180910390fd5b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116cc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611725612357565b61172f60006129c4565b565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156117ea576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f2612357565b6063816117fd61270a565b6118079190614154565b1115611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906141d4565b60405180910390fd5b611852828261271d565b5050565b61185e612357565b80601160016101000a81548160ff02191690831515021790555050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118ba90613c41565b80601f01602080910402602001604051908101604052809291908181526020018280546118e690613c41565b80156119335780601f1061190857610100808354040283529160200191611933565b820191906000526020600020905b81548152906001019060200180831161191657829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561199c5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611996573d6000803e3d6000fd5b6000603a525b6119a68484612a8a565b50505050565b600981565b6119b9612357565b60001515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a439061434c565b60405180910390fd5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611b80576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b88612357565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff168015611c0c57338260601b60601c14611c0b5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611c05573d6000803e3d6000fd5b6000603a525b5b611c1886868686612b95565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611c5b612357565b611c658282612c08565b5050565b600c8054611c7690613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca290613c41565b8015611cef5780601f10611cc457610100808354040283529160200191611cef565b820191906000526020600020905b815481529060010190602001808311611cd257829003601f168201915b505050505081565b60108054611d0490613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3090613c41565b8015611d7d5780601f10611d5257610100808354040283529160200191611d7d565b820191906000526020600020905b815481529060010190602001808311611d6057829003601f168201915b505050505081565b6060611d90826121b4565b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc6906143de565b60405180910390fd5b6000611dd9612d9d565b90506000815111611df95760405180602001604052806000815250611e27565b80611e0384612e2f565b600c604051602001611e17939291906144bd565b6040516020818303038152906040525b915050919050565b611e37612357565b80600c9081611e4691906144ee565b5050565b6000611e5582612efd565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611f15576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f1d612357565b6009611f2761270a565b10611f5e576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f6981600961271d565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612008612357565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90614632565b60405180910390fd5b612080816129c4565b50565b61208b612357565b80600f8190555050565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121ad57506121ac82612f54565b5b9050919050565b6000816121bf6123d5565b111580156121ce575060005482105b801561220c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061221e82611557565b90508073ffffffffffffffffffffffffffffffffffffffff1661223f612fbe565b73ffffffffffffffffffffffffffffffffffffffff16146122a25761226b81612266612fbe565b611f6c565b6122a1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61235f612fc6565b73ffffffffffffffffffffffffffffffffffffffff1661237d611881565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca9061469e565b60405180910390fd5b565b60006001905090565b60006123e9826128f8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612450576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061245c84612fce565b91509150612472818761246d612fbe565b612ff5565b6124be5761248786612482612fbe565b611f6c565b6124bd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612524576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125318686866001613039565b801561253c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061260a856125e688888761303f565b7c020000000000000000000000000000000000000000000000000000000017613067565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612690576000600185019050600060046000838152602001908152602001600020540361268e57600054811461268d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126f88686866001613092565b505050505050565b6000612710905090565b60006127146123d5565b60005403905090565b6000805490506000820361275d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61276a6000848385613039565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127e1836127d2600086600061303f565b6127db85613098565b17613067565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461288257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612847565b50600082036128bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128d36000848385613092565b505050565b6128f383838360405180602001604052806000815250611ba5565b505050565b600080829050806129076123d5565b1161298d5760005481101561298c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361298a575b60008103612980576004600083600190039350838152602001908152602001600020549050612956565b80925050506129bf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a97612fbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b44612fbe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b899190613408565b60405180910390a35050565b612ba0848484610d7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0257612bcb848484846130a8565b612c01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612c10612700565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6590614730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd49061479c565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612dac90613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd890613c41565b8015612e255780601f10612dfa57610100808354040283529160200191612e25565b820191906000526020600020905b815481529060010190602001808311612e0857829003601f168201915b5050505050905090565b606060006001612e3e846131f8565b01905060008167ffffffffffffffff811115612e5d57612e5c6138b6565b5b6040519080825280601f01601f191660200182016040528015612e8f5781602001600182028036833780820191505090505b509050600082602001820190505b600115612ef2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612ee657612ee5613f6a565b5b04945060008503612e9d575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861305686868461334b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ce612fbe565b8786866040518563ffffffff1660e01b81526004016130f09493929190614811565b6020604051808303816000875af192505050801561312c57506040513d601f19601f820116820180604052508101906131299190614872565b60015b6131a5573d806000811461315c576040519150601f19603f3d011682016040523d82523d6000602084013e613161565b606091505b50600081510361319d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613256577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161324c5761324b613f6a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613293576d04ee2d6d415b85acef8100000000838161328957613288613f6a565b5b0492506020810190505b662386f26fc1000083106132c257662386f26fc1000083816132b8576132b7613f6a565b5b0492506010810190505b6305f5e10083106132eb576305f5e10083816132e1576132e0613f6a565b5b0492506008810190505b612710831061331057612710838161330657613305613f6a565b5b0492506004810190505b60648310613333576064838161332957613328613f6a565b5b0492506002810190505b600a8310613342576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61339d81613368565b81146133a857600080fd5b50565b6000813590506133ba81613394565b92915050565b6000602082840312156133d6576133d561335e565b5b60006133e4848285016133ab565b91505092915050565b60008115159050919050565b613402816133ed565b82525050565b600060208201905061341d60008301846133f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561345d578082015181840152602081019050613442565b60008484015250505050565b6000601f19601f8301169050919050565b600061348582613423565b61348f818561342e565b935061349f81856020860161343f565b6134a881613469565b840191505092915050565b600060208201905081810360008301526134cd818461347a565b905092915050565b6000819050919050565b6134e8816134d5565b81146134f357600080fd5b50565b600081359050613505816134df565b92915050565b6000602082840312156135215761352061335e565b5b600061352f848285016134f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061356382613538565b9050919050565b61357381613558565b82525050565b600060208201905061358e600083018461356a565b92915050565b61359d81613558565b81146135a857600080fd5b50565b6000813590506135ba81613594565b92915050565b600080604083850312156135d7576135d661335e565b5b60006135e5858286016135ab565b92505060206135f6858286016134f6565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261362557613624613600565b5b8235905067ffffffffffffffff81111561364257613641613605565b5b60208301915083600182028301111561365e5761365d61360a565b5b9250929050565b6000806020838503121561367c5761367b61335e565b5b600083013567ffffffffffffffff81111561369a57613699613363565b5b6136a68582860161360f565b92509250509250929050565b6136bb816134d5565b82525050565b60006020820190506136d660008301846136b2565b92915050565b6000806000606084860312156136f5576136f461335e565b5b6000613703868287016135ab565b9350506020613714868287016135ab565b9250506040613725868287016134f6565b9150509250925092565b600080604083850312156137465761374561335e565b5b6000613754858286016134f6565b9250506020613765858286016134f6565b9150509250929050565b6000604082019050613784600083018561356a565b61379160208301846136b2565b9392505050565b6000602082840312156137ae576137ad61335e565b5b60006137bc848285016135ab565b91505092915050565b6137ce816133ed565b81146137d957600080fd5b50565b6000813590506137eb816137c5565b92915050565b60008060006060848603121561380a5761380961335e565b5b6000613818868287016135ab565b9350506020613829868287016134f6565b925050604061383a868287016137dc565b9150509250925092565b60006020828403121561385a5761385961335e565b5b6000613868848285016137dc565b91505092915050565b600080604083850312156138885761388761335e565b5b6000613896858286016135ab565b92505060206138a7858286016137dc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138ee82613469565b810181811067ffffffffffffffff8211171561390d5761390c6138b6565b5b80604052505050565b6000613920613354565b905061392c82826138e5565b919050565b600067ffffffffffffffff82111561394c5761394b6138b6565b5b61395582613469565b9050602081019050919050565b82818337600083830152505050565b600061398461397f84613931565b613916565b9050828152602081018484840111156139a05761399f6138b1565b5b6139ab848285613962565b509392505050565b600082601f8301126139c8576139c7613600565b5b81356139d8848260208601613971565b91505092915050565b600080600080608085870312156139fb576139fa61335e565b5b6000613a09878288016135ab565b9450506020613a1a878288016135ab565b9350506040613a2b878288016134f6565b925050606085013567ffffffffffffffff811115613a4c57613a4b613363565b5b613a58878288016139b3565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b613a8581613a64565b8114613a9057600080fd5b50565b600081359050613aa281613a7c565b92915050565b60008060408385031215613abf57613abe61335e565b5b6000613acd858286016135ab565b9250506020613ade85828601613a93565b9150509250929050565b600067ffffffffffffffff821115613b0357613b026138b6565b5b613b0c82613469565b9050602081019050919050565b6000613b2c613b2784613ae8565b613916565b905082815260208101848484011115613b4857613b476138b1565b5b613b53848285613962565b509392505050565b600082601f830112613b7057613b6f613600565b5b8135613b80848260208601613b19565b91505092915050565b600060208284031215613b9f57613b9e61335e565b5b600082013567ffffffffffffffff811115613bbd57613bbc613363565b5b613bc984828501613b5b565b91505092915050565b60008060408385031215613be957613be861335e565b5b6000613bf7858286016135ab565b9250506020613c08858286016135ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5957607f821691505b602082108103613c6c57613c6b613c12565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613cdf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ca2565b613ce98683613ca2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d26613d21613d1c846134d5565b613d01565b6134d5565b9050919050565b6000819050919050565b613d4083613d0b565b613d54613d4c82613d2d565b848454613caf565b825550505050565b600090565b613d69613d5c565b613d74818484613d37565b505050565b5b81811015613d9857613d8d600082613d61565b600181019050613d7a565b5050565b601f821115613ddd57613dae81613c7d565b613db784613c92565b81016020851015613dc6578190505b613dda613dd285613c92565b830182613d79565b50505b505050565b600082821c905092915050565b6000613e0060001984600802613de2565b1980831691505092915050565b6000613e198383613def565b9150826002028217905092915050565b613e338383613c72565b67ffffffffffffffff811115613e4c57613e4b6138b6565b5b613e568254613c41565b613e61828285613d9c565b6000601f831160018114613e905760008415613e7e578287013590505b613e888582613e0d565b865550613ef0565b601f198416613e9e86613c7d565b60005b82811015613ec657848901358255600182019150602085019450602081019050613ea1565b86831015613ee35784890135613edf601f891682613def565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f33826134d5565b9150613f3e836134d5565b9250828202613f4c816134d5565b91508282048414831517613f6357613f62613ef9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fa4826134d5565b9150613faf836134d5565b925082613fbf57613fbe613f6a565b5b828204905092915050565b600081905092915050565b50565b6000613fe5600083613fca565b9150613ff082613fd5565b600082019050919050565b600061400682613fd8565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b600061404660138361342e565b915061405182614010565b602082019050919050565b6000602082019050818103600083015261407581614039565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b60006140b260188361342e565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f4e465420616d6f756e7420657863656564730000000000000000000000000000600082015250565b600061411e60128361342e565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b600061415f826134d5565b915061416a836134d5565b925082820190508082111561418257614181613ef9565b5b92915050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b60006141be60168361342e565b91506141c982614188565b602082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b600061422a601a8361342e565b9150614235826141f4565b602082019050919050565b600060208201905081810360008301526142598161421d565b9050919050565b600061426b826134d5565b9150614276836134d5565b925082820390508181111561428e5761428d613ef9565b5b92915050565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b60006142ca600c8361342e565b91506142d582614294565b602082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b7f416c72656164792061206d696e74657200000000000000000000000000000000600082015250565b600061433660108361342e565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143c8602f8361342e565b91506143d38261436c565b604082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b600081905092915050565b600061441482613423565b61441e81856143fe565b935061442e81856020860161343f565b80840191505092915050565b6000815461444781613c41565b61445181866143fe565b9450600182166000811461446c5760018114614481576144b4565b60ff19831686528115158202860193506144b4565b61448a85613c7d565b60005b838110156144ac5781548189015260018201915060208101905061448d565b838801955050505b50505092915050565b60006144c98286614409565b91506144d58285614409565b91506144e1828461443a565b9150819050949350505050565b6144f782613423565b67ffffffffffffffff8111156145105761450f6138b6565b5b61451a8254613c41565b614525828285613d9c565b600060209050601f8311600181146145585760008415614546578287015190505b6145508582613e0d565b8655506145b8565b601f19841661456686613c7d565b60005b8281101561458e57848901518255600182019150602085019450602081019050614569565b868310156145ab57848901516145a7601f891682613def565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061461c60268361342e565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061468860208361342e565b915061469382614652565b602082019050919050565b600060208201905081810360008301526146b78161467b565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061471a602a8361342e565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061478660198361342e565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147e3826147bc565b6147ed81856147c7565b93506147fd81856020860161343f565b61480681613469565b840191505092915050565b6000608082019050614826600083018761356a565b614833602083018661356a565b61484060408301856136b2565b818103606083015261485281846147d8565b905095945050505050565b60008151905061486c81613394565b92915050565b6000602082840312156148885761488761335e565b5b60006148968482850161485d565b9150509291505056fea2646970667358221220cf39f12a3e82c6a8d8ec5bd8dc3034091646b5f672045d5b4ab29310f3de02d564736f6c634300081200330000000000000000000000008b09692beba5c2765e3430f3b85185a497b9d95500000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106102885760003560e01c806374d0101d1161015a578063c1e1ce29116100c1578063dc33e6811161007a578063dc33e68114610986578063e75179a4146109c3578063e985e9c5146109ec578063f2fde38b14610a29578063f4a0a52814610a52578063fb796e6c14610a7b57610288565b8063c1e1ce2914610876578063c21b471b146108a1578063c6682862146108ca578063c6ab67a3146108f5578063c87b56dd14610920578063da3ef23f1461095d57610288565b8063aa592f2511610113578063aa592f2514610763578063b366d6131461078e578063b629f192146107b7578063b7c0b8e8146107f4578063b88d4fde1461081d578063bbadfe761461083957610288565b806374d0101d1461066757806378acea1e146106905780638342083a146106b95780638da5cb5b146106e457806395d89b411461070f578063a22cb4651461073a57610288565b80633ccfd60b116101fe578063601e5e77116101b7578063601e5e77146105575780636352211e146105825780636817c76c146105bf57806369e2f0fb146105ea57806370a0823114610613578063715018a61461065057610288565b80633ccfd60b146104795780633dd08c3814610490578063402c3856146104cd57806342842e0e146104e9578063559c55b91461050557806355f804b31461052e57610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a257806326aa420a146103be5780632a55205a146103e757806332cb6b0c14610425578063345318281461045057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b314610332578063109695231461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906133c0565b610aa6565b6040516102c19190613408565b60405180910390f35b3480156102d657600080fd5b506102df610ac8565b6040516102ec91906134b3565b60405180910390f35b34801561030157600080fd5b5061031c6004803603810190610317919061350b565b610b5a565b6040516103299190613579565b60405180910390f35b61034c600480360381019061034791906135c0565b610bd9565b005b34801561035a57600080fd5b5061037560048036038101906103709190613665565b610c48565b005b34801561038357600080fd5b5061038c610d67565b60405161039991906136c1565b60405180910390f35b6103bc60048036038101906103b791906136dc565b610d7e565b005b3480156103ca57600080fd5b506103e560048036038101906103e0919061350b565b610df7565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061372f565b610e09565b60405161041c92919061376f565b60405180910390f35b34801561043157600080fd5b5061043a610ff3565b60405161044791906136c1565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906133c0565b610ff8565b005b34801561048557600080fd5b5061048e61106d565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613798565b61111b565b6040516104c49190613408565b60405180910390f35b6104e760048036038101906104e291906137f1565b61113b565b005b61050360048036038101906104fe91906136dc565b6113ef565b005b34801561051157600080fd5b5061052c6004803603810190610527919061350b565b611468565b005b34801561053a57600080fd5b5061055560048036038101906105509190613665565b61147a565b005b34801561056357600080fd5b5061056c611551565b60405161057991906136c1565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a4919061350b565b611557565b6040516105b69190613579565b60405180910390f35b3480156105cb57600080fd5b506105d4611569565b6040516105e191906136c1565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613798565b61156f565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613798565b611665565b60405161064791906136c1565b60405180910390f35b34801561065c57600080fd5b5061066561171d565b005b34801561067357600080fd5b5061068e600480360381019061068991906135c0565b611731565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613844565b611856565b005b3480156106c557600080fd5b506106ce61187b565b6040516106db91906136c1565b60405180910390f35b3480156106f057600080fd5b506106f9611881565b6040516107069190613579565b60405180910390f35b34801561071b57600080fd5b506107246118ab565b60405161073191906134b3565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613871565b61193d565b005b34801561076f57600080fd5b506107786119ac565b60405161078591906136c1565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613798565b6119b1565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613798565b611aa7565b6040516107eb9190613408565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190613844565b611ac7565b005b610837600480360381019061083291906139e1565b611ba5565b005b34801561084557600080fd5b50610860600480360381019061085b91906133c0565b611c20565b60405161086d9190613408565b60405180910390f35b34801561088257600080fd5b5061088b611c40565b6040516108989190613408565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613aa8565b611c53565b005b3480156108d657600080fd5b506108df611c69565b6040516108ec91906134b3565b60405180910390f35b34801561090157600080fd5b5061090a611cf7565b60405161091791906134b3565b60405180910390f35b34801561092c57600080fd5b506109476004803603810190610942919061350b565b611d85565b60405161095491906134b3565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613b89565b611e2f565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613798565b611e4a565b6040516109ba91906136c1565b60405180910390f35b3480156109cf57600080fd5b506109ea60048036038101906109e59190613798565b611e5c565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613bd2565b611f6c565b604051610a209190613408565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613798565b612000565b005b348015610a5e57600080fd5b50610a796004803603810190610a74919061350b565b612083565b005b348015610a8757600080fd5b50610a90612095565b604051610a9d9190613408565b60405180910390f35b6000610ab1826120a8565b80610ac15750610ac08261213a565b5b9050919050565b606060028054610ad790613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613c41565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b6000610b65826121b4565b610b9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610c385769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c32573d6000803e3d6000fd5b6000603a525b610c428484612213565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610d01576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d09612357565b600060108054610d1890613c41565b905014610d51576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610d62929190613e29565b505050565b6000610d716123d5565b6001546000540303905090565b82601160009054906101000a900460ff168015610de557338260601b60601c14610de45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610dde573d6000803e3d6000fd5b6000603a525b5b610df08585856123de565b5050505050565b610dff612357565b80600e8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610f9e5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fa8612700565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610fd49190613f28565b610fde9190613f99565b90508160000151819350935050509250929050565b606381565b611000612357565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611075612357565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109b90613ffb565b60006040518083038185875af1925050503d80600081146110d8576040519150601f19603f3d011682016040523d82523d6000602084013e6110dd565b606091505b5050905080611118576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60146020528060005260406000206000915054906101000a900460ff1681565b60011515601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c59061405c565b60405180910390fd5b60011515601160019054906101000a900460ff16151514611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906140c8565b60405180910390fd5b600e54821115611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614134565b60405180910390fd5b60638261127461270a565b61127e9190614154565b11156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906141d4565b60405180910390fd5b6000600f54836112cf9190613f28565b905080341015611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90614240565b60405180910390fd5b61131e848461271d565b82600e60008282546113309190614260565b9250508190555081601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156113e9573373ffffffffffffffffffffffffffffffffffffffff166108fc82346113bc9190614260565b9081150290604051600060405180830381858888f193505050501580156113e7573d6000803e3d6000fd5b505b50505050565b82601160009054906101000a900460ff16801561145657338260601b60601c146114555769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61144f573d6000803e3d6000fd5b6000603a525b5b6114618585856128d8565b5050505050565b611470612357565b80600d8190555050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611533576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153b612357565b8181600b918261154c929190613e29565b505050565b600d5481565b6000611562826128f8565b9050919050565b600f5481565b611577612357565b60011515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906142e0565b60405180910390fd5b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116cc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611725612357565b61172f60006129c4565b565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156117ea576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f2612357565b6063816117fd61270a565b6118079190614154565b1115611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906141d4565b60405180910390fd5b611852828261271d565b5050565b61185e612357565b80601160016101000a81548160ff02191690831515021790555050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118ba90613c41565b80601f01602080910402602001604051908101604052809291908181526020018280546118e690613c41565b80156119335780601f1061190857610100808354040283529160200191611933565b820191906000526020600020905b81548152906001019060200180831161191657829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561199c5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611996573d6000803e3d6000fd5b6000603a525b6119a68484612a8a565b50505050565b600981565b6119b9612357565b60001515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a439061434c565b60405180910390fd5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611b80576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b88612357565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff168015611c0c57338260601b60601c14611c0b5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611c05573d6000803e3d6000fd5b6000603a525b5b611c1886868686612b95565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611c5b612357565b611c658282612c08565b5050565b600c8054611c7690613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca290613c41565b8015611cef5780601f10611cc457610100808354040283529160200191611cef565b820191906000526020600020905b815481529060010190602001808311611cd257829003601f168201915b505050505081565b60108054611d0490613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3090613c41565b8015611d7d5780601f10611d5257610100808354040283529160200191611d7d565b820191906000526020600020905b815481529060010190602001808311611d6057829003601f168201915b505050505081565b6060611d90826121b4565b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc6906143de565b60405180910390fd5b6000611dd9612d9d565b90506000815111611df95760405180602001604052806000815250611e27565b80611e0384612e2f565b600c604051602001611e17939291906144bd565b6040516020818303038152906040525b915050919050565b611e37612357565b80600c9081611e4691906144ee565b5050565b6000611e5582612efd565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611f15576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f1d612357565b6009611f2761270a565b10611f5e576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f6981600961271d565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612008612357565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90614632565b60405180910390fd5b612080816129c4565b50565b61208b612357565b80600f8190555050565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121ad57506121ac82612f54565b5b9050919050565b6000816121bf6123d5565b111580156121ce575060005482105b801561220c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061221e82611557565b90508073ffffffffffffffffffffffffffffffffffffffff1661223f612fbe565b73ffffffffffffffffffffffffffffffffffffffff16146122a25761226b81612266612fbe565b611f6c565b6122a1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61235f612fc6565b73ffffffffffffffffffffffffffffffffffffffff1661237d611881565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca9061469e565b60405180910390fd5b565b60006001905090565b60006123e9826128f8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612450576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061245c84612fce565b91509150612472818761246d612fbe565b612ff5565b6124be5761248786612482612fbe565b611f6c565b6124bd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612524576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125318686866001613039565b801561253c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061260a856125e688888761303f565b7c020000000000000000000000000000000000000000000000000000000017613067565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612690576000600185019050600060046000838152602001908152602001600020540361268e57600054811461268d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126f88686866001613092565b505050505050565b6000612710905090565b60006127146123d5565b60005403905090565b6000805490506000820361275d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61276a6000848385613039565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127e1836127d2600086600061303f565b6127db85613098565b17613067565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461288257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612847565b50600082036128bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128d36000848385613092565b505050565b6128f383838360405180602001604052806000815250611ba5565b505050565b600080829050806129076123d5565b1161298d5760005481101561298c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361298a575b60008103612980576004600083600190039350838152602001908152602001600020549050612956565b80925050506129bf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a97612fbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b44612fbe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b899190613408565b60405180910390a35050565b612ba0848484610d7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0257612bcb848484846130a8565b612c01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612c10612700565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6590614730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd49061479c565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612dac90613c41565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd890613c41565b8015612e255780601f10612dfa57610100808354040283529160200191612e25565b820191906000526020600020905b815481529060010190602001808311612e0857829003601f168201915b5050505050905090565b606060006001612e3e846131f8565b01905060008167ffffffffffffffff811115612e5d57612e5c6138b6565b5b6040519080825280601f01601f191660200182016040528015612e8f5781602001600182028036833780820191505090505b509050600082602001820190505b600115612ef2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612ee657612ee5613f6a565b5b04945060008503612e9d575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861305686868461334b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ce612fbe565b8786866040518563ffffffff1660e01b81526004016130f09493929190614811565b6020604051808303816000875af192505050801561312c57506040513d601f19601f820116820180604052508101906131299190614872565b60015b6131a5573d806000811461315c576040519150601f19603f3d011682016040523d82523d6000602084013e613161565b606091505b50600081510361319d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613256577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161324c5761324b613f6a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613293576d04ee2d6d415b85acef8100000000838161328957613288613f6a565b5b0492506020810190505b662386f26fc1000083106132c257662386f26fc1000083816132b8576132b7613f6a565b5b0492506010810190505b6305f5e10083106132eb576305f5e10083816132e1576132e0613f6a565b5b0492506008810190505b612710831061331057612710838161330657613305613f6a565b5b0492506004810190505b60648310613333576064838161332957613328613f6a565b5b0492506002810190505b600a8310613342576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61339d81613368565b81146133a857600080fd5b50565b6000813590506133ba81613394565b92915050565b6000602082840312156133d6576133d561335e565b5b60006133e4848285016133ab565b91505092915050565b60008115159050919050565b613402816133ed565b82525050565b600060208201905061341d60008301846133f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561345d578082015181840152602081019050613442565b60008484015250505050565b6000601f19601f8301169050919050565b600061348582613423565b61348f818561342e565b935061349f81856020860161343f565b6134a881613469565b840191505092915050565b600060208201905081810360008301526134cd818461347a565b905092915050565b6000819050919050565b6134e8816134d5565b81146134f357600080fd5b50565b600081359050613505816134df565b92915050565b6000602082840312156135215761352061335e565b5b600061352f848285016134f6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061356382613538565b9050919050565b61357381613558565b82525050565b600060208201905061358e600083018461356a565b92915050565b61359d81613558565b81146135a857600080fd5b50565b6000813590506135ba81613594565b92915050565b600080604083850312156135d7576135d661335e565b5b60006135e5858286016135ab565b92505060206135f6858286016134f6565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261362557613624613600565b5b8235905067ffffffffffffffff81111561364257613641613605565b5b60208301915083600182028301111561365e5761365d61360a565b5b9250929050565b6000806020838503121561367c5761367b61335e565b5b600083013567ffffffffffffffff81111561369a57613699613363565b5b6136a68582860161360f565b92509250509250929050565b6136bb816134d5565b82525050565b60006020820190506136d660008301846136b2565b92915050565b6000806000606084860312156136f5576136f461335e565b5b6000613703868287016135ab565b9350506020613714868287016135ab565b9250506040613725868287016134f6565b9150509250925092565b600080604083850312156137465761374561335e565b5b6000613754858286016134f6565b9250506020613765858286016134f6565b9150509250929050565b6000604082019050613784600083018561356a565b61379160208301846136b2565b9392505050565b6000602082840312156137ae576137ad61335e565b5b60006137bc848285016135ab565b91505092915050565b6137ce816133ed565b81146137d957600080fd5b50565b6000813590506137eb816137c5565b92915050565b60008060006060848603121561380a5761380961335e565b5b6000613818868287016135ab565b9350506020613829868287016134f6565b925050604061383a868287016137dc565b9150509250925092565b60006020828403121561385a5761385961335e565b5b6000613868848285016137dc565b91505092915050565b600080604083850312156138885761388761335e565b5b6000613896858286016135ab565b92505060206138a7858286016137dc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138ee82613469565b810181811067ffffffffffffffff8211171561390d5761390c6138b6565b5b80604052505050565b6000613920613354565b905061392c82826138e5565b919050565b600067ffffffffffffffff82111561394c5761394b6138b6565b5b61395582613469565b9050602081019050919050565b82818337600083830152505050565b600061398461397f84613931565b613916565b9050828152602081018484840111156139a05761399f6138b1565b5b6139ab848285613962565b509392505050565b600082601f8301126139c8576139c7613600565b5b81356139d8848260208601613971565b91505092915050565b600080600080608085870312156139fb576139fa61335e565b5b6000613a09878288016135ab565b9450506020613a1a878288016135ab565b9350506040613a2b878288016134f6565b925050606085013567ffffffffffffffff811115613a4c57613a4b613363565b5b613a58878288016139b3565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b613a8581613a64565b8114613a9057600080fd5b50565b600081359050613aa281613a7c565b92915050565b60008060408385031215613abf57613abe61335e565b5b6000613acd858286016135ab565b9250506020613ade85828601613a93565b9150509250929050565b600067ffffffffffffffff821115613b0357613b026138b6565b5b613b0c82613469565b9050602081019050919050565b6000613b2c613b2784613ae8565b613916565b905082815260208101848484011115613b4857613b476138b1565b5b613b53848285613962565b509392505050565b600082601f830112613b7057613b6f613600565b5b8135613b80848260208601613b19565b91505092915050565b600060208284031215613b9f57613b9e61335e565b5b600082013567ffffffffffffffff811115613bbd57613bbc613363565b5b613bc984828501613b5b565b91505092915050565b60008060408385031215613be957613be861335e565b5b6000613bf7858286016135ab565b9250506020613c08858286016135ab565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5957607f821691505b602082108103613c6c57613c6b613c12565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613cdf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ca2565b613ce98683613ca2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d26613d21613d1c846134d5565b613d01565b6134d5565b9050919050565b6000819050919050565b613d4083613d0b565b613d54613d4c82613d2d565b848454613caf565b825550505050565b600090565b613d69613d5c565b613d74818484613d37565b505050565b5b81811015613d9857613d8d600082613d61565b600181019050613d7a565b5050565b601f821115613ddd57613dae81613c7d565b613db784613c92565b81016020851015613dc6578190505b613dda613dd285613c92565b830182613d79565b50505b505050565b600082821c905092915050565b6000613e0060001984600802613de2565b1980831691505092915050565b6000613e198383613def565b9150826002028217905092915050565b613e338383613c72565b67ffffffffffffffff811115613e4c57613e4b6138b6565b5b613e568254613c41565b613e61828285613d9c565b6000601f831160018114613e905760008415613e7e578287013590505b613e888582613e0d565b865550613ef0565b601f198416613e9e86613c7d565b60005b82811015613ec657848901358255600182019150602085019450602081019050613ea1565b86831015613ee35784890135613edf601f891682613def565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f33826134d5565b9150613f3e836134d5565b9250828202613f4c816134d5565b91508282048414831517613f6357613f62613ef9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fa4826134d5565b9150613faf836134d5565b925082613fbf57613fbe613f6a565b5b828204905092915050565b600081905092915050565b50565b6000613fe5600083613fca565b9150613ff082613fd5565b600082019050919050565b600061400682613fd8565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b600061404660138361342e565b915061405182614010565b602082019050919050565b6000602082019050818103600083015261407581614039565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b60006140b260188361342e565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f4e465420616d6f756e7420657863656564730000000000000000000000000000600082015250565b600061411e60128361342e565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b600061415f826134d5565b915061416a836134d5565b925082820190508082111561418257614181613ef9565b5b92915050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b60006141be60168361342e565b91506141c982614188565b602082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b600061422a601a8361342e565b9150614235826141f4565b602082019050919050565b600060208201905081810360008301526142598161421d565b9050919050565b600061426b826134d5565b9150614276836134d5565b925082820390508181111561428e5761428d613ef9565b5b92915050565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b60006142ca600c8361342e565b91506142d582614294565b602082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b7f416c72656164792061206d696e74657200000000000000000000000000000000600082015250565b600061433660108361342e565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143c8602f8361342e565b91506143d38261436c565b604082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b600081905092915050565b600061441482613423565b61441e81856143fe565b935061442e81856020860161343f565b80840191505092915050565b6000815461444781613c41565b61445181866143fe565b9450600182166000811461446c5760018114614481576144b4565b60ff19831686528115158202860193506144b4565b61448a85613c7d565b60005b838110156144ac5781548189015260018201915060208101905061448d565b838801955050505b50505092915050565b60006144c98286614409565b91506144d58285614409565b91506144e1828461443a565b9150819050949350505050565b6144f782613423565b67ffffffffffffffff8111156145105761450f6138b6565b5b61451a8254613c41565b614525828285613d9c565b600060209050601f8311600181146145585760008415614546578287015190505b6145508582613e0d565b8655506145b8565b601f19841661456686613c7d565b60005b8281101561458e57848901518255600182019150602085019450602081019050614569565b868310156145ab57848901516145a7601f891682613def565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061461c60268361342e565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061468860208361342e565b915061469382614652565b602082019050919050565b600060208201905081810360008301526146b78161467b565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061471a602a8361342e565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061478660198361342e565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147e3826147bc565b6147ed81856147c7565b93506147fd81856020860161343f565b61480681613469565b840191505092915050565b6000608082019050614826600083018761356a565b614833602083018661356a565b61484060408301856136b2565b818103606083015261485281846147d8565b905095945050505050565b60008151905061486c81613394565b92915050565b6000602082840312156148885761488761335e565b5b60006148968482850161485d565b9150509291505056fea2646970667358221220cf39f12a3e82c6a8d8ec5bd8dc3034091646b5f672045d5b4ab29310f3de02d564736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008b09692beba5c2765e3430f3b85185a497b9d95500000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x8B09692bEba5C2765E3430F3B85185a497B9D955
Arg [1] : _royaltyFraction (uint96): 1000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b09692beba5c2765e3430f3b85185a497b9d955
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
95560:8901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97295:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56348:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62839:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103003:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99993:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52099:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103395:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101517:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31178:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;95840:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98835:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102266:183;;;;;;;;;;;;;:::i;:::-;;96185:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100752:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103786:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101636:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99733:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95802:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57741:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95930:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102024:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53283:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36406:103;;;;;;;;;;;;;:::i;:::-;;100538:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101748:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95887:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35765:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56524:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102609:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95759:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101850:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96142:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99123:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;104185:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96090:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96053:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99474:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95715:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95975:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97928:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97792:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98542:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100362:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63788:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36664:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101407:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96010:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97295:274;97426:4;97468:38;97494:11;97468:25;:38::i;:::-;:93;;;;97523:38;97549:11;97523:25;:38::i;:::-;97468:93;97448:113;;97295:274;;;:::o;56348:100::-;56402:13;56435:5;56428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56348:100;:::o;62839:218::-;62915:7;62940:16;62948:7;62940;:16::i;:::-;62935:64;;62965:34;;;;;;;;;;;;;;62935:64;63019:15;:24;63035:7;63019:24;;;;;;;;;;;:30;;;;;;;;;;;;63012:37;;62839:218;;;:::o;103003:232::-;103143:8;103153:24;;;;;;;;;;;94145:7;94142:925;;;94274:22;94268:4;94261:36;94375:9;94369:4;94362:23;94527:8;94523:2;94519:17;94515:2;94511:26;94505:4;94498:40;94714:4;94708;94702;94696;94669:25;94662:5;94651:68;94641:290;;94843:16;94837:4;94831;94816:44;94895:16;94889:4;94882:30;94641:290;95050:1;95044:4;95037:15;94142:925;103195:32:::1;103209:8;103219:7;103195:13;:32::i;:::-;103003:232:::0;;;;:::o;99993:224::-;97054:14;:23;97069:7;;;;97054:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97050:52;;;97086:16;;;;;;;;;;;;;;97050:52;35651:13:::1;:11;:13::i;:::-;100128:1:::2;100102:14;100096:28;;;;;:::i;:::-;;;:33;100092:72;;100138:26;;;;;;;;;;;;;;100092:72;100194:15;;100177:14;:32;;;;;;;:::i;:::-;;99993:224:::0;;:::o;52099:323::-;52160:7;52388:15;:13;:15::i;:::-;52373:12;;52357:13;;:28;:46;52350:53;;52099:323;:::o;103395:231::-;103538:4;103544:24;;;;;;;;;;;91918:7;91915:1643;;;92131:8;92123:4;92119:2;92115:13;92111:2;92107:22;92104:36;92094:1449;;92446:22;92440:4;92433:36;92555:9;92549:4;92542:23;92648:8;92642:4;92635:22;92841:4;92835;92829;92823;92796:25;92789:5;92778:68;92768:306;;92978:16;92972:4;92966;92951:44;93034:16;93028:4;93021:30;92768:306;93522:1;93516:4;93509:15;92094:1449;91915:1643;103581:37:::1;103600:4;103606:2;103610:7;103581:18;:37::i;:::-;103395:231:::0;;;;;:::o;101517:111::-;35651:13;:11;:13::i;:::-;101610:10:::1;101594:13;:26;;;;101517:111:::0;:::o;31178:438::-;31273:7;31282;31302:26;31331:17;:26;31349:7;31331:26;;;;;;;;;;;31302:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31402:1;31374:30;;:7;:16;;;:30;;;31370:92;;31431:19;31421:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31370:92;31474:21;31538:17;:15;:17::i;:::-;31498:57;;31511:7;:23;;;31499:35;;:9;:35;;;;:::i;:::-;31498:57;;;;:::i;:::-;31474:81;;31576:7;:16;;;31594:13;31568:40;;;;;;31178:438;;;;;:::o;95840:39::-;95877:2;95840:39;:::o;98835:96::-;35651:13;:11;:13::i;:::-;98919:4:::1;98898:14;:18;98913:2;98898:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;98835:96:::0;:::o;102266:183::-;35651:13;:11;:13::i;:::-;102317:12:::1;102343:10;102335:24;;102367:21;102335:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102316:77;;;102409:7;102404:37;;102425:16;;;;;;;;;;;;;;102404:37;102305:144;102266:183::o:0;96185:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;100752:647::-;97193:4;97171:26;;:6;:18;97178:10;97171:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;97163:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;100874:4:::1;100860:18;;:10;;;;;;;;;;;:18;;;100852:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;100938:13;;100926:8;:25;;100918:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;95877:2;101010:8;100993:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;100985:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;101072:14;101100:9;;101089:8;:20;;;;:::i;:::-;101072:37;;101142:9;101129;:22;;101120:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;101194:19;101200:2;101204:8;101194:5;:19::i;:::-;101241:8;101224:13;;:25;;;;;;;:::i;:::-;;;;;;;;101271:5;101260:4;:8;101265:2;101260:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;101303:9;101291;:21;101287:105;;;101337:10;101329:28;;:51;101370:9;101358;:21;;;;:::i;:::-;101329:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;101287:105;100841:558;100752:647:::0;;;:::o;103786:239::-;103933:4;103939:24;;;;;;;;;;;91918:7;91915:1643;;;92131:8;92123:4;92119:2;92115:13;92111:2;92107:22;92104:36;92094:1449;;92446:22;92440:4;92433:36;92555:9;92549:4;92542:23;92648:8;92642:4;92635:22;92841:4;92835;92829;92823;92796:25;92789:5;92778:68;92768:306;;92978:16;92972:4;92966;92951:44;93034:16;93028:4;93021:30;92768:306;93522:1;93516:4;93509:15;92094:1449;91915:1643;103976:41:::1;103999:4;104005:2;104009:7;103976:22;:41::i;:::-;103786:239:::0;;;;;:::o;101636:106::-;35651:13;:11;:13::i;:::-;101728:6:::1;101713:12;:21;;;;101636:106:::0;:::o;99733:123::-;97054:14;:23;97069:7;;;;97054:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97050:52;;;97086:16;;;;;;;;;;;;;;97050:52;35651:13:::1;:11;:13::i;:::-;99837:11:::2;;99821:13;:27;;;;;;;:::i;:::-;;99733:123:::0;;:::o;95802:31::-;;;;:::o;57741:152::-;57813:7;57856:27;57875:7;57856:18;:27::i;:::-;57833:52;;57741:152;;;:::o;95930:38::-;;;;:::o;102024:162::-;35651:13;:11;:13::i;:::-;102123:4:::1;102104:23;;:6;:15;102111:7;102104:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;102096:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;102173:5;102155:6;:15;102162:7;102155:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;102024:162:::0;:::o;53283:233::-;53355:7;53396:1;53379:19;;:5;:19;;;53375:60;;53407:28;;;;;;;;;;;;;;53375:60;47442:13;53453:18;:25;53472:5;53453:25;;;;;;;;;;;;;;;;:55;53446:62;;53283:233;;;:::o;36406:103::-;35651:13;:11;:13::i;:::-;36471:30:::1;36498:1;36471:18;:30::i;:::-;36406:103::o:0;100538:206::-;97054:14;:23;97069:7;;;;97054:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97050:52;;;97086:16;;;;;;;;;;;;;;97050:52;35651:13:::1;:11;:13::i;:::-;95877:2:::2;100658:8;100641:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;100633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;100717:19;100723:2;100727:8;100717:5;:19::i;:::-;100538:206:::0;;:::o;101748:94::-;35651:13;:11;:13::i;:::-;101827:7:::1;101814:10;;:20;;;;;;;;;;;;;;;;;;101748:94:::0;:::o;95887:33::-;;;;:::o;35765:87::-;35811:7;35838:6;;;;;;;;;;;35831:13;;35765:87;:::o;56524:104::-;56580:13;56613:7;56606:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56524:104;:::o;102609:234::-;102740:8;102750:24;;;;;;;;;;;94145:7;94142:925;;;94274:22;94268:4;94261:36;94375:9;94369:4;94362:23;94527:8;94523:2;94519:17;94515:2;94511:26;94505:4;94498:40;94714:4;94708;94702;94696;94669:25;94662:5;94651:68;94641:290;;94843:16;94837:4;94831;94816:44;94895:16;94889:4;94882:30;94641:290;95050:1;95044:4;95037:15;94142:925;102792:43:::1;102816:8;102826;102792:23;:43::i;:::-;102609:234:::0;;;;:::o;95759:36::-;95794:1;95759:36;:::o;101850:166::-;35651:13;:11;:13::i;:::-;101949:5:::1;101930:24;;:6;:15;101937:7;101930:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;101922:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;102004:4;101986:6;:15;101993:7;101986:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;101850:166:::0;:::o;96142:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;99123:128::-;97054:14;:23;97069:7;;;;97054:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97050:52;;;97086:16;;;;;;;;;;;;;;97050:52;35651:13:::1;:11;:13::i;:::-;99238:5:::2;99211:24;;:32;;;;;;;;;;;;;;;;;;99123:128:::0;:::o;104185:273::-;104360:4;104366:24;;;;;;;;;;;91918:7;91915:1643;;;92131:8;92123:4;92119:2;92115:13;92111:2;92107:22;92104:36;92094:1449;;92446:22;92440:4;92433:36;92555:9;92549:4;92542:23;92648:8;92642:4;92635:22;92841:4;92835;92829;92823;92796:25;92789:5;92778:68;92768:306;;92978:16;92972:4;92966;92951:44;93034:16;93028:4;93021:30;92768:306;93522:1;93516:4;93509:15;92094:1449;91915:1643;104403:47:::1;104426:4;104432:2;104436:7;104445:4;104403:22;:47::i;:::-;104185:273:::0;;;;;;:::o;96090:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;96053:30::-;;;;;;;;;;;;;:::o;99474:147::-;35651:13;:11;:13::i;:::-;99568:45:::1;99587:8;99597:15;99568:18;:45::i;:::-;99474:147:::0;;:::o;95715:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95975:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;97928:446::-;98026:13;98069:16;98077:7;98069;:16::i;:::-;98053:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;98171:28;98202:10;:8;:10::i;:::-;98171:41;;98257:1;98232:14;98226:28;:32;:140;;;;;;;;;;;;;;;;;98294:14;98310:25;98327:7;98310:16;:25::i;:::-;98337:13;98277:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;98226:140;98219:147;;;97928:446;;;:::o;97792:128::-;35651:13;:11;:13::i;:::-;97895:17:::1;97879:13;:33;;;;;;:::i;:::-;;97792:128:::0;:::o;98542:119::-;98604:7;98631:22;98645:7;98631:13;:22::i;:::-;98624:29;;98542:119;;;:::o;100362:168::-;97054:14;:23;97069:7;;;;97054:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97050:52;;;97086:16;;;;;;;;;;;;;;97050:52;35651:13:::1;:11;:13::i;:::-;95794:1:::2;100434:14;:12;:14::i;:::-;:26;100430:62;;100469:23;;;;;;;;;;;;;;100430:62;100503:19;100509:2;95794:1;100503:5;:19::i;:::-;100362:168:::0;:::o;63788:164::-;63885:4;63909:18;:25;63928:5;63909:25;;;;;;;;;;;;;;;:35;63935:8;63909:35;;;;;;;;;;;;;;;;;;;;;;;;;63902:42;;63788:164;;;;:::o;36664:201::-;35651:13;:11;:13::i;:::-;36773:1:::1;36753:22;;:8;:22;;::::0;36745:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36829:28;36848:8;36829:18;:28::i;:::-;36664:201:::0;:::o;101407:102::-;35651:13;:11;:13::i;:::-;101492:9:::1;101480;:21;;;;101407:102:::0;:::o;96010:36::-;;;;;;;;;;;;;:::o;55446:639::-;55531:4;55870:10;55855:25;;:11;:25;;;;:102;;;;55947:10;55932:25;;:11;:25;;;;55855:102;:179;;;;56024:10;56009:25;;:11;:25;;;;55855:179;55835:199;;55446:639;;;:::o;30908:215::-;31010:4;31049:26;31034:41;;;:11;:41;;;;:81;;;;31079:36;31103:11;31079:23;:36::i;:::-;31034:81;31027:88;;30908:215;;;:::o;64210:282::-;64275:4;64331:7;64312:15;:13;:15::i;:::-;:26;;:66;;;;;64365:13;;64355:7;:23;64312:66;:153;;;;;64464:1;48218:8;64416:17;:26;64434:7;64416:26;;;;;;;;;;;;:44;:49;64312:153;64292:173;;64210:282;;;:::o;62272:408::-;62361:13;62377:16;62385:7;62377;:16::i;:::-;62361:32;;62433:5;62410:28;;:19;:17;:19::i;:::-;:28;;;62406:175;;62458:44;62475:5;62482:19;:17;:19::i;:::-;62458:16;:44::i;:::-;62453:128;;62530:35;;;;;;;;;;;;;;62453:128;62406:175;62626:2;62593:15;:24;62609:7;62593:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;62664:7;62660:2;62644:28;;62653:5;62644:28;;;;;;;;;;;;62350:330;62272:408;;:::o;35930:132::-;36005:12;:10;:12::i;:::-;35994:23;;:7;:5;:7::i;:::-;:23;;;35986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35930:132::o;51615:92::-;51671:7;51698:1;51691:8;;51615:92;:::o;66478:2825::-;66620:27;66650;66669:7;66650:18;:27::i;:::-;66620:57;;66735:4;66694:45;;66710:19;66694:45;;;66690:86;;66748:28;;;;;;;;;;;;;;66690:86;66790:27;66819:23;66846:35;66873:7;66846:26;:35::i;:::-;66789:92;;;;66981:68;67006:15;67023:4;67029:19;:17;:19::i;:::-;66981:24;:68::i;:::-;66976:180;;67069:43;67086:4;67092:19;:17;:19::i;:::-;67069:16;:43::i;:::-;67064:92;;67121:35;;;;;;;;;;;;;;67064:92;66976:180;67187:1;67173:16;;:2;:16;;;67169:52;;67198:23;;;;;;;;;;;;;;67169:52;67234:43;67256:4;67262:2;67266:7;67275:1;67234:21;:43::i;:::-;67370:15;67367:160;;;67510:1;67489:19;67482:30;67367:160;67907:18;:24;67926:4;67907:24;;;;;;;;;;;;;;;;67905:26;;;;;;;;;;;;67976:18;:22;67995:2;67976:22;;;;;;;;;;;;;;;;67974:24;;;;;;;;;;;68298:146;68335:2;68384:45;68399:4;68405:2;68409:19;68384:14;:45::i;:::-;48498:8;68356:73;68298:18;:146::i;:::-;68269:17;:26;68287:7;68269:26;;;;;;;;;;;:175;;;;68615:1;48498:8;68564:19;:47;:52;68560:627;;68637:19;68669:1;68659:7;:11;68637:33;;68826:1;68792:17;:30;68810:11;68792:30;;;;;;;;;;;;:35;68788:384;;68930:13;;68915:11;:28;68911:242;;69110:19;69077:17;:30;69095:11;69077:30;;;;;;;;;;;:52;;;;68911:242;68788:384;68618:569;68560:627;69234:7;69230:2;69215:27;;69224:4;69215:27;;;;;;;;;;;;69253:42;69274:4;69280:2;69284:7;69293:1;69253:20;:42::i;:::-;66609:2694;;;66478:2825;;;:::o;31898:97::-;31956:6;31982:5;31975:12;;31898:97;:::o;52520:296::-;52575:7;52782:15;:13;:15::i;:::-;52766:13;;:31;52759:38;;52520:296;:::o;73859:2966::-;73932:20;73955:13;;73932:36;;73995:1;73983:8;:13;73979:44;;74005:18;;;;;;;;;;;;;;73979:44;74036:61;74066:1;74070:2;74074:12;74088:8;74036:21;:61::i;:::-;74580:1;47580:2;74550:1;:26;;74549:32;74537:8;:45;74511:18;:22;74530:2;74511:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;74859:139;74896:2;74950:33;74973:1;74977:2;74981:1;74950:14;:33::i;:::-;74917:30;74938:8;74917:20;:30::i;:::-;:66;74859:18;:139::i;:::-;74825:17;:31;74843:12;74825:31;;;;;;;;;;;:173;;;;75015:16;75046:11;75075:8;75060:12;:23;75046:37;;75596:16;75592:2;75588:25;75576:37;;75968:12;75928:8;75887:1;75825:25;75766:1;75705;75678:335;76339:1;76325:12;76321:20;76279:346;76380:3;76371:7;76368:16;76279:346;;76598:7;76588:8;76585:1;76558:25;76555:1;76552;76547:59;76433:1;76424:7;76420:15;76409:26;;76279:346;;;76283:77;76670:1;76658:8;:13;76654:45;;76680:19;;;;;;;;;;;;;;76654:45;76732:3;76716:13;:19;;;;74285:2462;;76757:60;76786:1;76790:2;76794:12;76808:8;76757:20;:60::i;:::-;73921:2904;73859:2966;;:::o;69399:193::-;69545:39;69562:4;69568:2;69572:7;69545:39;;;;;;;;;;;;:16;:39::i;:::-;69399:193;;;:::o;58896:1275::-;58963:7;58983:12;58998:7;58983:22;;59066:4;59047:15;:13;:15::i;:::-;:23;59043:1061;;59100:13;;59093:4;:20;59089:1015;;;59138:14;59155:17;:23;59173:4;59155:23;;;;;;;;;;;;59138:40;;59272:1;48218:8;59244:6;:24;:29;59240:845;;59909:113;59926:1;59916:6;:11;59909:113;;59969:17;:25;59987:6;;;;;;;59969:25;;;;;;;;;;;;59960:34;;59909:113;;;60055:6;60048:13;;;;;;59240:845;59115:989;59089:1015;59043:1061;60132:31;;;;;;;;;;;;;;58896:1275;;;;:::o;37025:191::-;37099:16;37118:6;;;;;;;;;;;37099:25;;37144:8;37135:6;;:17;;;;;;;;;;;;;;;;;;37199:8;37168:40;;37189:8;37168:40;;;;;;;;;;;;37088:128;37025:191;:::o;63397:234::-;63544:8;63492:18;:39;63511:19;:17;:19::i;:::-;63492:39;;;;;;;;;;;;;;;:49;63532:8;63492:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;63604:8;63568:55;;63583:19;:17;:19::i;:::-;63568:55;;;63614:8;63568:55;;;;;;:::i;:::-;;;;;;;;63397:234;;:::o;70190:407::-;70365:31;70378:4;70384:2;70388:7;70365:12;:31::i;:::-;70429:1;70411:2;:14;;;:19;70407:183;;70450:56;70481:4;70487:2;70491:7;70500:5;70450:30;:56::i;:::-;70445:145;;70534:40;;;;;;;;;;;;;;70445:145;70407:183;70190:407;;;;:::o;32266:332::-;32385:17;:15;:17::i;:::-;32369:33;;:12;:33;;;;32361:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;32488:1;32468:22;;:8;:22;;;32460:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32555:35;;;;;;;;32567:8;32555:35;;;;;;32577:12;32555:35;;;;;32533:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32266:332;;:::o;97670:114::-;97730:13;97763;97756:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97670:114;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;53598:178::-;53659:7;47442:13;47580:2;53687:18;:25;53706:5;53687:25;;;;;;;;;;;;;;;;:50;;53686:82;53679:89;;53598:178;;;:::o;28462:157::-;28547:4;28586:25;28571:40;;;:11;:40;;;;28564:47;;28462:157;;;:::o;86518:105::-;86578:7;86605:10;86598:17;;86518:105;:::o;34316:98::-;34369:7;34396:10;34389:17;;34316:98;:::o;65373:485::-;65475:27;65504:23;65545:38;65586:15;:24;65602:7;65586:24;;;;;;;;;;;65545:65;;65763:18;65740:41;;65820:19;65814:26;65795:45;;65725:126;65373:485;;;:::o;64601:659::-;64750:11;64915:16;64908:5;64904:28;64895:37;;65075:16;65064:9;65060:32;65047:45;;65225:15;65214:9;65211:30;65203:5;65192:9;65189:20;65186:56;65176:66;;64601:659;;;;;:::o;71259:159::-;;;;;:::o;85827:311::-;85962:7;85982:16;48622:3;86008:19;:41;;85982:68;;48622:3;86076:31;86087:4;86093:2;86097:9;86076:10;:31::i;:::-;86068:40;;:62;;86061:69;;;85827:311;;;;;:::o;60719:450::-;60799:14;60967:16;60960:5;60956:28;60947:37;;61144:5;61130:11;61105:23;61101:41;61098:52;61091:5;61088:63;61078:73;;60719:450;;;;:::o;72083:158::-;;;;;:::o;61271:324::-;61341:14;61574:1;61564:8;61561:15;61535:24;61531:46;61521:56;;61271:324;;;:::o;72681:716::-;72844:4;72890:2;72865:45;;;72911:19;:17;:19::i;:::-;72932:4;72938:7;72947:5;72865:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72861:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73165:1;73148:6;:13;:18;73144:235;;73194:40;;;;;;;;;;;;;;73144:235;73337:6;73331:13;73322:6;73318:2;73314:15;73307:38;72861:529;73034:54;;;73024:64;;;:6;:64;;;;73017:71;;;72681:716;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;85528:147::-;85665:6;85528:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:117;5245:1;5242;5235:12;5273:553;5331:8;5341:6;5391:3;5384:4;5376:6;5372:17;5368:27;5358:122;;5399:79;;:::i;:::-;5358:122;5512:6;5499:20;5489:30;;5542:18;5534:6;5531:30;5528:117;;;5564:79;;:::i;:::-;5528:117;5678:4;5670:6;5666:17;5654:29;;5732:3;5724:4;5716:6;5712:17;5702:8;5698:32;5695:41;5692:128;;;5739:79;;:::i;:::-;5692:128;5273:553;;;;;:::o;5832:529::-;5903:6;5911;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6114:1;6103:9;6099:17;6086:31;6144:18;6136:6;6133:30;6130:117;;;6166:79;;:::i;:::-;6130:117;6279:65;6336:7;6327:6;6316:9;6312:22;6279:65;:::i;:::-;6261:83;;;;6057:297;5832:529;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:332::-;7945:4;7983:2;7972:9;7968:18;7960:26;;7996:71;8064:1;8053:9;8049:17;8040:6;7996:71;:::i;:::-;8077:72;8145:2;8134:9;8130:18;8121:6;8077:72;:::i;:::-;7824:332;;;;;:::o;8162:329::-;8221:6;8270:2;8258:9;8249:7;8245:23;8241:32;8238:119;;;8276:79;;:::i;:::-;8238:119;8396:1;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8367:117;8162:329;;;;:::o;8497:116::-;8567:21;8582:5;8567:21;:::i;:::-;8560:5;8557:32;8547:60;;8603:1;8600;8593:12;8547:60;8497:116;:::o;8619:133::-;8662:5;8700:6;8687:20;8678:29;;8716:30;8740:5;8716:30;:::i;:::-;8619:133;;;;:::o;8758:613::-;8832:6;8840;8848;8897:2;8885:9;8876:7;8872:23;8868:32;8865:119;;;8903:79;;:::i;:::-;8865:119;9023:1;9048:53;9093:7;9084:6;9073:9;9069:22;9048:53;:::i;:::-;9038:63;;8994:117;9150:2;9176:53;9221:7;9212:6;9201:9;9197:22;9176:53;:::i;:::-;9166:63;;9121:118;9278:2;9304:50;9346:7;9337:6;9326:9;9322:22;9304:50;:::i;:::-;9294:60;;9249:115;8758:613;;;;;:::o;9377:323::-;9433:6;9482:2;9470:9;9461:7;9457:23;9453:32;9450:119;;;9488:79;;:::i;:::-;9450:119;9608:1;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9579:114;9377:323;;;;:::o;9706:468::-;9771:6;9779;9828:2;9816:9;9807:7;9803:23;9799:32;9796:119;;;9834:79;;:::i;:::-;9796:119;9954:1;9979:53;10024:7;10015:6;10004:9;10000:22;9979:53;:::i;:::-;9969:63;;9925:117;10081:2;10107:50;10149:7;10140:6;10129:9;10125:22;10107:50;:::i;:::-;10097:60;;10052:115;9706:468;;;;;:::o;10180:117::-;10289:1;10286;10279:12;10303:180;10351:77;10348:1;10341:88;10448:4;10445:1;10438:15;10472:4;10469:1;10462:15;10489:281;10572:27;10594:4;10572:27;:::i;:::-;10564:6;10560:40;10702:6;10690:10;10687:22;10666:18;10654:10;10651:34;10648:62;10645:88;;;10713:18;;:::i;:::-;10645:88;10753:10;10749:2;10742:22;10532:238;10489:281;;:::o;10776:129::-;10810:6;10837:20;;:::i;:::-;10827:30;;10866:33;10894:4;10886:6;10866:33;:::i;:::-;10776:129;;;:::o;10911:307::-;10972:4;11062:18;11054:6;11051:30;11048:56;;;11084:18;;:::i;:::-;11048:56;11122:29;11144:6;11122:29;:::i;:::-;11114:37;;11206:4;11200;11196:15;11188:23;;10911:307;;;:::o;11224:146::-;11321:6;11316:3;11311;11298:30;11362:1;11353:6;11348:3;11344:16;11337:27;11224:146;;;:::o;11376:423::-;11453:5;11478:65;11494:48;11535:6;11494:48;:::i;:::-;11478:65;:::i;:::-;11469:74;;11566:6;11559:5;11552:21;11604:4;11597:5;11593:16;11642:3;11633:6;11628:3;11624:16;11621:25;11618:112;;;11649:79;;:::i;:::-;11618:112;11739:54;11786:6;11781:3;11776;11739:54;:::i;:::-;11459:340;11376:423;;;;;:::o;11818:338::-;11873:5;11922:3;11915:4;11907:6;11903:17;11899:27;11889:122;;11930:79;;:::i;:::-;11889:122;12047:6;12034:20;12072:78;12146:3;12138:6;12131:4;12123:6;12119:17;12072:78;:::i;:::-;12063:87;;11879:277;11818:338;;;;:::o;12162:943::-;12257:6;12265;12273;12281;12330:3;12318:9;12309:7;12305:23;12301:33;12298:120;;;12337:79;;:::i;:::-;12298:120;12457:1;12482:53;12527:7;12518:6;12507:9;12503:22;12482:53;:::i;:::-;12472:63;;12428:117;12584:2;12610:53;12655:7;12646:6;12635:9;12631:22;12610:53;:::i;:::-;12600:63;;12555:118;12712:2;12738:53;12783:7;12774:6;12763:9;12759:22;12738:53;:::i;:::-;12728:63;;12683:118;12868:2;12857:9;12853:18;12840:32;12899:18;12891:6;12888:30;12885:117;;;12921:79;;:::i;:::-;12885:117;13026:62;13080:7;13071:6;13060:9;13056:22;13026:62;:::i;:::-;13016:72;;12811:287;12162:943;;;;;;;:::o;13111:109::-;13147:7;13187:26;13180:5;13176:38;13165:49;;13111:109;;;:::o;13226:120::-;13298:23;13315:5;13298:23;:::i;:::-;13291:5;13288:34;13278:62;;13336:1;13333;13326:12;13278:62;13226:120;:::o;13352:137::-;13397:5;13435:6;13422:20;13413:29;;13451:32;13477:5;13451:32;:::i;:::-;13352:137;;;;:::o;13495:472::-;13562:6;13570;13619:2;13607:9;13598:7;13594:23;13590:32;13587:119;;;13625:79;;:::i;:::-;13587:119;13745:1;13770:53;13815:7;13806:6;13795:9;13791:22;13770:53;:::i;:::-;13760:63;;13716:117;13872:2;13898:52;13942:7;13933:6;13922:9;13918:22;13898:52;:::i;:::-;13888:62;;13843:117;13495:472;;;;;:::o;13973:308::-;14035:4;14125:18;14117:6;14114:30;14111:56;;;14147:18;;:::i;:::-;14111:56;14185:29;14207:6;14185:29;:::i;:::-;14177:37;;14269:4;14263;14259:15;14251:23;;13973:308;;;:::o;14287:425::-;14365:5;14390:66;14406:49;14448:6;14406:49;:::i;:::-;14390:66;:::i;:::-;14381:75;;14479:6;14472:5;14465:21;14517:4;14510:5;14506:16;14555:3;14546:6;14541:3;14537:16;14534:25;14531:112;;;14562:79;;:::i;:::-;14531:112;14652:54;14699:6;14694:3;14689;14652:54;:::i;:::-;14371:341;14287:425;;;;;:::o;14732:340::-;14788:5;14837:3;14830:4;14822:6;14818:17;14814:27;14804:122;;14845:79;;:::i;:::-;14804:122;14962:6;14949:20;14987:79;15062:3;15054:6;15047:4;15039:6;15035:17;14987:79;:::i;:::-;14978:88;;14794:278;14732:340;;;;:::o;15078:509::-;15147:6;15196:2;15184:9;15175:7;15171:23;15167:32;15164:119;;;15202:79;;:::i;:::-;15164:119;15350:1;15339:9;15335:17;15322:31;15380:18;15372:6;15369:30;15366:117;;;15402:79;;:::i;:::-;15366:117;15507:63;15562:7;15553:6;15542:9;15538:22;15507:63;:::i;:::-;15497:73;;15293:287;15078:509;;;;:::o;15593:474::-;15661:6;15669;15718:2;15706:9;15697:7;15693:23;15689:32;15686:119;;;15724:79;;:::i;:::-;15686:119;15844:1;15869:53;15914:7;15905:6;15894:9;15890:22;15869:53;:::i;:::-;15859:63;;15815:117;15971:2;15997:53;16042:7;16033:6;16022:9;16018:22;15997:53;:::i;:::-;15987:63;;15942:118;15593:474;;;;;:::o;16073:180::-;16121:77;16118:1;16111:88;16218:4;16215:1;16208:15;16242:4;16239:1;16232:15;16259:320;16303:6;16340:1;16334:4;16330:12;16320:22;;16387:1;16381:4;16377:12;16408:18;16398:81;;16464:4;16456:6;16452:17;16442:27;;16398:81;16526:2;16518:6;16515:14;16495:18;16492:38;16489:84;;16545:18;;:::i;:::-;16489:84;16310:269;16259:320;;;:::o;16585:97::-;16644:6;16672:3;16662:13;;16585:97;;;;:::o;16688:141::-;16737:4;16760:3;16752:11;;16783:3;16780:1;16773:14;16817:4;16814:1;16804:18;16796:26;;16688:141;;;:::o;16835:93::-;16872:6;16919:2;16914;16907:5;16903:14;16899:23;16889:33;;16835:93;;;:::o;16934:107::-;16978:8;17028:5;17022:4;17018:16;16997:37;;16934:107;;;;:::o;17047:393::-;17116:6;17166:1;17154:10;17150:18;17189:97;17219:66;17208:9;17189:97;:::i;:::-;17307:39;17337:8;17326:9;17307:39;:::i;:::-;17295:51;;17379:4;17375:9;17368:5;17364:21;17355:30;;17428:4;17418:8;17414:19;17407:5;17404:30;17394:40;;17123:317;;17047:393;;;;;:::o;17446:60::-;17474:3;17495:5;17488:12;;17446:60;;;:::o;17512:142::-;17562:9;17595:53;17613:34;17622:24;17640:5;17622:24;:::i;:::-;17613:34;:::i;:::-;17595:53;:::i;:::-;17582:66;;17512:142;;;:::o;17660:75::-;17703:3;17724:5;17717:12;;17660:75;;;:::o;17741:269::-;17851:39;17882:7;17851:39;:::i;:::-;17912:91;17961:41;17985:16;17961:41;:::i;:::-;17953:6;17946:4;17940:11;17912:91;:::i;:::-;17906:4;17899:105;17817:193;17741:269;;;:::o;18016:73::-;18061:3;18016:73;:::o;18095:189::-;18172:32;;:::i;:::-;18213:65;18271:6;18263;18257:4;18213:65;:::i;:::-;18148:136;18095:189;;:::o;18290:186::-;18350:120;18367:3;18360:5;18357:14;18350:120;;;18421:39;18458:1;18451:5;18421:39;:::i;:::-;18394:1;18387:5;18383:13;18374:22;;18350:120;;;18290:186;;:::o;18482:543::-;18583:2;18578:3;18575:11;18572:446;;;18617:38;18649:5;18617:38;:::i;:::-;18701:29;18719:10;18701:29;:::i;:::-;18691:8;18687:44;18884:2;18872:10;18869:18;18866:49;;;18905:8;18890:23;;18866:49;18928:80;18984:22;19002:3;18984:22;:::i;:::-;18974:8;18970:37;18957:11;18928:80;:::i;:::-;18587:431;;18572:446;18482:543;;;:::o;19031:117::-;19085:8;19135:5;19129:4;19125:16;19104:37;;19031:117;;;;:::o;19154:169::-;19198:6;19231:51;19279:1;19275:6;19267:5;19264:1;19260:13;19231:51;:::i;:::-;19227:56;19312:4;19306;19302:15;19292:25;;19205:118;19154:169;;;;:::o;19328:295::-;19404:4;19550:29;19575:3;19569:4;19550:29;:::i;:::-;19542:37;;19612:3;19609:1;19605:11;19599:4;19596:21;19588:29;;19328:295;;;;:::o;19628:1403::-;19752:44;19792:3;19787;19752:44;:::i;:::-;19861:18;19853:6;19850:30;19847:56;;;19883:18;;:::i;:::-;19847:56;19927:38;19959:4;19953:11;19927:38;:::i;:::-;20012:67;20072:6;20064;20058:4;20012:67;:::i;:::-;20106:1;20135:2;20127:6;20124:14;20152:1;20147:632;;;;20823:1;20840:6;20837:84;;;20896:9;20891:3;20887:19;20874:33;20865:42;;20837:84;20947:67;21007:6;21000:5;20947:67;:::i;:::-;20941:4;20934:81;20796:229;20117:908;;20147:632;20199:4;20195:9;20187:6;20183:22;20233:37;20265:4;20233:37;:::i;:::-;20292:1;20306:215;20320:7;20317:1;20314:14;20306:215;;;20406:9;20401:3;20397:19;20384:33;20376:6;20369:49;20457:1;20449:6;20445:14;20435:24;;20504:2;20493:9;20489:18;20476:31;;20343:4;20340:1;20336:12;20331:17;;20306:215;;;20549:6;20540:7;20537:19;20534:186;;;20614:9;20609:3;20605:19;20592:33;20657:48;20699:4;20691:6;20687:17;20676:9;20657:48;:::i;:::-;20649:6;20642:64;20557:163;20534:186;20766:1;20762;20754:6;20750:14;20746:22;20740:4;20733:36;20154:625;;;20117:908;;19727:1304;;;19628:1403;;;:::o;21037:180::-;21085:77;21082:1;21075:88;21182:4;21179:1;21172:15;21206:4;21203:1;21196:15;21223:410;21263:7;21286:20;21304:1;21286:20;:::i;:::-;21281:25;;21320:20;21338:1;21320:20;:::i;:::-;21315:25;;21375:1;21372;21368:9;21397:30;21415:11;21397:30;:::i;:::-;21386:41;;21576:1;21567:7;21563:15;21560:1;21557:22;21537:1;21530:9;21510:83;21487:139;;21606:18;;:::i;:::-;21487:139;21271:362;21223:410;;;;:::o;21639:180::-;21687:77;21684:1;21677:88;21784:4;21781:1;21774:15;21808:4;21805:1;21798:15;21825:185;21865:1;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21955:1;21945:35;;21960:18;;:::i;:::-;21945:35;22002:1;21999;21995:9;21990:14;;21825:185;;;;:::o;22016:147::-;22117:11;22154:3;22139:18;;22016:147;;;;:::o;22169:114::-;;:::o;22289:398::-;22448:3;22469:83;22550:1;22545:3;22469:83;:::i;:::-;22462:90;;22561:93;22650:3;22561:93;:::i;:::-;22679:1;22674:3;22670:11;22663:18;;22289:398;;;:::o;22693:379::-;22877:3;22899:147;23042:3;22899:147;:::i;:::-;22892:154;;23063:3;23056:10;;22693:379;;;:::o;23078:169::-;23218:21;23214:1;23206:6;23202:14;23195:45;23078:169;:::o;23253:366::-;23395:3;23416:67;23480:2;23475:3;23416:67;:::i;:::-;23409:74;;23492:93;23581:3;23492:93;:::i;:::-;23610:2;23605:3;23601:12;23594:19;;23253:366;;;:::o;23625:419::-;23791:4;23829:2;23818:9;23814:18;23806:26;;23878:9;23872:4;23868:20;23864:1;23853:9;23849:17;23842:47;23906:131;24032:4;23906:131;:::i;:::-;23898:139;;23625:419;;;:::o;24050:174::-;24190:26;24186:1;24178:6;24174:14;24167:50;24050:174;:::o;24230:366::-;24372:3;24393:67;24457:2;24452:3;24393:67;:::i;:::-;24386:74;;24469:93;24558:3;24469:93;:::i;:::-;24587:2;24582:3;24578:12;24571:19;;24230:366;;;:::o;24602:419::-;24768:4;24806:2;24795:9;24791:18;24783:26;;24855:9;24849:4;24845:20;24841:1;24830:9;24826:17;24819:47;24883:131;25009:4;24883:131;:::i;:::-;24875:139;;24602:419;;;:::o;25027:168::-;25167:20;25163:1;25155:6;25151:14;25144:44;25027:168;:::o;25201:366::-;25343:3;25364:67;25428:2;25423:3;25364:67;:::i;:::-;25357:74;;25440:93;25529:3;25440:93;:::i;:::-;25558:2;25553:3;25549:12;25542:19;;25201:366;;;:::o;25573:419::-;25739:4;25777:2;25766:9;25762:18;25754:26;;25826:9;25820:4;25816:20;25812:1;25801:9;25797:17;25790:47;25854:131;25980:4;25854:131;:::i;:::-;25846:139;;25573:419;;;:::o;25998:191::-;26038:3;26057:20;26075:1;26057:20;:::i;:::-;26052:25;;26091:20;26109:1;26091:20;:::i;:::-;26086:25;;26134:1;26131;26127:9;26120:16;;26155:3;26152:1;26149:10;26146:36;;;26162:18;;:::i;:::-;26146:36;25998:191;;;;:::o;26195:172::-;26335:24;26331:1;26323:6;26319:14;26312:48;26195:172;:::o;26373:366::-;26515:3;26536:67;26600:2;26595:3;26536:67;:::i;:::-;26529:74;;26612:93;26701:3;26612:93;:::i;:::-;26730:2;26725:3;26721:12;26714:19;;26373:366;;;:::o;26745:419::-;26911:4;26949:2;26938:9;26934:18;26926:26;;26998:9;26992:4;26988:20;26984:1;26973:9;26969:17;26962:47;27026:131;27152:4;27026:131;:::i;:::-;27018:139;;26745:419;;;:::o;27170:176::-;27310:28;27306:1;27298:6;27294:14;27287:52;27170:176;:::o;27352:366::-;27494:3;27515:67;27579:2;27574:3;27515:67;:::i;:::-;27508:74;;27591:93;27680:3;27591:93;:::i;:::-;27709:2;27704:3;27700:12;27693:19;;27352:366;;;:::o;27724:419::-;27890:4;27928:2;27917:9;27913:18;27905:26;;27977:9;27971:4;27967:20;27963:1;27952:9;27948:17;27941:47;28005:131;28131:4;28005:131;:::i;:::-;27997:139;;27724:419;;;:::o;28149:194::-;28189:4;28209:20;28227:1;28209:20;:::i;:::-;28204:25;;28243:20;28261:1;28243:20;:::i;:::-;28238:25;;28287:1;28284;28280:9;28272:17;;28311:1;28305:4;28302:11;28299:37;;;28316:18;;:::i;:::-;28299:37;28149:194;;;;:::o;28349:162::-;28489:14;28485:1;28477:6;28473:14;28466:38;28349:162;:::o;28517:366::-;28659:3;28680:67;28744:2;28739:3;28680:67;:::i;:::-;28673:74;;28756:93;28845:3;28756:93;:::i;:::-;28874:2;28869:3;28865:12;28858:19;;28517:366;;;:::o;28889:419::-;29055:4;29093:2;29082:9;29078:18;29070:26;;29142:9;29136:4;29132:20;29128:1;29117:9;29113:17;29106:47;29170:131;29296:4;29170:131;:::i;:::-;29162:139;;28889:419;;;:::o;29314:166::-;29454:18;29450:1;29442:6;29438:14;29431:42;29314:166;:::o;29486:366::-;29628:3;29649:67;29713:2;29708:3;29649:67;:::i;:::-;29642:74;;29725:93;29814:3;29725:93;:::i;:::-;29843:2;29838:3;29834:12;29827:19;;29486:366;;;:::o;29858:419::-;30024:4;30062:2;30051:9;30047:18;30039:26;;30111:9;30105:4;30101:20;30097:1;30086:9;30082:17;30075:47;30139:131;30265:4;30139:131;:::i;:::-;30131:139;;29858:419;;;:::o;30283:234::-;30423:34;30419:1;30411:6;30407:14;30400:58;30492:17;30487:2;30479:6;30475:15;30468:42;30283:234;:::o;30523:366::-;30665:3;30686:67;30750:2;30745:3;30686:67;:::i;:::-;30679:74;;30762:93;30851:3;30762:93;:::i;:::-;30880:2;30875:3;30871:12;30864:19;;30523:366;;;:::o;30895:419::-;31061:4;31099:2;31088:9;31084:18;31076:26;;31148:9;31142:4;31138:20;31134:1;31123:9;31119:17;31112:47;31176:131;31302:4;31176:131;:::i;:::-;31168:139;;30895:419;;;:::o;31320:148::-;31422:11;31459:3;31444:18;;31320:148;;;;:::o;31474:390::-;31580:3;31608:39;31641:5;31608:39;:::i;:::-;31663:89;31745:6;31740:3;31663:89;:::i;:::-;31656:96;;31761:65;31819:6;31814:3;31807:4;31800:5;31796:16;31761:65;:::i;:::-;31851:6;31846:3;31842:16;31835:23;;31584:280;31474:390;;;;:::o;31894:874::-;31997:3;32034:5;32028:12;32063:36;32089:9;32063:36;:::i;:::-;32115:89;32197:6;32192:3;32115:89;:::i;:::-;32108:96;;32235:1;32224:9;32220:17;32251:1;32246:166;;;;32426:1;32421:341;;;;32213:549;;32246:166;32330:4;32326:9;32315;32311:25;32306:3;32299:38;32392:6;32385:14;32378:22;32370:6;32366:35;32361:3;32357:45;32350:52;;32246:166;;32421:341;32488:38;32520:5;32488:38;:::i;:::-;32548:1;32562:154;32576:6;32573:1;32570:13;32562:154;;;32650:7;32644:14;32640:1;32635:3;32631:11;32624:35;32700:1;32691:7;32687:15;32676:26;;32598:4;32595:1;32591:12;32586:17;;32562:154;;;32745:6;32740:3;32736:16;32729:23;;32428:334;;32213:549;;32001:767;;31894:874;;;;:::o;32774:589::-;32999:3;33021:95;33112:3;33103:6;33021:95;:::i;:::-;33014:102;;33133:95;33224:3;33215:6;33133:95;:::i;:::-;33126:102;;33245:92;33333:3;33324:6;33245:92;:::i;:::-;33238:99;;33354:3;33347:10;;32774:589;;;;;;:::o;33369:1395::-;33486:37;33519:3;33486:37;:::i;:::-;33588:18;33580:6;33577:30;33574:56;;;33610:18;;:::i;:::-;33574:56;33654:38;33686:4;33680:11;33654:38;:::i;:::-;33739:67;33799:6;33791;33785:4;33739:67;:::i;:::-;33833:1;33857:4;33844:17;;33889:2;33881:6;33878:14;33906:1;33901:618;;;;34563:1;34580:6;34577:77;;;34629:9;34624:3;34620:19;34614:26;34605:35;;34577:77;34680:67;34740:6;34733:5;34680:67;:::i;:::-;34674:4;34667:81;34536:222;33871:887;;33901:618;33953:4;33949:9;33941:6;33937:22;33987:37;34019:4;33987:37;:::i;:::-;34046:1;34060:208;34074:7;34071:1;34068:14;34060:208;;;34153:9;34148:3;34144:19;34138:26;34130:6;34123:42;34204:1;34196:6;34192:14;34182:24;;34251:2;34240:9;34236:18;34223:31;;34097:4;34094:1;34090:12;34085:17;;34060:208;;;34296:6;34287:7;34284:19;34281:179;;;34354:9;34349:3;34345:19;34339:26;34397:48;34439:4;34431:6;34427:17;34416:9;34397:48;:::i;:::-;34389:6;34382:64;34304:156;34281:179;34506:1;34502;34494:6;34490:14;34486:22;34480:4;34473:36;33908:611;;;33871:887;;33461:1303;;;33369:1395;;:::o;34770:225::-;34910:34;34906:1;34898:6;34894:14;34887:58;34979:8;34974:2;34966:6;34962:15;34955:33;34770:225;:::o;35001:366::-;35143:3;35164:67;35228:2;35223:3;35164:67;:::i;:::-;35157:74;;35240:93;35329:3;35240:93;:::i;:::-;35358:2;35353:3;35349:12;35342:19;;35001:366;;;:::o;35373:419::-;35539:4;35577:2;35566:9;35562:18;35554:26;;35626:9;35620:4;35616:20;35612:1;35601:9;35597:17;35590:47;35654:131;35780:4;35654:131;:::i;:::-;35646:139;;35373:419;;;:::o;35798:182::-;35938:34;35934:1;35926:6;35922:14;35915:58;35798:182;:::o;35986:366::-;36128:3;36149:67;36213:2;36208:3;36149:67;:::i;:::-;36142:74;;36225:93;36314:3;36225:93;:::i;:::-;36343:2;36338:3;36334:12;36327:19;;35986:366;;;:::o;36358:419::-;36524:4;36562:2;36551:9;36547:18;36539:26;;36611:9;36605:4;36601:20;36597:1;36586:9;36582:17;36575:47;36639:131;36765:4;36639:131;:::i;:::-;36631:139;;36358:419;;;:::o;36783:229::-;36923:34;36919:1;36911:6;36907:14;36900:58;36992:12;36987:2;36979:6;36975:15;36968:37;36783:229;:::o;37018:366::-;37160:3;37181:67;37245:2;37240:3;37181:67;:::i;:::-;37174:74;;37257:93;37346:3;37257:93;:::i;:::-;37375:2;37370:3;37366:12;37359:19;;37018:366;;;:::o;37390:419::-;37556:4;37594:2;37583:9;37579:18;37571:26;;37643:9;37637:4;37633:20;37629:1;37618:9;37614:17;37607:47;37671:131;37797:4;37671:131;:::i;:::-;37663:139;;37390:419;;;:::o;37815:175::-;37955:27;37951:1;37943:6;37939:14;37932:51;37815:175;:::o;37996:366::-;38138:3;38159:67;38223:2;38218:3;38159:67;:::i;:::-;38152:74;;38235:93;38324:3;38235:93;:::i;:::-;38353:2;38348:3;38344:12;38337:19;;37996:366;;;:::o;38368:419::-;38534:4;38572:2;38561:9;38557:18;38549:26;;38621:9;38615:4;38611:20;38607:1;38596:9;38592:17;38585:47;38649:131;38775:4;38649:131;:::i;:::-;38641:139;;38368:419;;;:::o;38793:98::-;38844:6;38878:5;38872:12;38862:22;;38793:98;;;:::o;38897:168::-;38980:11;39014:6;39009:3;39002:19;39054:4;39049:3;39045:14;39030:29;;38897:168;;;;:::o;39071:373::-;39157:3;39185:38;39217:5;39185:38;:::i;:::-;39239:70;39302:6;39297:3;39239:70;:::i;:::-;39232:77;;39318:65;39376:6;39371:3;39364:4;39357:5;39353:16;39318:65;:::i;:::-;39408:29;39430:6;39408:29;:::i;:::-;39403:3;39399:39;39392:46;;39161:283;39071:373;;;;:::o;39450:640::-;39645:4;39683:3;39672:9;39668:19;39660:27;;39697:71;39765:1;39754:9;39750:17;39741:6;39697:71;:::i;:::-;39778:72;39846:2;39835:9;39831:18;39822:6;39778:72;:::i;:::-;39860;39928:2;39917:9;39913:18;39904:6;39860:72;:::i;:::-;39979:9;39973:4;39969:20;39964:2;39953:9;39949:18;39942:48;40007:76;40078:4;40069:6;40007:76;:::i;:::-;39999:84;;39450:640;;;;;;;:::o;40096:141::-;40152:5;40183:6;40177:13;40168:22;;40199:32;40225:5;40199:32;:::i;:::-;40096:141;;;;:::o;40243:349::-;40312:6;40361:2;40349:9;40340:7;40336:23;40332:32;40329:119;;;40367:79;;:::i;:::-;40329:119;40487:1;40512:63;40567:7;40558:6;40547:9;40543:22;40512:63;:::i;:::-;40502:73;;40458:127;40243:349;;;;:::o
Swarm Source
ipfs://cf39f12a3e82c6a8d8ec5bd8dc3034091646b5f672045d5b4ab29310f3de02d5
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.