ETH Price: $3,100.41 (-0.35%)
Gas: 2 Gwei

Token

Deep Whales AI (GOOGLE)
 

Overview

Max Total Supply

50 GOOGLE

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
potamight.eth
Balance
1 GOOGLE
0x92c3717a1318cf0e02883ca0bae73bd90469325a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DeepWhalesAINFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-22
*/

// File: Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: 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: Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: 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: 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: IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// File: ERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Bluechip.sol


pragma solidity >=0.7.0 <0.9.0;



contract DeepWhalesAINFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.1 ether;
  uint256 public maxSupply = 50;
  bool public paused = false;
  bool public revealed = false;
  string public notRevealedUri;
  uint256[][] public ForView;

  constructor() ERC721("Deep Whales AI", "GOOGLE") {
    setBaseURI("ipfs://");
    setNotRevealedURI("ipfs://QmZFCuBM2Yf5vitPAB4Zjm48Sh5SBme48qRrAsBDbu5xFf");
  }
  
  //public
  function mintNFT(uint256 maxNFT) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(maxNFT > 0);
    require(supply + maxNFT <= maxSupply);

    if (msg.sender != owner()) {
      require(msg.value >= cost * maxNFT);
    }

    for (uint256 i = 1; i <= maxNFT; i++) {
      _safeMint(msg.sender, supply + i);
    }
    (bool success, ) = payable(0x32A85d93B139a911996b95A1EB14709bdb220ebb).call{value: msg.value}("");
    require(success);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  function tokensOfOwner(address owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(owner, index);
            }
            return result;
        }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  function getForView() public view returns(uint256[][] memory) {
    return ForView;
  }

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ForView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getForView","outputs":[{"internalType":"uint256[][]","name":"","type":"uint256[][]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxNFT","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600c90620000269082620002b7565b5067016345785d8a0000600d556032600e55600f805461ffff191690553480156200005057600080fd5b506040518060400160405280600e81526020016d44656570205768616c657320414960901b81525060405180604001604052806006815260200165474f4f474c4560d01b8152508160009081620000a89190620002b7565b506001620000b78282620002b7565b505050620000d4620000ce6200012760201b60201c565b6200012b565b604080518082019091526007815266697066733a2f2f60c81b6020820152620000fd906200017d565b62000121604051806060016040528060358152602001620029b46035913962000199565b62000383565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000187620001b1565b600b620001958282620002b7565b5050565b620001a3620001b1565b6010620001958282620002b7565b600a546001600160a01b03163314620002105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023d57607f821691505b6020821081036200025e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b257600081815260208120601f850160051c810160208610156200028d5750805b601f850160051c820191505b81811015620002ae5782815560010162000299565b5050505b505050565b81516001600160401b03811115620002d357620002d362000212565b620002eb81620002e4845462000228565b8462000264565b602080601f8311600181146200032357600084156200030a5750858301515b600019600386901b1c1916600185901b178555620002ae565b600085815260208120601f198616915b82811015620003545788860151825594840194600190910190840162000333565b5085821015620003735787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61262180620003936000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063afdaa43b116100ab578063d5abeb011161006f578063d5abeb01146105f3578063da3ef23f14610609578063e985e9c514610629578063f2c4ce1e14610672578063f2fde38b1461069257600080fd5b8063afdaa43b1461055c578063b88d4fde1461057e578063c3f649d01461059e578063c6682862146105be578063c87b56dd146105d357600080fd5b80638da5cb5b116100f25780638da5cb5b146104e157806392642744146104ff57806395d89b4114610512578063a22cb46514610527578063a475b5dd1461054757600080fd5b80636352211e1461046c57806370a082311461048c578063715018a6146104ac5780638462151c146104c157600080fd5b80632f745c59116101a657806344a0d68a1161017557806344a0d68a146103d35780634f6ccce7146103f3578063518302271461041357806355f804b3146104325780635c975abb1461045257600080fd5b80632f745c591461035e5780633ccfd60b1461037e57806342842e0e14610386578063438b6300146103a657600080fd5b8063081c8c44116101ed578063081c8c44146102d0578063095ea7b3146102e557806313faede61461030557806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e34565b6106b2565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e66565b6106dd565b005b34801561028257600080fd5b5061028b6106f8565b60405161024b9190611ed1565b3480156102a457600080fd5b506102b86102b3366004611ee4565b61078a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b5061028b6107b1565b3480156102f157600080fd5b50610274610300366004611f14565b61083f565b34801561031157600080fd5b5061031b600d5481565b60405190815260200161024b565b34801561033557600080fd5b5060085461031b565b34801561034a57600080fd5b50610274610359366004611f3e565b610959565b34801561036a57600080fd5b5061031b610379366004611f14565b61098a565b610274610a20565b34801561039257600080fd5b506102746103a1366004611f3e565b610a9c565b3480156103b257600080fd5b506103c66103c1366004611f7a565b610ab7565b60405161024b9190611f95565b3480156103df57600080fd5b506102746103ee366004611ee4565b610b59565b3480156103ff57600080fd5b5061031b61040e366004611ee4565b610b66565b34801561041f57600080fd5b50600f5461023f90610100900460ff1681565b34801561043e57600080fd5b5061027461044d366004612065565b610bf9565b34801561045e57600080fd5b50600f5461023f9060ff1681565b34801561047857600080fd5b506102b8610487366004611ee4565b610c11565b34801561049857600080fd5b5061031b6104a7366004611f7a565b610c71565b3480156104b857600080fd5b50610274610cf7565b3480156104cd57600080fd5b506103c66104dc366004611f7a565b610d0b565b3480156104ed57600080fd5b50600a546001600160a01b03166102b8565b61027461050d366004611ee4565b610dc9565b34801561051e57600080fd5b5061028b610ed1565b34801561053357600080fd5b506102746105423660046120ae565b610ee0565b34801561055357600080fd5b50610274610eeb565b34801561056857600080fd5b50610571610f04565b60405161024b91906120e1565b34801561058a57600080fd5b5061027461059936600461216b565b610f9d565b3480156105aa57600080fd5b5061031b6105b93660046121e7565b610fd5565b3480156105ca57600080fd5b5061028b611012565b3480156105df57600080fd5b5061028b6105ee366004611ee4565b61101f565b3480156105ff57600080fd5b5061031b600e5481565b34801561061557600080fd5b50610274610624366004612065565b6111a3565b34801561063557600080fd5b5061023f610644366004612209565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b5061027461068d366004612065565b6111b7565b34801561069e57600080fd5b506102746106ad366004611f7a565b6111cb565b60006001600160e01b0319821663780e9d6360e01b14806106d757506106d782611241565b92915050565b6106e5611291565b600f805460ff1916911515919091179055565b60606000805461070790612233565b80601f016020809104026020016040519081016040528092919081815260200182805461073390612233565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610795826112eb565b506000908152600460205260409020546001600160a01b031690565b601080546107be90612233565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea90612233565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b505050505081565b600061084a82610c11565b9050806001600160a01b0316836001600160a01b0316036108bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108d857506108d88133610644565b61094a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016108b3565b610954838361134a565b505050565b61096333826113b8565b61097f5760405162461bcd60e51b81526004016108b390612267565b610954838383611437565b600061099583610c71565b82106109f75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a28611291565b6000610a3c600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a86576040519150601f19603f3d011682016040523d82523d6000602084013e610a8b565b606091505b5050905080610a9957600080fd5b50565b61095483838360405180602001604052806000815250610f9d565b60606000610ac483610c71565b905060008167ffffffffffffffff811115610ae157610ae1611fd9565b604051908082528060200260200182016040528015610b0a578160200160208202803683370190505b50905060005b82811015610b5157610b22858261098a565b828281518110610b3457610b346122b4565b602090810291909101015280610b49816122e0565b915050610b10565b509392505050565b610b61611291565b600d55565b6000610b7160085490565b8210610bd45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b3565b60088281548110610be757610be76122b4565b90600052602060002001549050919050565b610c01611291565b600b610c0d8282612347565b5050565b6000818152600260205260408120546001600160a01b0316806106d75760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108b3565b60006001600160a01b038216610cdb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108b3565b506001600160a01b031660009081526003602052604090205490565b610cff611291565b610d0960006115a8565b565b60606000610d1883610c71565b905080600003610d38576040805160008082526020820190925290610b51565b60008167ffffffffffffffff811115610d5357610d53611fd9565b604051908082528060200260200182016040528015610d7c578160200160208202803683370190505b50905060005b82811015610b5157610d94858261098a565b828281518110610da657610da66122b4565b602090810291909101015280610dbb816122e0565b915050610d82565b50919050565b6000610dd460085490565b600f5490915060ff1615610de757600080fd5b60008211610df457600080fd5b600e54610e018383612407565b1115610e0c57600080fd5b600a546001600160a01b03163314610e385781600d54610e2c919061241a565b341015610e3857600080fd5b60015b828111610e6757610e5533610e508385612407565b6115fa565b80610e5f816122e0565b915050610e3b565b506040516000907332a85d93b139a911996b95a1eb14709bdb220ebb9034908381818185875af1925050503d8060008114610ebe576040519150601f19603f3d011682016040523d82523d6000602084013e610ec3565b606091505b505090508061095457600080fd5b60606001805461070790612233565b610c0d338383611614565b610ef3611291565b600f805461ff001916610100179055565b60606011805480602002602001604051908101604052809291908181526020016000905b82821015610f9457600084815260209081902083018054604080518285028101850190915281815292830182828015610f8057602002820191906000526020600020905b815481526020019060010190808311610f6c575b505050505081526020019060010190610f28565b50505050905090565b610fa733836113b8565b610fc35760405162461bcd60e51b81526004016108b390612267565b610fcf848484846116e2565b50505050565b60118281548110610fe557600080fd5b906000526020600020018181548110610ffd57600080fd5b90600052602060002001600091509150505481565b600c80546107be90612233565b6000818152600260205260409020546060906001600160a01b031661109e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b3565b600f54610100900460ff16151560000361114457601080546110bf90612233565b80601f01602080910402602001604051908101604052809291908181526020018280546110eb90612233565b80156111385780601f1061110d57610100808354040283529160200191611138565b820191906000526020600020905b81548152906001019060200180831161111b57829003601f168201915b50505050509050919050565b600061114e611715565b9050600081511161116e576040518060200160405280600081525061119c565b8061117884611724565b600c60405160200161118c93929190612431565b6040516020818303038152906040525b9392505050565b6111ab611291565b600c610c0d8282612347565b6111bf611291565b6010610c0d8282612347565b6111d3611291565b6001600160a01b0381166112385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b3565b610a99816115a8565b60006001600160e01b031982166380ac58cd60e01b148061127257506001600160e01b03198216635b5e139f60e01b145b806106d757506301ffc9a760e01b6001600160e01b03198316146106d7565b600a546001600160a01b03163314610d095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b3565b6000818152600260205260409020546001600160a01b0316610a995760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137f82610c11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113c483610c11565b9050806001600160a01b0316846001600160a01b0316148061140b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061142f5750836001600160a01b03166114248461078a565b6001600160a01b0316145b949350505050565b826001600160a01b031661144a82610c11565b6001600160a01b0316146114705760405162461bcd60e51b81526004016108b3906124d1565b6001600160a01b0382166114d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b3565b6114df83838360016117b5565b826001600160a01b03166114f282610c11565b6001600160a01b0316146115185760405162461bcd60e51b81526004016108b3906124d1565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c0d8282604051806020016040528060008152506118e9565b816001600160a01b0316836001600160a01b0316036116755760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116ed848484611437565b6116f98484848461191c565b610fcf5760405162461bcd60e51b81526004016108b390612516565b6060600b805461070790612233565b6060600061173183611a1d565b600101905060008167ffffffffffffffff81111561175157611751611fd9565b6040519080825280601f01601f19166020018201604052801561177b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508415610b5157611785565b60018111156118245760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016108b3565b816001600160a01b0385166118805761187b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118a3565b836001600160a01b0316856001600160a01b0316146118a3576118a38582611af5565b6001600160a01b0384166118bf576118ba81611b92565b6118e2565b846001600160a01b0316846001600160a01b0316146118e2576118e28482611c41565b5050505050565b6118f38383611c85565b611900600084848461191c565b6109545760405162461bcd60e51b81526004016108b390612516565b60006001600160a01b0384163b15611a1257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611960903390899088908890600401612568565b6020604051808303816000875af192505050801561199b575060408051601f3d908101601f19168201909252611998918101906125a5565b60015b6119f8573d8080156119c9576040519150601f19603f3d011682016040523d82523d6000602084013e6119ce565b606091505b5080516000036119f05760405162461bcd60e51b81526004016108b390612516565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061142f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611a5c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a88576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611aa657662386f26fc10000830492506010015b6305f5e1008310611abe576305f5e100830492506008015b6127108310611ad257612710830492506004015b60648310611ae4576064830492506002015b600a83106106d75760010192915050565b60006001611b0284610c71565b611b0c91906125c2565b600083815260076020526040902054909150808214611b5f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba4906001906125c2565b60008381526009602052604081205460088054939450909284908110611bcc57611bcc6122b4565b906000526020600020015490508060088381548110611bed57611bed6122b4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2557611c256125d5565b6001900381819060005260206000200160009055905550505050565b6000611c4c83610c71565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cdb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b3565b6000818152600260205260409020546001600160a01b031615611d405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b3565b611d4e6000838360016117b5565b6000818152600260205260409020546001600160a01b031615611db35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610a9957600080fd5b600060208284031215611e4657600080fd5b813561119c81611e1e565b80358015158114611e6157600080fd5b919050565b600060208284031215611e7857600080fd5b61119c82611e51565b60005b83811015611e9c578181015183820152602001611e84565b50506000910152565b60008151808452611ebd816020860160208601611e81565b601f01601f19169290920160200192915050565b60208152600061119c6020830184611ea5565b600060208284031215611ef657600080fd5b5035919050565b80356001600160a01b0381168114611e6157600080fd5b60008060408385031215611f2757600080fd5b611f3083611efd565b946020939093013593505050565b600080600060608486031215611f5357600080fd5b611f5c84611efd565b9250611f6a60208501611efd565b9150604084013590509250925092565b600060208284031215611f8c57600080fd5b61119c82611efd565b6020808252825182820181905260009190848201906040850190845b81811015611fcd57835183529284019291840191600101611fb1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200a5761200a611fd9565b604051601f8501601f19908116603f0116810190828211818310171561203257612032611fd9565b8160405280935085815286868601111561204b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207757600080fd5b813567ffffffffffffffff81111561208e57600080fd5b8201601f8101841361209f57600080fd5b61142f84823560208401611fef565b600080604083850312156120c157600080fd5b6120ca83611efd565b91506120d860208401611e51565b90509250929050565b6000602080830181845280855180835260408601915060408160051b87010192508387016000805b8381101561215d57888603603f19018552825180518088529088019088880190845b818110156121475783518352928a0192918a019160010161212b565b5090975050509386019391860191600101612109565b509398975050505050505050565b6000806000806080858703121561218157600080fd5b61218a85611efd565b935061219860208601611efd565b925060408501359150606085013567ffffffffffffffff8111156121bb57600080fd5b8501601f810187136121cc57600080fd5b6121db87823560208401611fef565b91505092959194509250565b600080604083850312156121fa57600080fd5b50508035926020909101359150565b6000806040838503121561221c57600080fd5b61222583611efd565b91506120d860208401611efd565b600181811c9082168061224757607f821691505b602082108103610dc357634e487b7160e01b600052602260045260246000fd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122f2576122f26122ca565b5060010190565b601f82111561095457600081815260208120601f850160051c810160208610156123205750805b601f850160051c820191505b8181101561233f5782815560010161232c565b505050505050565b815167ffffffffffffffff81111561236157612361611fd9565b6123758161236f8454612233565b846122f9565b602080601f8311600181146123aa57600084156123925750858301515b600019600386901b1c1916600185901b17855561233f565b600085815260208120601f198616915b828110156123d9578886015182559484019460019091019084016123ba565b50858210156123f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156106d7576106d76122ca565b80820281158282048414176106d7576106d76122ca565b6000845160206124448285838a01611e81565b8551918401916124578184848a01611e81565b855492019160009061246881612233565b600182811680156124805760018114612495576124c1565b60ff19841687528215158302870194506124c1565b896000528560002060005b848110156124b9578154898201529083019087016124a0565b505082870194505b50929a9950505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259b90830184611ea5565b9695505050505050565b6000602082840312156125b757600080fd5b815161119c81611e1e565b818103818111156106d7576106d76122ca565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220787ed6e175ba1803453cc70153692d2d02ec81b6f6876602bc5a477e1d129d5964736f6c63430008110033697066733a2f2f516d5a464375424d32596635766974504142345a6a6d343853683553426d65343871527241734244627535784666

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063afdaa43b116100ab578063d5abeb011161006f578063d5abeb01146105f3578063da3ef23f14610609578063e985e9c514610629578063f2c4ce1e14610672578063f2fde38b1461069257600080fd5b8063afdaa43b1461055c578063b88d4fde1461057e578063c3f649d01461059e578063c6682862146105be578063c87b56dd146105d357600080fd5b80638da5cb5b116100f25780638da5cb5b146104e157806392642744146104ff57806395d89b4114610512578063a22cb46514610527578063a475b5dd1461054757600080fd5b80636352211e1461046c57806370a082311461048c578063715018a6146104ac5780638462151c146104c157600080fd5b80632f745c59116101a657806344a0d68a1161017557806344a0d68a146103d35780634f6ccce7146103f3578063518302271461041357806355f804b3146104325780635c975abb1461045257600080fd5b80632f745c591461035e5780633ccfd60b1461037e57806342842e0e14610386578063438b6300146103a657600080fd5b8063081c8c44116101ed578063081c8c44146102d0578063095ea7b3146102e557806313faede61461030557806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e34565b6106b2565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e66565b6106dd565b005b34801561028257600080fd5b5061028b6106f8565b60405161024b9190611ed1565b3480156102a457600080fd5b506102b86102b3366004611ee4565b61078a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b5061028b6107b1565b3480156102f157600080fd5b50610274610300366004611f14565b61083f565b34801561031157600080fd5b5061031b600d5481565b60405190815260200161024b565b34801561033557600080fd5b5060085461031b565b34801561034a57600080fd5b50610274610359366004611f3e565b610959565b34801561036a57600080fd5b5061031b610379366004611f14565b61098a565b610274610a20565b34801561039257600080fd5b506102746103a1366004611f3e565b610a9c565b3480156103b257600080fd5b506103c66103c1366004611f7a565b610ab7565b60405161024b9190611f95565b3480156103df57600080fd5b506102746103ee366004611ee4565b610b59565b3480156103ff57600080fd5b5061031b61040e366004611ee4565b610b66565b34801561041f57600080fd5b50600f5461023f90610100900460ff1681565b34801561043e57600080fd5b5061027461044d366004612065565b610bf9565b34801561045e57600080fd5b50600f5461023f9060ff1681565b34801561047857600080fd5b506102b8610487366004611ee4565b610c11565b34801561049857600080fd5b5061031b6104a7366004611f7a565b610c71565b3480156104b857600080fd5b50610274610cf7565b3480156104cd57600080fd5b506103c66104dc366004611f7a565b610d0b565b3480156104ed57600080fd5b50600a546001600160a01b03166102b8565b61027461050d366004611ee4565b610dc9565b34801561051e57600080fd5b5061028b610ed1565b34801561053357600080fd5b506102746105423660046120ae565b610ee0565b34801561055357600080fd5b50610274610eeb565b34801561056857600080fd5b50610571610f04565b60405161024b91906120e1565b34801561058a57600080fd5b5061027461059936600461216b565b610f9d565b3480156105aa57600080fd5b5061031b6105b93660046121e7565b610fd5565b3480156105ca57600080fd5b5061028b611012565b3480156105df57600080fd5b5061028b6105ee366004611ee4565b61101f565b3480156105ff57600080fd5b5061031b600e5481565b34801561061557600080fd5b50610274610624366004612065565b6111a3565b34801561063557600080fd5b5061023f610644366004612209565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b5061027461068d366004612065565b6111b7565b34801561069e57600080fd5b506102746106ad366004611f7a565b6111cb565b60006001600160e01b0319821663780e9d6360e01b14806106d757506106d782611241565b92915050565b6106e5611291565b600f805460ff1916911515919091179055565b60606000805461070790612233565b80601f016020809104026020016040519081016040528092919081815260200182805461073390612233565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610795826112eb565b506000908152600460205260409020546001600160a01b031690565b601080546107be90612233565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea90612233565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b505050505081565b600061084a82610c11565b9050806001600160a01b0316836001600160a01b0316036108bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108d857506108d88133610644565b61094a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016108b3565b610954838361134a565b505050565b61096333826113b8565b61097f5760405162461bcd60e51b81526004016108b390612267565b610954838383611437565b600061099583610c71565b82106109f75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a28611291565b6000610a3c600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a86576040519150601f19603f3d011682016040523d82523d6000602084013e610a8b565b606091505b5050905080610a9957600080fd5b50565b61095483838360405180602001604052806000815250610f9d565b60606000610ac483610c71565b905060008167ffffffffffffffff811115610ae157610ae1611fd9565b604051908082528060200260200182016040528015610b0a578160200160208202803683370190505b50905060005b82811015610b5157610b22858261098a565b828281518110610b3457610b346122b4565b602090810291909101015280610b49816122e0565b915050610b10565b509392505050565b610b61611291565b600d55565b6000610b7160085490565b8210610bd45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b3565b60088281548110610be757610be76122b4565b90600052602060002001549050919050565b610c01611291565b600b610c0d8282612347565b5050565b6000818152600260205260408120546001600160a01b0316806106d75760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108b3565b60006001600160a01b038216610cdb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108b3565b506001600160a01b031660009081526003602052604090205490565b610cff611291565b610d0960006115a8565b565b60606000610d1883610c71565b905080600003610d38576040805160008082526020820190925290610b51565b60008167ffffffffffffffff811115610d5357610d53611fd9565b604051908082528060200260200182016040528015610d7c578160200160208202803683370190505b50905060005b82811015610b5157610d94858261098a565b828281518110610da657610da66122b4565b602090810291909101015280610dbb816122e0565b915050610d82565b50919050565b6000610dd460085490565b600f5490915060ff1615610de757600080fd5b60008211610df457600080fd5b600e54610e018383612407565b1115610e0c57600080fd5b600a546001600160a01b03163314610e385781600d54610e2c919061241a565b341015610e3857600080fd5b60015b828111610e6757610e5533610e508385612407565b6115fa565b80610e5f816122e0565b915050610e3b565b506040516000907332a85d93b139a911996b95a1eb14709bdb220ebb9034908381818185875af1925050503d8060008114610ebe576040519150601f19603f3d011682016040523d82523d6000602084013e610ec3565b606091505b505090508061095457600080fd5b60606001805461070790612233565b610c0d338383611614565b610ef3611291565b600f805461ff001916610100179055565b60606011805480602002602001604051908101604052809291908181526020016000905b82821015610f9457600084815260209081902083018054604080518285028101850190915281815292830182828015610f8057602002820191906000526020600020905b815481526020019060010190808311610f6c575b505050505081526020019060010190610f28565b50505050905090565b610fa733836113b8565b610fc35760405162461bcd60e51b81526004016108b390612267565b610fcf848484846116e2565b50505050565b60118281548110610fe557600080fd5b906000526020600020018181548110610ffd57600080fd5b90600052602060002001600091509150505481565b600c80546107be90612233565b6000818152600260205260409020546060906001600160a01b031661109e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b3565b600f54610100900460ff16151560000361114457601080546110bf90612233565b80601f01602080910402602001604051908101604052809291908181526020018280546110eb90612233565b80156111385780601f1061110d57610100808354040283529160200191611138565b820191906000526020600020905b81548152906001019060200180831161111b57829003601f168201915b50505050509050919050565b600061114e611715565b9050600081511161116e576040518060200160405280600081525061119c565b8061117884611724565b600c60405160200161118c93929190612431565b6040516020818303038152906040525b9392505050565b6111ab611291565b600c610c0d8282612347565b6111bf611291565b6010610c0d8282612347565b6111d3611291565b6001600160a01b0381166112385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b3565b610a99816115a8565b60006001600160e01b031982166380ac58cd60e01b148061127257506001600160e01b03198216635b5e139f60e01b145b806106d757506301ffc9a760e01b6001600160e01b03198316146106d7565b600a546001600160a01b03163314610d095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b3565b6000818152600260205260409020546001600160a01b0316610a995760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137f82610c11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113c483610c11565b9050806001600160a01b0316846001600160a01b0316148061140b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061142f5750836001600160a01b03166114248461078a565b6001600160a01b0316145b949350505050565b826001600160a01b031661144a82610c11565b6001600160a01b0316146114705760405162461bcd60e51b81526004016108b3906124d1565b6001600160a01b0382166114d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b3565b6114df83838360016117b5565b826001600160a01b03166114f282610c11565b6001600160a01b0316146115185760405162461bcd60e51b81526004016108b3906124d1565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c0d8282604051806020016040528060008152506118e9565b816001600160a01b0316836001600160a01b0316036116755760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116ed848484611437565b6116f98484848461191c565b610fcf5760405162461bcd60e51b81526004016108b390612516565b6060600b805461070790612233565b6060600061173183611a1d565b600101905060008167ffffffffffffffff81111561175157611751611fd9565b6040519080825280601f01601f19166020018201604052801561177b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508415610b5157611785565b60018111156118245760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016108b3565b816001600160a01b0385166118805761187b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118a3565b836001600160a01b0316856001600160a01b0316146118a3576118a38582611af5565b6001600160a01b0384166118bf576118ba81611b92565b6118e2565b846001600160a01b0316846001600160a01b0316146118e2576118e28482611c41565b5050505050565b6118f38383611c85565b611900600084848461191c565b6109545760405162461bcd60e51b81526004016108b390612516565b60006001600160a01b0384163b15611a1257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611960903390899088908890600401612568565b6020604051808303816000875af192505050801561199b575060408051601f3d908101601f19168201909252611998918101906125a5565b60015b6119f8573d8080156119c9576040519150601f19603f3d011682016040523d82523d6000602084013e6119ce565b606091505b5080516000036119f05760405162461bcd60e51b81526004016108b390612516565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061142f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611a5c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a88576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611aa657662386f26fc10000830492506010015b6305f5e1008310611abe576305f5e100830492506008015b6127108310611ad257612710830492506004015b60648310611ae4576064830492506002015b600a83106106d75760010192915050565b60006001611b0284610c71565b611b0c91906125c2565b600083815260076020526040902054909150808214611b5f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba4906001906125c2565b60008381526009602052604081205460088054939450909284908110611bcc57611bcc6122b4565b906000526020600020015490508060088381548110611bed57611bed6122b4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2557611c256125d5565b6001900381819060005260206000200160009055905550505050565b6000611c4c83610c71565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cdb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b3565b6000818152600260205260409020546001600160a01b031615611d405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b3565b611d4e6000838360016117b5565b6000818152600260205260409020546001600160a01b031615611db35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610a9957600080fd5b600060208284031215611e4657600080fd5b813561119c81611e1e565b80358015158114611e6157600080fd5b919050565b600060208284031215611e7857600080fd5b61119c82611e51565b60005b83811015611e9c578181015183820152602001611e84565b50506000910152565b60008151808452611ebd816020860160208601611e81565b601f01601f19169290920160200192915050565b60208152600061119c6020830184611ea5565b600060208284031215611ef657600080fd5b5035919050565b80356001600160a01b0381168114611e6157600080fd5b60008060408385031215611f2757600080fd5b611f3083611efd565b946020939093013593505050565b600080600060608486031215611f5357600080fd5b611f5c84611efd565b9250611f6a60208501611efd565b9150604084013590509250925092565b600060208284031215611f8c57600080fd5b61119c82611efd565b6020808252825182820181905260009190848201906040850190845b81811015611fcd57835183529284019291840191600101611fb1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200a5761200a611fd9565b604051601f8501601f19908116603f0116810190828211818310171561203257612032611fd9565b8160405280935085815286868601111561204b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207757600080fd5b813567ffffffffffffffff81111561208e57600080fd5b8201601f8101841361209f57600080fd5b61142f84823560208401611fef565b600080604083850312156120c157600080fd5b6120ca83611efd565b91506120d860208401611e51565b90509250929050565b6000602080830181845280855180835260408601915060408160051b87010192508387016000805b8381101561215d57888603603f19018552825180518088529088019088880190845b818110156121475783518352928a0192918a019160010161212b565b5090975050509386019391860191600101612109565b509398975050505050505050565b6000806000806080858703121561218157600080fd5b61218a85611efd565b935061219860208601611efd565b925060408501359150606085013567ffffffffffffffff8111156121bb57600080fd5b8501601f810187136121cc57600080fd5b6121db87823560208401611fef565b91505092959194509250565b600080604083850312156121fa57600080fd5b50508035926020909101359150565b6000806040838503121561221c57600080fd5b61222583611efd565b91506120d860208401611efd565b600181811c9082168061224757607f821691505b602082108103610dc357634e487b7160e01b600052602260045260246000fd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122f2576122f26122ca565b5060010190565b601f82111561095457600081815260208120601f850160051c810160208610156123205750805b601f850160051c820191505b8181101561233f5782815560010161232c565b505050505050565b815167ffffffffffffffff81111561236157612361611fd9565b6123758161236f8454612233565b846122f9565b602080601f8311600181146123aa57600084156123925750858301515b600019600386901b1c1916600185901b17855561233f565b600085815260208120601f198616915b828110156123d9578886015182559484019460019091019084016123ba565b50858210156123f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156106d7576106d76122ca565b80820281158282048414176106d7576106d76122ca565b6000845160206124448285838a01611e81565b8551918401916124578184848a01611e81565b855492019160009061246881612233565b600182811680156124805760018114612495576124c1565b60ff19841687528215158302870194506124c1565b896000528560002060005b848110156124b9578154898201529083019087016124a0565b505082870194505b50929a9950505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259b90830184611ea5565b9695505050505050565b6000602082840312156125b757600080fd5b815161119c81611e1e565b818103818111156106d7576106d76122ca565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220787ed6e175ba1803453cc70153692d2d02ec81b6f6876602bc5a477e1d129d5964736f6c63430008110033

Deployed Bytecode Sourcemap

62347:3392:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56346:224;;;;;;;;;;-1:-1:-1;56346:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;56346:224:0;;;;;;;;65511:73;;;;;;;;;;-1:-1:-1;65511:73:0;;;;;:::i;:::-;;:::i;:::-;;40101:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41613:171::-;;;;;;;;;;-1:-1:-1;41613:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;41613:171:0;1883:203:1;62633:28:0;;;;;;;;;;;;;:::i;41131:416::-;;;;;;;;;;-1:-1:-1;41131:416:0;;;;;:::i;:::-;;:::i;62499:31::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;62499:31:0;2528:177:1;56986:113:0;;;;;;;;;;-1:-1:-1;57074:10:0;:17;56986:113;;42313:335;;;;;;;;;;-1:-1:-1;42313:335:0;;;;;:::i;:::-;;:::i;56654:256::-;;;;;;;;;;-1:-1:-1;56654:256:0;;;;;:::i;:::-;;:::i;65591:145::-;;;:::i;42719:185::-;;;;;;;;;;-1:-1:-1;42719:185:0;;;;;:::i;:::-;;:::i;64026:348::-;;;;;;;;;;-1:-1:-1;64026:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65067:80::-;;;;;;;;;;-1:-1:-1;65067:80:0;;;;;:::i;:::-;;:::i;57176:233::-;;;;;;;;;;-1:-1:-1;57176:233:0;;;;;:::i;:::-;;:::i;62600:28::-;;;;;;;;;;-1:-1:-1;62600:28:0;;;;;;;;;;;65279:98;;;;;;;;;;-1:-1:-1;65279:98:0;;;;;:::i;:::-;;:::i;62569:26::-;;;;;;;;;;-1:-1:-1;62569:26:0;;;;;;;;39811:223;;;;;;;;;;-1:-1:-1;39811:223:0;;;;;:::i;:::-;;:::i;39542:207::-;;;;;;;;;;-1:-1:-1;39542:207:0;;;;;:::i;:::-;;:::i;17849:103::-;;;;;;;;;;;;;:::i;63491:529::-;;;;;;;;;;-1:-1:-1;63491:529:0;;;;;:::i;:::-;;:::i;17201:87::-;;;;;;;;;;-1:-1:-1;17274:6:0;;-1:-1:-1;;;;;17274:6:0;17201:87;;62883:494;;;;;;:::i;:::-;;:::i;40270:104::-;;;;;;;;;;;;;:::i;41856:155::-;;;;;;;;;;-1:-1:-1;41856:155:0;;;;;:::i;:::-;;:::i;64994:65::-;;;;;;;;;;;;;:::i;64883:89::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42975:322::-;;;;;;;;;;-1:-1:-1;42975:322:0;;;;;:::i;:::-;;:::i;62666:26::-;;;;;;;;;;-1:-1:-1;62666:26:0;;;;;:::i;:::-;;:::i;62457:37::-;;;;;;;;;;;;;:::i;64380:497::-;;;;;;;;;;-1:-1:-1;64380:497:0;;;;;:::i;:::-;;:::i;62535:29::-;;;;;;;;;;;;;;;;65383:122;;;;;;;;;;-1:-1:-1;65383:122:0;;;;;:::i;:::-;;:::i;42082:164::-;;;;;;;;;;-1:-1:-1;42082:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42203:25:0;;;42179:4;42203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42082:164;65153:120;;;;;;;;;;-1:-1:-1;65153:120:0;;;;;:::i;:::-;;:::i;18107:201::-;;;;;;;;;;-1:-1:-1;18107:201:0;;;;;:::i;:::-;;:::i;56346:224::-;56448:4;-1:-1:-1;;;;;;56472:50:0;;-1:-1:-1;;;56472:50:0;;:90;;;56526:36;56550:11;56526:23;:36::i;:::-;56465:97;56346:224;-1:-1:-1;;56346:224:0:o;65511:73::-;17087:13;:11;:13::i;:::-;65563:6:::1;:15:::0;;-1:-1:-1;;65563:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65511:73::o;40101:100::-;40155:13;40188:5;40181:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40101:100;:::o;41613:171::-;41689:7;41709:23;41724:7;41709:14;:23::i;:::-;-1:-1:-1;41752:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41752:24:0;;41613:171::o;62633:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41131:416::-;41212:13;41228:23;41243:7;41228:14;:23::i;:::-;41212:39;;41276:5;-1:-1:-1;;;;;41270:11:0;:2;-1:-1:-1;;;;;41270:11:0;;41262:57;;;;-1:-1:-1;;;41262:57:0;;8429:2:1;41262:57:0;;;8411:21:1;8468:2;8448:18;;;8441:30;8507:34;8487:18;;;8480:62;-1:-1:-1;;;8558:18:1;;;8551:31;8599:19;;41262:57:0;;;;;;;;;15863:10;-1:-1:-1;;;;;41354:21:0;;;;:62;;-1:-1:-1;41379:37:0;41396:5;15863:10;42082:164;:::i;41379:37::-;41332:173;;;;-1:-1:-1;;;41332:173:0;;8831:2:1;41332:173:0;;;8813:21:1;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;8980:31;8960:18;;;8953:59;9029:19;;41332:173:0;8629:425:1;41332:173:0;41518:21;41527:2;41531:7;41518:8;:21::i;:::-;41201:346;41131:416;;:::o;42313:335::-;42508:41;15863:10;42541:7;42508:18;:41::i;:::-;42500:99;;;;-1:-1:-1;;;42500:99:0;;;;;;;:::i;:::-;42612:28;42622:4;42628:2;42632:7;42612:9;:28::i;56654:256::-;56751:7;56787:23;56804:5;56787:16;:23::i;:::-;56779:5;:31;56771:87;;;;-1:-1:-1;;;56771:87:0;;9675:2:1;56771:87:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:34;9733:18;;;9726:62;-1:-1:-1;;;9804:18:1;;;9797:41;9855:19;;56771:87:0;9473:407:1;56771:87:0;-1:-1:-1;;;;;;56876:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;56654:256::o;65591:145::-;17087:13;:11;:13::i;:::-;65644:7:::1;65665;17274:6:::0;;-1:-1:-1;;;;;17274:6:0;;17201:87;65665:7:::1;-1:-1:-1::0;;;;;65657:21:0::1;65686;65657:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65643:69;;;65727:2;65719:11;;;::::0;::::1;;65636:100;65591:145::o:0;42719:185::-;42857:39;42874:4;42880:2;42884:7;42857:39;;;;;;;;;;;;:16;:39::i;64026:348::-;64101:16;64129:23;64155:17;64165:6;64155:9;:17::i;:::-;64129:43;;64179:25;64221:15;64207:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64207:30:0;;64179:58;;64249:9;64244:103;64264:15;64260:1;:19;64244:103;;;64309:30;64329:6;64337:1;64309:19;:30::i;:::-;64295:8;64304:1;64295:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;64281:3;;;;:::i;:::-;;;;64244:103;;;-1:-1:-1;64360:8:0;64026:348;-1:-1:-1;;;64026:348:0:o;65067:80::-;17087:13;:11;:13::i;:::-;65126:4:::1;:15:::0;65067:80::o;57176:233::-;57251:7;57287:30;57074:10;:17;;56986:113;57287:30;57279:5;:38;57271:95;;;;-1:-1:-1;;;57271:95:0;;10701:2:1;57271:95:0;;;10683:21:1;10740:2;10720:18;;;10713:30;10779:34;10759:18;;;10752:62;-1:-1:-1;;;10830:18:1;;;10823:42;10882:19;;57271:95:0;10499:408:1;57271:95:0;57384:10;57395:5;57384:17;;;;;;;;:::i;:::-;;;;;;;;;57377:24;;57176:233;;;:::o;65279:98::-;17087:13;:11;:13::i;:::-;65350:7:::1;:21;65360:11:::0;65350:7;:21:::1;:::i;:::-;;65279:98:::0;:::o;39811:223::-;39883:7;44698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44698:16:0;;39947:56;;;;-1:-1:-1;;;39947:56:0;;13318:2:1;39947:56:0;;;13300:21:1;13357:2;13337:18;;;13330:30;-1:-1:-1;;;13376:18:1;;;13369:54;13440:18;;39947:56:0;13116:348:1;39542:207:0;39614:7;-1:-1:-1;;;;;39642:19:0;;39634:73;;;;-1:-1:-1;;;39634:73:0;;13671:2:1;39634:73:0;;;13653:21:1;13710:2;13690:18;;;13683:30;13749:34;13729:18;;;13722:62;-1:-1:-1;;;13800:18:1;;;13793:39;13849:19;;39634:73:0;13469:405:1;39634:73:0;-1:-1:-1;;;;;;39725:16:0;;;;;:9;:16;;;;;;;39542:207::o;17849:103::-;17087:13;:11;:13::i;:::-;17914:30:::1;17941:1;17914:18;:30::i;:::-;17849:103::o:0;63491:529::-;63579:16;63613:18;63634:16;63644:5;63634:9;:16::i;:::-;63613:37;;63665:10;63679:1;63665:15;63661:354;;63704:16;;;63718:1;63704:16;;;;;;;;;;;;63661:354;63753:23;63793:10;63779:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63779:25:0;;63753:51;;63819:13;63847:129;63871:10;63863:5;:18;63847:129;;;63927:33;63947:5;63954;63927:19;:33::i;:::-;63911:6;63918:5;63911:13;;;;;;;;:::i;:::-;;;;;;;;;;:49;63883:7;;;;:::i;:::-;;;;63847:129;;63661:354;63602:418;63491:529;;;:::o;62883:494::-;62938:14;62955:13;57074:10;:17;;56986:113;62955:13;62984:6;;62938:30;;-1:-1:-1;62984:6:0;;62983:7;62975:16;;;;;;63015:1;63006:6;:10;62998:19;;;;;;63051:9;;63032:15;63041:6;63032;:15;:::i;:::-;:28;;63024:37;;;;;;17274:6;;-1:-1:-1;;;;;17274:6:0;63074:10;:21;63070:79;;63134:6;63127:4;;:13;;;;:::i;:::-;63114:9;:26;;63106:35;;;;;;63174:1;63157:88;63182:6;63177:1;:11;63157:88;;63204:33;63214:10;63226;63235:1;63226:6;:10;:::i;:::-;63204:9;:33::i;:::-;63190:3;;;;:::i;:::-;;;;63157:88;;;-1:-1:-1;63270:78:0;;63252:12;;63278:42;;63334:9;;63252:12;63270:78;63252:12;63270:78;63334:9;63278:42;63270:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63251:97;;;63363:7;63355:16;;;;;40270:104;40326:13;40359:7;40352:14;;;;;:::i;41856:155::-;41951:52;15863:10;41984:8;41994;41951:18;:52::i;64994:65::-;17087:13;:11;:13::i;:::-;65038:8:::1;:15:::0;;-1:-1:-1;;65038:15:0::1;;;::::0;;64994:65::o;64883:89::-;64925:18;64959:7;64952:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64883:89;:::o;42975:322::-;43149:41;15863:10;43182:7;43149:18;:41::i;:::-;43141:99;;;;-1:-1:-1;;;43141:99:0;;;;;;;:::i;:::-;43251:38;43265:4;43271:2;43275:7;43284:4;43251:13;:38::i;:::-;42975:322;;;;:::o;62666:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62457:37::-;;;;;;;:::i;64380:497::-;45100:4;44698:16;;;:7;:16;;;;;;64478:13;;-1:-1:-1;;;;;44698:16:0;64503:97;;;;-1:-1:-1;;;64503:97:0;;14384:2:1;64503:97:0;;;14366:21:1;14423:2;14403:18;;;14396:30;14462:34;14442:18;;;14435:62;-1:-1:-1;;;14513:18:1;;;14506:45;14568:19;;64503:97:0;14182:411:1;64503:97:0;64616:8;;;;;;;:17;;64628:5;64616:17;64613:62;;64653:14;64646:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64380:497;;;:::o;64613:62::-;64683:28;64714:10;:8;:10::i;:::-;64683:41;;64769:1;64744:14;64738:28;:32;:133;;;;;;;;;;;;;;;;;64806:14;64822:18;:7;:16;:18::i;:::-;64842:13;64789:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64738:133;64731:140;64380:497;-1:-1:-1;;;64380:497:0:o;65383:122::-;17087:13;:11;:13::i;:::-;65466::::1;:33;65482:17:::0;65466:13;:33:::1;:::i;65153:120::-:0;17087:13;:11;:13::i;:::-;65235:14:::1;:32;65252:15:::0;65235:14;:32:::1;:::i;18107:201::-:0;17087:13;:11;:13::i;:::-;-1:-1:-1;;;;;18196:22:0;::::1;18188:73;;;::::0;-1:-1:-1;;;18188:73:0;;16061:2:1;18188:73:0::1;::::0;::::1;16043:21:1::0;16100:2;16080:18;;;16073:30;16139:34;16119:18;;;16112:62;-1:-1:-1;;;16190:18:1;;;16183:36;16236:19;;18188:73:0::1;15859:402:1::0;18188:73:0::1;18272:28;18291:8;18272:18;:28::i;39173:305::-:0;39275:4;-1:-1:-1;;;;;;39312:40:0;;-1:-1:-1;;;39312:40:0;;:105;;-1:-1:-1;;;;;;;39369:48:0;;-1:-1:-1;;;39369:48:0;39312:105;:158;;;-1:-1:-1;;;;;;;;;;30884:40:0;;;39434:36;30775:157;17366:132;17274:6;;-1:-1:-1;;;;;17274:6:0;15863:10;17430:23;17422:68;;;;-1:-1:-1;;;17422:68:0;;16468:2:1;17422:68:0;;;16450:21:1;;;16487:18;;;16480:30;16546:34;16526:18;;;16519:62;16598:18;;17422:68:0;16266:356:1;51432:135:0;45100:4;44698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44698:16:0;51506:53;;;;-1:-1:-1;;;51506:53:0;;13318:2:1;51506:53:0;;;13300:21:1;13357:2;13337:18;;;13330:30;-1:-1:-1;;;13376:18:1;;;13369:54;13440:18;;51506:53:0;13116:348:1;50711:174:0;50786:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50786:29:0;-1:-1:-1;;;;;50786:29:0;;;;;;;;:24;;50840:23;50786:24;50840:14;:23::i;:::-;-1:-1:-1;;;;;50831:46:0;;;;;;;;;;;50711:174;;:::o;45330:264::-;45423:4;45440:13;45456:23;45471:7;45456:14;:23::i;:::-;45440:39;;45509:5;-1:-1:-1;;;;;45498:16:0;:7;-1:-1:-1;;;;;45498:16:0;;:52;;;-1:-1:-1;;;;;;42203:25:0;;;42179:4;42203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45518:32;45498:87;;;;45578:7;-1:-1:-1;;;;;45554:31:0;:20;45566:7;45554:11;:20::i;:::-;-1:-1:-1;;;;;45554:31:0;;45498:87;45490:96;45330:264;-1:-1:-1;;;;45330:264:0:o;49329:1263::-;49488:4;-1:-1:-1;;;;;49461:31:0;:23;49476:7;49461:14;:23::i;:::-;-1:-1:-1;;;;;49461:31:0;;49453:81;;;;-1:-1:-1;;;49453:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49553:16:0;;49545:65;;;;-1:-1:-1;;;49545:65:0;;17235:2:1;49545:65:0;;;17217:21:1;17274:2;17254:18;;;17247:30;17313:34;17293:18;;;17286:62;-1:-1:-1;;;17364:18:1;;;17357:34;17408:19;;49545:65:0;17033:400:1;49545:65:0;49623:42;49644:4;49650:2;49654:7;49663:1;49623:20;:42::i;:::-;49795:4;-1:-1:-1;;;;;49768:31:0;:23;49783:7;49768:14;:23::i;:::-;-1:-1:-1;;;;;49768:31:0;;49760:81;;;;-1:-1:-1;;;49760:81:0;;;;;;;:::i;:::-;49913:24;;;;:15;:24;;;;;;;;49906:31;;-1:-1:-1;;;;;;49906:31:0;;;;;;-1:-1:-1;;;;;50389:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;50389:20:0;;;50424:13;;;;;;;;;:18;;49906:31;50424:18;;;50464:16;;;:7;:16;;;;;;:21;;;;;;;;;;50503:27;;49929:7;;50503:27;;;41201:346;41131:416;;:::o;18468:191::-;18561:6;;;-1:-1:-1;;;;;18578:17:0;;;-1:-1:-1;;;;;;18578:17:0;;;;;;;18611:40;;18561:6;;;18578:17;18561:6;;18611:40;;18542:16;;18611:40;18531:128;18468:191;:::o;45936:110::-;46012:26;46022:2;46026:7;46012:26;;;;;;;;;;;;:9;:26::i;51028:315::-;51183:8;-1:-1:-1;;;;;51174:17:0;:5;-1:-1:-1;;;;;51174:17:0;;51166:55;;;;-1:-1:-1;;;51166:55:0;;17640:2:1;51166:55:0;;;17622:21:1;17679:2;17659:18;;;17652:30;17718:27;17698:18;;;17691:55;17763:18;;51166:55:0;17438:349:1;51166:55:0;-1:-1:-1;;;;;51232:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51232:46:0;;;;;;;;;;51294:41;;540::1;;;51294::0;;513:18:1;51294:41:0;;;;;;;51028:315;;;:::o;44178:313::-;44334:28;44344:4;44350:2;44354:7;44334:9;:28::i;:::-;44381:47;44404:4;44410:2;44414:7;44423:4;44381:22;:47::i;:::-;44373:110;;;;-1:-1:-1;;;44373:110:0;;;;;;;:::i;63383:102::-;63443:13;63472:7;63465:14;;;;;:::i;13240:716::-;13296:13;13347:14;13364:17;13375:5;13364:10;:17::i;:::-;13384:1;13364:21;13347:38;;13400:20;13434:6;13423:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13423:18:0;-1:-1:-1;13400:41:0;-1:-1:-1;13565:28:0;;;13581:2;13565:28;13622:288;-1:-1:-1;;13654:5:0;-1:-1:-1;;;13791:2:0;13780:14;;13775:30;13654:5;13762:44;13852:2;13843:11;;;-1:-1:-1;13873:21:0;;13889:5;13873:21;13622:288;;57483:915;57750:1;57738:9;:13;57734:222;;;57881:63;;-1:-1:-1;;;57881:63:0;;18545:2:1;57881:63:0;;;18527:21:1;18584:2;18564:18;;;18557:30;18623:34;18603:18;;;18596:62;-1:-1:-1;;;18674:18:1;;;18667:51;18735:19;;57881:63:0;18343:417:1;57734:222:0;57986:12;-1:-1:-1;;;;;58015:18:0;;58011:187;;58050:40;58082:7;59225:10;:17;;59198:24;;;;:15;:24;;;;;:44;;;59253:24;;;;;;;;;;;;59121:164;58050:40;58011:187;;;58120:2;-1:-1:-1;;;;;58112:10:0;:4;-1:-1:-1;;;;;58112:10:0;;58108:90;;58139:47;58172:4;58178:7;58139:32;:47::i;:::-;-1:-1:-1;;;;;58212:16:0;;58208:183;;58245:45;58282:7;58245:36;:45::i;:::-;58208:183;;;58318:4;-1:-1:-1;;;;;58312:10:0;:2;-1:-1:-1;;;;;58312:10:0;;58308:83;;58339:40;58367:2;58371:7;58339:27;:40::i;:::-;57649:749;57483:915;;;;:::o;46273:319::-;46402:18;46408:2;46412:7;46402:5;:18::i;:::-;46453:53;46484:1;46488:2;46492:7;46501:4;46453:22;:53::i;:::-;46431:153;;;;-1:-1:-1;;;46431:153:0;;;;;;;:::i;52131:853::-;52285:4;-1:-1:-1;;;;;52306:13:0;;20164:19;:23;52302:675;;52342:71;;-1:-1:-1;;;52342:71:0;;-1:-1:-1;;;;;52342:36:0;;;;;:71;;15863:10;;52393:4;;52399:7;;52408:4;;52342:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52342:71:0;;;;;;;;-1:-1:-1;;52342:71:0;;;;;;;;;;;;:::i;:::-;;;52338:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52583:6;:13;52600:1;52583:18;52579:328;;52626:60;;-1:-1:-1;;;52626:60:0;;;;;;;:::i;52579:328::-;52857:6;52851:13;52842:6;52838:2;52834:15;52827:38;52338:584;-1:-1:-1;;;;;;52464:51:0;-1:-1:-1;;;52464:51:0;;-1:-1:-1;52457:58:0;;52302:675;-1:-1:-1;52961:4:0;52131:853;;;;;;:::o;10136:922::-;10189:7;;-1:-1:-1;;;10267:15:0;;10263:102;;-1:-1:-1;;;10303:15:0;;;-1:-1:-1;10347:2:0;10337:12;10263:102;10392:6;10383:5;:15;10379:102;;10428:6;10419:15;;;-1:-1:-1;10463:2:0;10453:12;10379:102;10508:6;10499:5;:15;10495:102;;10544:6;10535:15;;;-1:-1:-1;10579:2:0;10569:12;10495:102;10624:5;10615;:14;10611:99;;10659:5;10650:14;;;-1:-1:-1;10693:1:0;10683:11;10611:99;10737:5;10728;:14;10724:99;;10772:5;10763:14;;;-1:-1:-1;10806:1:0;10796:11;10724:99;10850:5;10841;:14;10837:99;;10885:5;10876:14;;;-1:-1:-1;10919:1:0;10909:11;10837:99;10963:5;10954;:14;10950:66;;10999:1;10989:11;11044:6;10136:922;-1:-1:-1;;10136:922:0:o;59912:988::-;60178:22;60228:1;60203:22;60220:4;60203:16;:22::i;:::-;:26;;;;:::i;:::-;60240:18;60261:26;;;:17;:26;;;;;;60178:51;;-1:-1:-1;60394:28:0;;;60390:328;;-1:-1:-1;;;;;60461:18:0;;60439:19;60461:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60512:30;;;;;;:44;;;60629:30;;:17;:30;;;;;:43;;;60390:328;-1:-1:-1;60814:26:0;;;;:17;:26;;;;;;;;60807:33;;;-1:-1:-1;;;;;60858:18:0;;;;;:12;:18;;;;;:34;;;;;;;60851:41;59912:988::o;61195:1079::-;61473:10;:17;61448:22;;61473:21;;61493:1;;61473:21;:::i;:::-;61505:18;61526:24;;;:15;:24;;;;;;61899:10;:26;;61448:46;;-1:-1:-1;61526:24:0;;61448:46;;61899:26;;;;;;:::i;:::-;;;;;;;;;61877:48;;61963:11;61938:10;61949;61938:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;62043:28;;;:15;:28;;;;;;;:41;;;62215:24;;;;;62208:31;62250:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;61266:1008;;;61195:1079;:::o;58699:221::-;58784:14;58801:20;58818:2;58801:16;:20::i;:::-;-1:-1:-1;;;;;58832:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;58877:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58699:221:0:o;46928:942::-;-1:-1:-1;;;;;47008:16:0;;47000:61;;;;-1:-1:-1;;;47000:61:0;;19980:2:1;47000:61:0;;;19962:21:1;;;19999:18;;;19992:30;20058:34;20038:18;;;20031:62;20110:18;;47000:61:0;19778:356:1;47000:61:0;45100:4;44698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44698:16:0;45124:31;47072:58;;;;-1:-1:-1;;;47072:58:0;;20341:2:1;47072:58:0;;;20323:21:1;20380:2;20360:18;;;20353:30;20419;20399:18;;;20392:58;20467:18;;47072:58:0;20139:352:1;47072:58:0;47143:48;47172:1;47176:2;47180:7;47189:1;47143:20;:48::i;:::-;45100:4;44698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44698:16:0;45124:31;47281:58;;;;-1:-1:-1;;;47281:58:0;;20341:2:1;47281:58:0;;;20323:21:1;20380:2;20360:18;;;20353:30;20419;20399:18;;;20392:58;20467:18;;47281:58:0;20139:352:1;47281:58:0;-1:-1:-1;;;;;47688:13:0;;;;;;:9;:13;;;;;;;;:18;;47705:1;47688:18;;;47730:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47730:21:0;;;;;47769:33;47738:7;;47688:13;;47769:33;;47688:13;;47769:33;65350:21:::1;65279:98:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:632::-;3405:2;3457:21;;;3527:13;;3430:18;;;3549:22;;;3376:4;;3405:2;3628:15;;;;3602:2;3587:18;;;3376:4;3671:169;3685:6;3682:1;3679:13;3671:169;;;3746:13;;3734:26;;3815:15;;;;3780:12;;;;3707:1;3700:9;3671:169;;;-1:-1:-1;3857:3:1;;3234:632;-1:-1:-1;;;;;;3234:632:1:o;3871:127::-;3932:10;3927:3;3923:20;3920:1;3913:31;3963:4;3960:1;3953:15;3987:4;3984:1;3977:15;4003:632;4068:5;4098:18;4139:2;4131:6;4128:14;4125:40;;;4145:18;;:::i;:::-;4220:2;4214:9;4188:2;4274:15;;-1:-1:-1;;4270:24:1;;;4296:2;4266:33;4262:42;4250:55;;;4320:18;;;4340:22;;;4317:46;4314:72;;;4366:18;;:::i;:::-;4406:10;4402:2;4395:22;4435:6;4426:15;;4465:6;4457;4450:22;4505:3;4496:6;4491:3;4487:16;4484:25;4481:45;;;4522:1;4519;4512:12;4481:45;4572:6;4567:3;4560:4;4552:6;4548:17;4535:44;4627:1;4620:4;4611:6;4603;4599:19;4595:30;4588:41;;;;4003:632;;;;;:::o;4640:451::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;4851:18;4843:6;4840:30;4837:50;;;4883:1;4880;4873:12;4837:50;4906:22;;4959:4;4951:13;;4947:27;-1:-1:-1;4937:55:1;;4988:1;4985;4978:12;4937:55;5011:74;5077:7;5072:2;5059:16;5054:2;5050;5046:11;5011:74;:::i;5096:254::-;5161:6;5169;5222:2;5210:9;5201:7;5197:23;5193:32;5190:52;;;5238:1;5235;5228:12;5190:52;5261:29;5280:9;5261:29;:::i;:::-;5251:39;;5309:35;5340:2;5329:9;5325:18;5309:35;:::i;:::-;5299:45;;5096:254;;;;;:::o;5355:1292::-;5547:4;5576:2;5616;5605:9;5601:18;5646:2;5635:9;5628:21;5669:6;5704;5698:13;5735:6;5727;5720:22;5773:2;5762:9;5758:18;5751:25;;5835:2;5825:6;5822:1;5818:14;5807:9;5803:30;5799:39;5785:53;;5873:2;5865:6;5861:15;5894:1;5915;5925:693;5941:6;5936:3;5933:15;5925:693;;;6010:22;;;-1:-1:-1;;6006:36:1;5994:49;;6066:13;;6140:9;;6162:24;;;6252:11;;;;6208:15;;;;6287:1;6301:209;6317:8;6312:3;6309:17;6301:209;;;6394:15;;6380:30;;6479:17;;;;6436:14;;;;6345:1;6336:11;6301:209;;;-1:-1:-1;6533:5:1;;-1:-1:-1;;;6596:12:1;;;;6561:15;;;;5967:1;5958:11;5925:693;;;-1:-1:-1;6635:6:1;;5355:1292;-1:-1:-1;;;;;;;;5355:1292:1:o;6652:667::-;6747:6;6755;6763;6771;6824:3;6812:9;6803:7;6799:23;6795:33;6792:53;;;6841:1;6838;6831:12;6792:53;6864:29;6883:9;6864:29;:::i;:::-;6854:39;;6912:38;6946:2;6935:9;6931:18;6912:38;:::i;:::-;6902:48;;6997:2;6986:9;6982:18;6969:32;6959:42;;7052:2;7041:9;7037:18;7024:32;7079:18;7071:6;7068:30;7065:50;;;7111:1;7108;7101:12;7065:50;7134:22;;7187:4;7179:13;;7175:27;-1:-1:-1;7165:55:1;;7216:1;7213;7206:12;7165:55;7239:74;7305:7;7300:2;7287:16;7282:2;7278;7274:11;7239:74;:::i;:::-;7229:84;;;6652:667;;;;;;;:::o;7324:248::-;7392:6;7400;7453:2;7441:9;7432:7;7428:23;7424:32;7421:52;;;7469:1;7466;7459:12;7421:52;-1:-1:-1;;7492:23:1;;;7562:2;7547:18;;;7534:32;;-1:-1:-1;7324:248:1:o;7577:260::-;7645:6;7653;7706:2;7694:9;7685:7;7681:23;7677:32;7674:52;;;7722:1;7719;7712:12;7674:52;7745:29;7764:9;7745:29;:::i;:::-;7735:39;;7793:38;7827:2;7816:9;7812:18;7793:38;:::i;7842:380::-;7921:1;7917:12;;;;7964;;;7985:61;;8039:4;8031:6;8027:17;8017:27;;7985:61;8092:2;8084:6;8081:14;8061:18;8058:38;8055:161;;8138:10;8133:3;8129:20;8126:1;8119:31;8173:4;8170:1;8163:15;8201:4;8198:1;8191:15;9059:409;9261:2;9243:21;;;9300:2;9280:18;;;9273:30;9339:34;9334:2;9319:18;;9312:62;-1:-1:-1;;;9405:2:1;9390:18;;9383:43;9458:3;9443:19;;9059:409::o;10095:127::-;10156:10;10151:3;10147:20;10144:1;10137:31;10187:4;10184:1;10177:15;10211:4;10208:1;10201:15;10227:127;10288:10;10283:3;10279:20;10276:1;10269:31;10319:4;10316:1;10309:15;10343:4;10340:1;10333:15;10359:135;10398:3;10419:17;;;10416:43;;10439:18;;:::i;:::-;-1:-1:-1;10486:1:1;10475:13;;10359:135::o;11038:545::-;11140:2;11135:3;11132:11;11129:448;;;11176:1;11201:5;11197:2;11190:17;11246:4;11242:2;11232:19;11316:2;11304:10;11300:19;11297:1;11293:27;11287:4;11283:38;11352:4;11340:10;11337:20;11334:47;;;-1:-1:-1;11375:4:1;11334:47;11430:2;11425:3;11421:12;11418:1;11414:20;11408:4;11404:31;11394:41;;11485:82;11503:2;11496:5;11493:13;11485:82;;;11548:17;;;11529:1;11518:13;11485:82;;;11489:3;;;11038:545;;;:::o;11759:1352::-;11885:3;11879:10;11912:18;11904:6;11901:30;11898:56;;;11934:18;;:::i;:::-;11963:97;12053:6;12013:38;12045:4;12039:11;12013:38;:::i;:::-;12007:4;11963:97;:::i;:::-;12115:4;;12179:2;12168:14;;12196:1;12191:663;;;;12898:1;12915:6;12912:89;;;-1:-1:-1;12967:19:1;;;12961:26;12912:89;-1:-1:-1;;11716:1:1;11712:11;;;11708:24;11704:29;11694:40;11740:1;11736:11;;;11691:57;13014:81;;12161:944;;12191:663;10985:1;10978:14;;;11022:4;11009:18;;-1:-1:-1;;12227:20:1;;;12345:236;12359:7;12356:1;12353:14;12345:236;;;12448:19;;;12442:26;12427:42;;12540:27;;;;12508:1;12496:14;;;;12375:19;;12345:236;;;12349:3;12609:6;12600:7;12597:19;12594:201;;;12670:19;;;12664:26;-1:-1:-1;;12753:1:1;12749:14;;;12765:3;12745:24;12741:37;12737:42;12722:58;12707:74;;12594:201;-1:-1:-1;;;;;12841:1:1;12825:14;;;12821:22;12808:36;;-1:-1:-1;11759:1352:1:o;13879:125::-;13944:9;;;13965:10;;;13962:36;;;13978:18;;:::i;14009:168::-;14082:9;;;14113;;14130:15;;;14124:22;;14110:37;14100:71;;14151:18;;:::i;14598:1256::-;14822:3;14860:6;14854:13;14886:4;14899:64;14956:6;14951:3;14946:2;14938:6;14934:15;14899:64;:::i;:::-;15026:13;;14985:16;;;;15048:68;15026:13;14985:16;15083:15;;;15048:68;:::i;:::-;15205:13;;15138:20;;;15178:1;;15243:36;15205:13;15243:36;:::i;:::-;15298:1;15315:18;;;15342:141;;;;15497:1;15492:337;;;;15308:521;;15342:141;-1:-1:-1;;15377:24:1;;15363:39;;15454:16;;15447:24;15433:39;;15422:51;;;-1:-1:-1;15342:141:1;;15492:337;15523:6;15520:1;15513:17;15571:2;15568:1;15558:16;15596:1;15610:169;15624:8;15621:1;15618:15;15610:169;;;15706:14;;15691:13;;;15684:37;15749:16;;;;15641:10;;15610:169;;;15614:3;;15810:8;15803:5;15799:20;15792:27;;15308:521;-1:-1:-1;15845:3:1;;14598:1256;-1:-1:-1;;;;;;;;;;14598:1256:1:o;16627:401::-;16829:2;16811:21;;;16868:2;16848:18;;;16841:30;16907:34;16902:2;16887:18;;16880:62;-1:-1:-1;;;16973:2:1;16958:18;;16951:35;17018:3;17003:19;;16627:401::o;17792:414::-;17994:2;17976:21;;;18033:2;18013:18;;;18006:30;18072:34;18067:2;18052:18;;18045:62;-1:-1:-1;;;18138:2:1;18123:18;;18116:48;18196:3;18181:19;;17792:414::o;18765:489::-;-1:-1:-1;;;;;19034:15:1;;;19016:34;;19086:15;;19081:2;19066:18;;19059:43;19133:2;19118:18;;19111:34;;;19181:3;19176:2;19161:18;;19154:31;;;18959:4;;19202:46;;19228:19;;19220:6;19202:46;:::i;:::-;19194:54;18765:489;-1:-1:-1;;;;;;18765:489:1:o;19259:249::-;19328:6;19381:2;19369:9;19360:7;19356:23;19352:32;19349:52;;;19397:1;19394;19387:12;19349:52;19429:9;19423:16;19448:30;19472:5;19448:30;:::i;19513:128::-;19580:9;;;19601:11;;;19598:37;;;19615:18;;:::i;19646:127::-;19707:10;19702:3;19698:20;19695:1;19688:31;19738:4;19735:1;19728:15;19762:4;19759:1;19752:15

Swarm Source

ipfs://787ed6e175ba1803453cc70153692d2d02ec81b6f6876602bc5a477e1d129d59
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.