ETH Price: $2,647.96 (-1.05%)

Token

RECESSIONloot (RCL)
 

Overview

Max Total Supply

26 RCL

Holders

16

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RCL
0xd33955866f8d52404f66a21f9e3421dedf123064
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:
RECESSIONTOOLS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-20
*/

// File: @openzeppelin/[email protected]/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/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: contract-62138ea919.sol


pragma solidity ^0.8.9;





contract RECESSIONTOOLS is ERC721, ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 public mintRate = 1.7 ether;
    uint public MAX_SUPPLY = 26;

    constructor() ERC721("RECESSIONloot", "RCL") {}

    function _baseURI() internal pure override returns (string memory) {
        return "https://gateway.pinata.cloud/ipfs/QmYYV9aNts5RnWmVfJhQFxGxjVCYeRSLdDGv4xvXCyQFvQ/";
    }

    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, Strings.toString(tokenId), ".json")) : "";
    }

    function safeMint(address to) public payable {
        require(totalSupply() < MAX_SUPPLY, "Can't mint more.");
        require(msg.value >= mintRate, "Not enough ether sent.");
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "Balance is 0");
        payable(owner()).transfer(address(this).balance);
    }
}

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":[],"name":"MAX_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526717979cfe362a0000600c55601a600d553480156200002257600080fd5b506040518060400160405280600d81526020017f524543455353494f4e6c6f6f74000000000000000000000000000000000000008152506040518060400160405280600381526020017f52434c00000000000000000000000000000000000000000000000000000000008152508160009081620000a0919062000423565b508060019081620000b2919062000423565b505050620000d5620000c9620000db60201b60201c565b620000e360201b60201c565b6200050a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022b57607f821691505b602082108103620002415762000240620001e3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200026c565b620002b786836200026c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000304620002fe620002f884620002cf565b620002d9565b620002cf565b9050919050565b6000819050919050565b6200032083620002e3565b620003386200032f826200030b565b84845462000279565b825550505050565b600090565b6200034f62000340565b6200035c81848462000315565b505050565b5b8181101562000384576200037860008262000345565b60018101905062000362565b5050565b601f821115620003d3576200039d8162000247565b620003a8846200025c565b81016020851015620003b8578190505b620003d0620003c7856200025c565b83018262000361565b50505b505050565b600082821c905092915050565b6000620003f860001984600802620003d8565b1980831691505092915050565b6000620004138383620003e5565b9150826002028217905092915050565b6200042e82620001a9565b67ffffffffffffffff8111156200044a5762000449620001b4565b5b62000456825462000212565b6200046382828562000388565b600060209050601f8311600181146200049b576000841562000486578287015190505b62000492858262000405565b86555062000502565b601f198416620004ab8662000247565b60005b82811015620004d557848901518255600182019150602085019450602081019050620004ae565b86831015620004f55784890151620004f1601f891682620003e5565b8355505b6001600288020188555050505b505050505050565b6137aa806200051a6000396000f3fe6080604052600436106101405760003560e01c80634f6ccce7116100b6578063a22cb4651161006f578063a22cb4651461044f578063b88d4fde14610478578063c87b56dd146104a1578063ca0dcf16146104de578063e985e9c514610509578063f2fde38b1461054657610140565b80634f6ccce71461032b5780636352211e1461036857806370a08231146103a5578063715018a6146103e25780638da5cb5b146103f957806395d89b411461042457610140565b806323b872dd1161010857806323b872dd1461023e5780632f745c591461026757806332cb6b0c146102a45780633ccfd60b146102cf57806340d097c3146102e657806342842e0e1461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612511565b61056f565b6040516101799190612559565b60405180910390f35b34801561018e57600080fd5b50610197610581565b6040516101a49190612604565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf919061265c565b610613565b6040516101e191906126ca565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612711565b610659565b005b34801561021f57600080fd5b50610228610770565b6040516102359190612760565b60405180910390f35b34801561024a57600080fd5b506102656004803603810190610260919061277b565b61077d565b005b34801561027357600080fd5b5061028e60048036038101906102899190612711565b6107dd565b60405161029b9190612760565b60405180910390f35b3480156102b057600080fd5b506102b9610882565b6040516102c69190612760565b60405180910390f35b3480156102db57600080fd5b506102e4610888565b005b61030060048036038101906102fb91906127ce565b610923565b005b34801561030e57600080fd5b506103296004803603810190610324919061277b565b6109d9565b005b34801561033757600080fd5b50610352600480360381019061034d919061265c565b6109f9565b60405161035f9190612760565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a919061265c565b610a6a565b60405161039c91906126ca565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906127ce565b610af0565b6040516103d99190612760565b60405180910390f35b3480156103ee57600080fd5b506103f7610ba7565b005b34801561040557600080fd5b5061040e610bbb565b60405161041b91906126ca565b60405180910390f35b34801561043057600080fd5b50610439610be5565b6040516104469190612604565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612827565b610c77565b005b34801561048457600080fd5b5061049f600480360381019061049a919061299c565b610c8d565b005b3480156104ad57600080fd5b506104c860048036038101906104c3919061265c565b610cef565b6040516104d59190612604565b60405180910390f35b3480156104ea57600080fd5b506104f3610d57565b6040516105009190612760565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612a1f565b610d5d565b60405161053d9190612559565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906127ce565b610df1565b005b600061057a82610e74565b9050919050565b60606000805461059090612a8e565b80601f01602080910402602001604051908101604052809291908181526020018280546105bc90612a8e565b80156106095780601f106105de57610100808354040283529160200191610609565b820191906000526020600020905b8154815290600101906020018083116105ec57829003601f168201915b5050505050905090565b600061061e82610eee565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066482610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90612b31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106f3610f39565b73ffffffffffffffffffffffffffffffffffffffff16148061072257506107218161071c610f39565b610d5d565b5b610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890612bc3565b60405180910390fd5b61076b8383610f41565b505050565b6000600880549050905090565b61078e610788610f39565b82610ffa565b6107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490612c55565b60405180910390fd5b6107d883838361108f565b505050565b60006107e883610af0565b8210610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090612ce7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b610890611388565b600047116108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612d53565b60405180910390fd5b6108db610bbb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610920573d6000803e3d6000fd5b50565b600d5461092e610770565b1061096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590612dbf565b60405180910390fd5b600c543410156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612e2b565b60405180910390fd5b60006109bf600b611406565b90506109cb600b611414565b6109d5828261142a565b5050565b6109f483838360405180602001604052806000815250610c8d565b505050565b6000610a03610770565b8210610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90612ebd565b60405180910390fd5b60088281548110610a5857610a57612edd565b5b90600052602060002001549050919050565b600080610a7683611448565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90612f58565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790612fea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610baf611388565b610bb96000611485565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bf490612a8e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2090612a8e565b8015610c6d5780601f10610c4257610100808354040283529160200191610c6d565b820191906000526020600020905b815481529060010190602001808311610c5057829003601f168201915b5050505050905090565b610c89610c82610f39565b838361154b565b5050565b610c9e610c98610f39565b83610ffa565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490612c55565b60405180910390fd5b610ce9848484846116b7565b50505050565b6060610cfa82610eee565b6000610d04611713565b90506000815111610d245760405180602001604052806000815250610d4f565b80610d2e84611733565b604051602001610d3f929190613092565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610df9611388565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90613133565b60405180910390fd5b610e7181611485565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ee75750610ee682611801565b5b9050919050565b610ef7816118e3565b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612f58565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610fb483610a6a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061100683610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061104857506110478185610d5d565b5b8061108657508373ffffffffffffffffffffffffffffffffffffffff1661106e84610613565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166110af82610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906131c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613257565b60405180910390fd5b6111818383836001611924565b8273ffffffffffffffffffffffffffffffffffffffff166111a182610a6a565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906131c5565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113838383836001611936565b505050565b611390610f39565b73ffffffffffffffffffffffffffffffffffffffff166113ae610bbb565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb906132c3565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61144482826040518060200160405280600081525061193c565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b09061332f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116aa9190612559565b60405180910390a3505050565b6116c284848461108f565b6116ce84848484611997565b61170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906133c1565b60405180910390fd5b50505050565b606060405180608001604052806051815260200161372460519139905090565b60606000600161174284611b1e565b01905060008167ffffffffffffffff81111561176157611760612871565b5b6040519080825280601f01601f1916602001820160405280156117935781602001600182028036833780820191505090505b509050600082602001820190505b6001156117f6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816117ea576117e96133e1565b5b049450600085036117a1575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118dc57506118db82611c71565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661190583611448565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61193084848484611cdb565b50505050565b50505050565b6119468383611e39565b6119536000848484611997565b611992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611989906133c1565b60405180910390fd5b505050565b60006119b88473ffffffffffffffffffffffffffffffffffffffff16612056565b15611b11578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e1610f39565b8786866040518563ffffffff1660e01b8152600401611a039493929190613465565b6020604051808303816000875af1925050508015611a3f57506040513d601f19601f82011682018060405250810190611a3c91906134c6565b60015b611ac1573d8060008114611a6f576040519150601f19603f3d011682016040523d82523d6000602084013e611a74565b606091505b506000815103611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab0906133c1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b16565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611b7c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611b7257611b716133e1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611bb9576d04ee2d6d415b85acef81000000008381611baf57611bae6133e1565b5b0492506020810190505b662386f26fc100008310611be857662386f26fc100008381611bde57611bdd6133e1565b5b0492506010810190505b6305f5e1008310611c11576305f5e1008381611c0757611c066133e1565b5b0492506008810190505b6127108310611c36576127108381611c2c57611c2b6133e1565b5b0492506004810190505b60648310611c595760648381611c4f57611c4e6133e1565b5b0492506002810190505b600a8310611c68576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ce784848484612079565b6001811115611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613565565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d7257611d6d8161219f565b611db1565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611db057611daf85826121e8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df357611dee81612355565b611e32565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611e3157611e308482612426565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f906135d1565b60405180910390fd5b611eb1816118e3565b15611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee89061363d565b60405180910390fd5b611eff600083836001611924565b611f08816118e3565b15611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f9061363d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612052600083836001611936565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600181111561219957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461210d5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612105919061368c565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121985780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219091906136c0565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016121f584610af0565b6121ff919061368c565b90506000600760008481526020019081526020016000205490508181146122e4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612369919061368c565b905060006009600084815260200190815260200160002054905060006008838154811061239957612398612edd565b5b9060005260206000200154905080600883815481106123bb576123ba612edd565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061240a576124096136f4565b5b6001900381819060005260206000200160009055905550505050565b600061243183610af0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ee816124b9565b81146124f957600080fd5b50565b60008135905061250b816124e5565b92915050565b600060208284031215612527576125266124af565b5b6000612535848285016124fc565b91505092915050565b60008115159050919050565b6125538161253e565b82525050565b600060208201905061256e600083018461254a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125ae578082015181840152602081019050612593565b60008484015250505050565b6000601f19601f8301169050919050565b60006125d682612574565b6125e0818561257f565b93506125f0818560208601612590565b6125f9816125ba565b840191505092915050565b6000602082019050818103600083015261261e81846125cb565b905092915050565b6000819050919050565b61263981612626565b811461264457600080fd5b50565b60008135905061265681612630565b92915050565b600060208284031215612672576126716124af565b5b600061268084828501612647565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126b482612689565b9050919050565b6126c4816126a9565b82525050565b60006020820190506126df60008301846126bb565b92915050565b6126ee816126a9565b81146126f957600080fd5b50565b60008135905061270b816126e5565b92915050565b60008060408385031215612728576127276124af565b5b6000612736858286016126fc565b925050602061274785828601612647565b9150509250929050565b61275a81612626565b82525050565b60006020820190506127756000830184612751565b92915050565b600080600060608486031215612794576127936124af565b5b60006127a2868287016126fc565b93505060206127b3868287016126fc565b92505060406127c486828701612647565b9150509250925092565b6000602082840312156127e4576127e36124af565b5b60006127f2848285016126fc565b91505092915050565b6128048161253e565b811461280f57600080fd5b50565b600081359050612821816127fb565b92915050565b6000806040838503121561283e5761283d6124af565b5b600061284c858286016126fc565b925050602061285d85828601612812565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128a9826125ba565b810181811067ffffffffffffffff821117156128c8576128c7612871565b5b80604052505050565b60006128db6124a5565b90506128e782826128a0565b919050565b600067ffffffffffffffff82111561290757612906612871565b5b612910826125ba565b9050602081019050919050565b82818337600083830152505050565b600061293f61293a846128ec565b6128d1565b90508281526020810184848401111561295b5761295a61286c565b5b61296684828561291d565b509392505050565b600082601f83011261298357612982612867565b5b813561299384826020860161292c565b91505092915050565b600080600080608085870312156129b6576129b56124af565b5b60006129c4878288016126fc565b94505060206129d5878288016126fc565b93505060406129e687828801612647565b925050606085013567ffffffffffffffff811115612a0757612a066124b4565b5b612a138782880161296e565b91505092959194509250565b60008060408385031215612a3657612a356124af565b5b6000612a44858286016126fc565b9250506020612a55858286016126fc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aa657607f821691505b602082108103612ab957612ab8612a5f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b1b60218361257f565b9150612b2682612abf565b604082019050919050565b60006020820190508181036000830152612b4a81612b0e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612bad603d8361257f565b9150612bb882612b51565b604082019050919050565b60006020820190508181036000830152612bdc81612ba0565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612c3f602d8361257f565b9150612c4a82612be3565b604082019050919050565b60006020820190508181036000830152612c6e81612c32565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612cd1602b8361257f565b9150612cdc82612c75565b604082019050919050565b60006020820190508181036000830152612d0081612cc4565b9050919050565b7f42616c616e636520697320300000000000000000000000000000000000000000600082015250565b6000612d3d600c8361257f565b9150612d4882612d07565b602082019050919050565b60006020820190508181036000830152612d6c81612d30565b9050919050565b7f43616e2774206d696e74206d6f72652e00000000000000000000000000000000600082015250565b6000612da960108361257f565b9150612db482612d73565b602082019050919050565b60006020820190508181036000830152612dd881612d9c565b9050919050565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b6000612e1560168361257f565b9150612e2082612ddf565b602082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612ea7602c8361257f565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f4260188361257f565b9150612f4d82612f0c565b602082019050919050565b60006020820190508181036000830152612f7181612f35565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fd460298361257f565b9150612fdf82612f78565b604082019050919050565b6000602082019050818103600083015261300381612fc7565b9050919050565b600081905092915050565b600061302082612574565b61302a818561300a565b935061303a818560208601612590565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061307c60058361300a565b915061308782613046565b600582019050919050565b600061309e8285613015565b91506130aa8284613015565b91506130b58261306f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061311d60268361257f565b9150613128826130c1565b604082019050919050565b6000602082019050818103600083015261314c81613110565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131af60258361257f565b91506131ba82613153565b604082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061324160248361257f565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132ad60208361257f565b91506132b882613277565b602082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061331960198361257f565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133ab60328361257f565b91506133b68261334f565b604082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061343782613410565b613441818561341b565b9350613451818560208601612590565b61345a816125ba565b840191505092915050565b600060808201905061347a60008301876126bb565b61348760208301866126bb565b6134946040830185612751565b81810360608301526134a6818461342c565b905095945050505050565b6000815190506134c0816124e5565b92915050565b6000602082840312156134dc576134db6124af565b5b60006134ea848285016134b1565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061354f60358361257f565b915061355a826134f3565b604082019050919050565b6000602082019050818103600083015261357e81613542565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135bb60208361257f565b91506135c682613585565b602082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613627601c8361257f565b9150613632826135f1565b602082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061369782612626565b91506136a283612626565b92508282039050818111156136ba576136b961365d565b5b92915050565b60006136cb82612626565b91506136d683612626565b92508282019050808211156136ee576136ed61365d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59595639614e747335526e576d56664a6851467847786a5643596552534c64444776347876584379514676512fa2646970667358221220616511e4c019a9f7d850450cd1f40e0c1a3c3190896b3d31112d7a27c72e512d64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101405760003560e01c80634f6ccce7116100b6578063a22cb4651161006f578063a22cb4651461044f578063b88d4fde14610478578063c87b56dd146104a1578063ca0dcf16146104de578063e985e9c514610509578063f2fde38b1461054657610140565b80634f6ccce71461032b5780636352211e1461036857806370a08231146103a5578063715018a6146103e25780638da5cb5b146103f957806395d89b411461042457610140565b806323b872dd1161010857806323b872dd1461023e5780632f745c591461026757806332cb6b0c146102a45780633ccfd60b146102cf57806340d097c3146102e657806342842e0e1461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612511565b61056f565b6040516101799190612559565b60405180910390f35b34801561018e57600080fd5b50610197610581565b6040516101a49190612604565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf919061265c565b610613565b6040516101e191906126ca565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612711565b610659565b005b34801561021f57600080fd5b50610228610770565b6040516102359190612760565b60405180910390f35b34801561024a57600080fd5b506102656004803603810190610260919061277b565b61077d565b005b34801561027357600080fd5b5061028e60048036038101906102899190612711565b6107dd565b60405161029b9190612760565b60405180910390f35b3480156102b057600080fd5b506102b9610882565b6040516102c69190612760565b60405180910390f35b3480156102db57600080fd5b506102e4610888565b005b61030060048036038101906102fb91906127ce565b610923565b005b34801561030e57600080fd5b506103296004803603810190610324919061277b565b6109d9565b005b34801561033757600080fd5b50610352600480360381019061034d919061265c565b6109f9565b60405161035f9190612760565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a919061265c565b610a6a565b60405161039c91906126ca565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906127ce565b610af0565b6040516103d99190612760565b60405180910390f35b3480156103ee57600080fd5b506103f7610ba7565b005b34801561040557600080fd5b5061040e610bbb565b60405161041b91906126ca565b60405180910390f35b34801561043057600080fd5b50610439610be5565b6040516104469190612604565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612827565b610c77565b005b34801561048457600080fd5b5061049f600480360381019061049a919061299c565b610c8d565b005b3480156104ad57600080fd5b506104c860048036038101906104c3919061265c565b610cef565b6040516104d59190612604565b60405180910390f35b3480156104ea57600080fd5b506104f3610d57565b6040516105009190612760565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612a1f565b610d5d565b60405161053d9190612559565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906127ce565b610df1565b005b600061057a82610e74565b9050919050565b60606000805461059090612a8e565b80601f01602080910402602001604051908101604052809291908181526020018280546105bc90612a8e565b80156106095780601f106105de57610100808354040283529160200191610609565b820191906000526020600020905b8154815290600101906020018083116105ec57829003601f168201915b5050505050905090565b600061061e82610eee565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066482610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90612b31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106f3610f39565b73ffffffffffffffffffffffffffffffffffffffff16148061072257506107218161071c610f39565b610d5d565b5b610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890612bc3565b60405180910390fd5b61076b8383610f41565b505050565b6000600880549050905090565b61078e610788610f39565b82610ffa565b6107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490612c55565b60405180910390fd5b6107d883838361108f565b505050565b60006107e883610af0565b8210610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090612ce7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b610890611388565b600047116108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612d53565b60405180910390fd5b6108db610bbb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610920573d6000803e3d6000fd5b50565b600d5461092e610770565b1061096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590612dbf565b60405180910390fd5b600c543410156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612e2b565b60405180910390fd5b60006109bf600b611406565b90506109cb600b611414565b6109d5828261142a565b5050565b6109f483838360405180602001604052806000815250610c8d565b505050565b6000610a03610770565b8210610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90612ebd565b60405180910390fd5b60088281548110610a5857610a57612edd565b5b90600052602060002001549050919050565b600080610a7683611448565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90612f58565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790612fea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610baf611388565b610bb96000611485565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bf490612a8e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2090612a8e565b8015610c6d5780601f10610c4257610100808354040283529160200191610c6d565b820191906000526020600020905b815481529060010190602001808311610c5057829003601f168201915b5050505050905090565b610c89610c82610f39565b838361154b565b5050565b610c9e610c98610f39565b83610ffa565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490612c55565b60405180910390fd5b610ce9848484846116b7565b50505050565b6060610cfa82610eee565b6000610d04611713565b90506000815111610d245760405180602001604052806000815250610d4f565b80610d2e84611733565b604051602001610d3f929190613092565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610df9611388565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90613133565b60405180910390fd5b610e7181611485565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ee75750610ee682611801565b5b9050919050565b610ef7816118e3565b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612f58565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610fb483610a6a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061100683610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061104857506110478185610d5d565b5b8061108657508373ffffffffffffffffffffffffffffffffffffffff1661106e84610613565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166110af82610a6a565b73ffffffffffffffffffffffffffffffffffffffff1614611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906131c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613257565b60405180910390fd5b6111818383836001611924565b8273ffffffffffffffffffffffffffffffffffffffff166111a182610a6a565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906131c5565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113838383836001611936565b505050565b611390610f39565b73ffffffffffffffffffffffffffffffffffffffff166113ae610bbb565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb906132c3565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61144482826040518060200160405280600081525061193c565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b09061332f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116aa9190612559565b60405180910390a3505050565b6116c284848461108f565b6116ce84848484611997565b61170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906133c1565b60405180910390fd5b50505050565b606060405180608001604052806051815260200161372460519139905090565b60606000600161174284611b1e565b01905060008167ffffffffffffffff81111561176157611760612871565b5b6040519080825280601f01601f1916602001820160405280156117935781602001600182028036833780820191505090505b509050600082602001820190505b6001156117f6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816117ea576117e96133e1565b5b049450600085036117a1575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118dc57506118db82611c71565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661190583611448565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61193084848484611cdb565b50505050565b50505050565b6119468383611e39565b6119536000848484611997565b611992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611989906133c1565b60405180910390fd5b505050565b60006119b88473ffffffffffffffffffffffffffffffffffffffff16612056565b15611b11578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e1610f39565b8786866040518563ffffffff1660e01b8152600401611a039493929190613465565b6020604051808303816000875af1925050508015611a3f57506040513d601f19601f82011682018060405250810190611a3c91906134c6565b60015b611ac1573d8060008114611a6f576040519150601f19603f3d011682016040523d82523d6000602084013e611a74565b606091505b506000815103611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab0906133c1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b16565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611b7c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611b7257611b716133e1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611bb9576d04ee2d6d415b85acef81000000008381611baf57611bae6133e1565b5b0492506020810190505b662386f26fc100008310611be857662386f26fc100008381611bde57611bdd6133e1565b5b0492506010810190505b6305f5e1008310611c11576305f5e1008381611c0757611c066133e1565b5b0492506008810190505b6127108310611c36576127108381611c2c57611c2b6133e1565b5b0492506004810190505b60648310611c595760648381611c4f57611c4e6133e1565b5b0492506002810190505b600a8310611c68576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ce784848484612079565b6001811115611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613565565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d7257611d6d8161219f565b611db1565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611db057611daf85826121e8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df357611dee81612355565b611e32565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611e3157611e308482612426565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9f906135d1565b60405180910390fd5b611eb1816118e3565b15611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee89061363d565b60405180910390fd5b611eff600083836001611924565b611f08816118e3565b15611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f9061363d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612052600083836001611936565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600181111561219957600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461210d5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612105919061368c565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121985780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219091906136c0565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016121f584610af0565b6121ff919061368c565b90506000600760008481526020019081526020016000205490508181146122e4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612369919061368c565b905060006009600084815260200190815260200160002054905060006008838154811061239957612398612edd565b5b9060005260206000200154905080600883815481106123bb576123ba612edd565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061240a576124096136f4565b5b6001900381819060005260206000200160009055905550505050565b600061243183610af0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ee816124b9565b81146124f957600080fd5b50565b60008135905061250b816124e5565b92915050565b600060208284031215612527576125266124af565b5b6000612535848285016124fc565b91505092915050565b60008115159050919050565b6125538161253e565b82525050565b600060208201905061256e600083018461254a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125ae578082015181840152602081019050612593565b60008484015250505050565b6000601f19601f8301169050919050565b60006125d682612574565b6125e0818561257f565b93506125f0818560208601612590565b6125f9816125ba565b840191505092915050565b6000602082019050818103600083015261261e81846125cb565b905092915050565b6000819050919050565b61263981612626565b811461264457600080fd5b50565b60008135905061265681612630565b92915050565b600060208284031215612672576126716124af565b5b600061268084828501612647565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126b482612689565b9050919050565b6126c4816126a9565b82525050565b60006020820190506126df60008301846126bb565b92915050565b6126ee816126a9565b81146126f957600080fd5b50565b60008135905061270b816126e5565b92915050565b60008060408385031215612728576127276124af565b5b6000612736858286016126fc565b925050602061274785828601612647565b9150509250929050565b61275a81612626565b82525050565b60006020820190506127756000830184612751565b92915050565b600080600060608486031215612794576127936124af565b5b60006127a2868287016126fc565b93505060206127b3868287016126fc565b92505060406127c486828701612647565b9150509250925092565b6000602082840312156127e4576127e36124af565b5b60006127f2848285016126fc565b91505092915050565b6128048161253e565b811461280f57600080fd5b50565b600081359050612821816127fb565b92915050565b6000806040838503121561283e5761283d6124af565b5b600061284c858286016126fc565b925050602061285d85828601612812565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128a9826125ba565b810181811067ffffffffffffffff821117156128c8576128c7612871565b5b80604052505050565b60006128db6124a5565b90506128e782826128a0565b919050565b600067ffffffffffffffff82111561290757612906612871565b5b612910826125ba565b9050602081019050919050565b82818337600083830152505050565b600061293f61293a846128ec565b6128d1565b90508281526020810184848401111561295b5761295a61286c565b5b61296684828561291d565b509392505050565b600082601f83011261298357612982612867565b5b813561299384826020860161292c565b91505092915050565b600080600080608085870312156129b6576129b56124af565b5b60006129c4878288016126fc565b94505060206129d5878288016126fc565b93505060406129e687828801612647565b925050606085013567ffffffffffffffff811115612a0757612a066124b4565b5b612a138782880161296e565b91505092959194509250565b60008060408385031215612a3657612a356124af565b5b6000612a44858286016126fc565b9250506020612a55858286016126fc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aa657607f821691505b602082108103612ab957612ab8612a5f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b1b60218361257f565b9150612b2682612abf565b604082019050919050565b60006020820190508181036000830152612b4a81612b0e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612bad603d8361257f565b9150612bb882612b51565b604082019050919050565b60006020820190508181036000830152612bdc81612ba0565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612c3f602d8361257f565b9150612c4a82612be3565b604082019050919050565b60006020820190508181036000830152612c6e81612c32565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612cd1602b8361257f565b9150612cdc82612c75565b604082019050919050565b60006020820190508181036000830152612d0081612cc4565b9050919050565b7f42616c616e636520697320300000000000000000000000000000000000000000600082015250565b6000612d3d600c8361257f565b9150612d4882612d07565b602082019050919050565b60006020820190508181036000830152612d6c81612d30565b9050919050565b7f43616e2774206d696e74206d6f72652e00000000000000000000000000000000600082015250565b6000612da960108361257f565b9150612db482612d73565b602082019050919050565b60006020820190508181036000830152612dd881612d9c565b9050919050565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b6000612e1560168361257f565b9150612e2082612ddf565b602082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612ea7602c8361257f565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f4260188361257f565b9150612f4d82612f0c565b602082019050919050565b60006020820190508181036000830152612f7181612f35565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fd460298361257f565b9150612fdf82612f78565b604082019050919050565b6000602082019050818103600083015261300381612fc7565b9050919050565b600081905092915050565b600061302082612574565b61302a818561300a565b935061303a818560208601612590565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061307c60058361300a565b915061308782613046565b600582019050919050565b600061309e8285613015565b91506130aa8284613015565b91506130b58261306f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061311d60268361257f565b9150613128826130c1565b604082019050919050565b6000602082019050818103600083015261314c81613110565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131af60258361257f565b91506131ba82613153565b604082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061324160248361257f565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132ad60208361257f565b91506132b882613277565b602082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061331960198361257f565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133ab60328361257f565b91506133b68261334f565b604082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061343782613410565b613441818561341b565b9350613451818560208601612590565b61345a816125ba565b840191505092915050565b600060808201905061347a60008301876126bb565b61348760208301866126bb565b6134946040830185612751565b81810360608301526134a6818461342c565b905095945050505050565b6000815190506134c0816124e5565b92915050565b6000602082840312156134dc576134db6124af565b5b60006134ea848285016134b1565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061354f60358361257f565b915061355a826134f3565b604082019050919050565b6000602082019050818103600083015261357e81613542565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135bb60208361257f565b91506135c682613585565b602082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613627601c8361257f565b9150613632826135f1565b602082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061369782612626565b91506136a283612626565b92508282039050818111156136ba576136b961365d565b5b92915050565b60006136cb82612626565b91506136d683612626565b92508282019050808211156136ee576136ed61365d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59595639614e747335526e576d56664a6851467847786a5643596552534c64444776347876584379514676512fa2646970667358221220616511e4c019a9f7d850450cd1f40e0c1a3c3190896b3d31112d7a27c72e512d64736f6c63430008110033

Deployed Bytecode Sourcemap

64047:1800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65459:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43607:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43125:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58679:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44307:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58347:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64248:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65679:165;;;;;;;;;;;;;:::i;:::-;;64828:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44713:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58869:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41805:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41536:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19470:103;;;;;;;;;;;;;:::i;:::-;;18822:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42264:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43850:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44969:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64523:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64206:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44076:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19728:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65459:212;65598:4;65627:36;65651:11;65627:23;:36::i;:::-;65620:43;;65459:212;;;:::o;42095:100::-;42149:13;42182:5;42175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42095:100;:::o;43607:171::-;43683:7;43703:23;43718:7;43703:14;:23::i;:::-;43746:15;:24;43762:7;43746:24;;;;;;;;;;;;;;;;;;;;;43739:31;;43607:171;;;:::o;43125:416::-;43206:13;43222:23;43237:7;43222:14;:23::i;:::-;43206:39;;43270:5;43264:11;;:2;:11;;;43256:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43364:5;43348:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43373:37;43390:5;43397:12;:10;:12::i;:::-;43373:16;:37::i;:::-;43348:62;43326:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43512:21;43521:2;43525:7;43512:8;:21::i;:::-;43195:346;43125:416;;:::o;58679:113::-;58740:7;58767:10;:17;;;;58760:24;;58679:113;:::o;44307:335::-;44502:41;44521:12;:10;:12::i;:::-;44535:7;44502:18;:41::i;:::-;44494:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44606:28;44616:4;44622:2;44626:7;44606:9;:28::i;:::-;44307:335;;;:::o;58347:256::-;58444:7;58480:23;58497:5;58480:16;:23::i;:::-;58472:5;:31;58464:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;58569:12;:19;58582:5;58569:19;;;;;;;;;;;;;;;:26;58589:5;58569:26;;;;;;;;;;;;58562:33;;58347:256;;;;:::o;64248:27::-;;;;:::o;65679:165::-;18708:13;:11;:13::i;:::-;65759:1:::1;65735:21;:25;65727:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;65796:7;:5;:7::i;:::-;65788:25;;:48;65814:21;65788:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65679:165::o:0;64828:311::-;64908:10;;64892:13;:11;:13::i;:::-;:26;64884:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;64971:8;;64958:9;:21;;64950:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;65017:15;65035:25;:15;:23;:25::i;:::-;65017:43;;65071:27;:15;:25;:27::i;:::-;65109:22;65119:2;65123:7;65109:9;:22::i;:::-;64873:266;64828:311;:::o;44713:185::-;44851:39;44868:4;44874:2;44878:7;44851:39;;;;;;;;;;;;:16;:39::i;:::-;44713:185;;;:::o;58869:233::-;58944:7;58980:30;:28;:30::i;:::-;58972:5;:38;58964:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;59077:10;59088:5;59077:17;;;;;;;;:::i;:::-;;;;;;;;;;59070:24;;58869:233;;;:::o;41805:223::-;41877:7;41897:13;41913:17;41922:7;41913:8;:17::i;:::-;41897:33;;41966:1;41949:19;;:5;:19;;;41941:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42015:5;42008:12;;;41805:223;;;:::o;41536:207::-;41608:7;41653:1;41636:19;;:5;:19;;;41628:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41719:9;:16;41729:5;41719:16;;;;;;;;;;;;;;;;41712:23;;41536:207;;;:::o;19470:103::-;18708:13;:11;:13::i;:::-;19535:30:::1;19562:1;19535:18;:30::i;:::-;19470:103::o:0;18822:87::-;18868:7;18895:6;;;;;;;;;;;18888:13;;18822:87;:::o;42264:104::-;42320:13;42353:7;42346:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42264:104;:::o;43850:155::-;43945:52;43964:12;:10;:12::i;:::-;43978:8;43988;43945:18;:52::i;:::-;43850:155;;:::o;44969:322::-;45143:41;45162:12;:10;:12::i;:::-;45176:7;45143:18;:41::i;:::-;45135:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45245:38;45259:4;45265:2;45269:7;45278:4;45245:13;:38::i;:::-;44969:322;;;;:::o;64523:297::-;64596:13;64622:23;64637:7;64622:14;:23::i;:::-;64658:21;64682:10;:8;:10::i;:::-;64658:34;;64734:1;64716:7;64710:21;:25;:102;;;;;;;;;;;;;;;;;64762:7;64771:25;64788:7;64771:16;:25::i;:::-;64745:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64710:102;64703:109;;;64523:297;;;:::o;64206:35::-;;;;:::o;44076:164::-;44173:4;44197:18;:25;44216:5;44197:25;;;;;;;;;;;;;;;:35;44223:8;44197:35;;;;;;;;;;;;;;;;;;;;;;;;;44190:42;;44076:164;;;;:::o;19728:201::-;18708:13;:11;:13::i;:::-;19837:1:::1;19817:22;;:8;:22;;::::0;19809:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19893:28;19912:8;19893:18;:28::i;:::-;19728:201:::0;:::o;58039:224::-;58141:4;58180:35;58165:50;;;:11;:50;;;;:90;;;;58219:36;58243:11;58219:23;:36::i;:::-;58165:90;58158:97;;58039:224;;;:::o;53426:135::-;53508:16;53516:7;53508;:16::i;:::-;53500:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53426:135;:::o;17367:98::-;17420:7;17447:10;17440:17;;17367:98;:::o;52705:174::-;52807:2;52780:15;:24;52796:7;52780:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52863:7;52859:2;52825:46;;52834:23;52849:7;52834:14;:23::i;:::-;52825:46;;;;;;;;;;;;52705:174;;:::o;47324:264::-;47417:4;47434:13;47450:23;47465:7;47450:14;:23::i;:::-;47434:39;;47503:5;47492:16;;:7;:16;;;:52;;;;47512:32;47529:5;47536:7;47512:16;:32::i;:::-;47492:52;:87;;;;47572:7;47548:31;;:20;47560:7;47548:11;:20::i;:::-;:31;;;47492:87;47484:96;;;47324:264;;;;:::o;51323:1263::-;51482:4;51455:31;;:23;51470:7;51455:14;:23::i;:::-;:31;;;51447:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51561:1;51547:16;;:2;:16;;;51539:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51617:42;51638:4;51644:2;51648:7;51657:1;51617:20;:42::i;:::-;51789:4;51762:31;;:23;51777:7;51762:14;:23::i;:::-;:31;;;51754:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51907:15;:24;51923:7;51907:24;;;;;;;;;;;;51900:31;;;;;;;;;;;52402:1;52383:9;:15;52393:4;52383:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52435:1;52418:9;:13;52428:2;52418:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52477:2;52458:7;:16;52466:7;52458:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52516:7;52512:2;52497:27;;52506:4;52497:27;;;;;;;;;;;;52537:41;52557:4;52563:2;52567:7;52576:1;52537:19;:41::i;:::-;51323:1263;;;:::o;18987:132::-;19062:12;:10;:12::i;:::-;19051:23;;:7;:5;:7::i;:::-;:23;;;19043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18987:132::o;878:114::-;943:7;970;:14;;;963:21;;878:114;;;:::o;1000:127::-;1107:1;1089:7;:14;;;:19;;;;;;;;;;;1000:127;:::o;47930:110::-;48006:26;48016:2;48020:7;48006:26;;;;;;;;;;;;:9;:26::i;:::-;47930:110;;:::o;46599:117::-;46665:7;46692;:16;46700:7;46692:16;;;;;;;;;;;;;;;;;;;;;46685:23;;46599:117;;;:::o;20089:191::-;20163:16;20182:6;;;;;;;;;;;20163:25;;20208:8;20199:6;;:17;;;;;;;;;;;;;;;;;;20263:8;20232:40;;20253:8;20232:40;;;;;;;;;;;;20152:128;20089:191;:::o;53022:315::-;53177:8;53168:17;;:5;:17;;;53160:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53264:8;53226:18;:25;53245:5;53226:25;;;;;;;;;;;;;;;:35;53252:8;53226:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53310:8;53288:41;;53303:5;53288:41;;;53320:8;53288:41;;;;;;:::i;:::-;;;;;;;;53022:315;;;:::o;46172:313::-;46328:28;46338:4;46344:2;46348:7;46328:9;:28::i;:::-;46375:47;46398:4;46404:2;46408:7;46417:4;46375:22;:47::i;:::-;46367:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46172:313;;;;:::o;64339:176::-;64391:13;64417:90;;;;;;;;;;;;;;;;;;;64339:176;:::o;14788:716::-;14844:13;14895:14;14932:1;14912:17;14923:5;14912:10;:17::i;:::-;:21;14895:38;;14948:20;14982:6;14971:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14948:41;;15004:11;15133:6;15129:2;15125:15;15117:6;15113:28;15106:35;;15170:288;15177:4;15170:288;;;15202:5;;;;;;;;15344:8;15339:2;15332:5;15328:14;15323:30;15318:3;15310:44;15400:2;15391:11;;;;;;:::i;:::-;;;;;15434:1;15425:5;:10;15170:288;15421:21;15170:288;15479:6;15472:13;;;;;14788:716;;;:::o;41167:305::-;41269:4;41321:25;41306:40;;;:11;:40;;;;:105;;;;41378:33;41363:48;;;:11;:48;;;;41306:105;:158;;;;41428:36;41452:11;41428:23;:36::i;:::-;41306:158;41286:178;;41167:305;;;:::o;47029:128::-;47094:4;47147:1;47118:31;;:17;47127:7;47118:8;:17::i;:::-;:31;;;;47111:38;;47029:128;;;:::o;65217:234::-;65387:56;65414:4;65420:2;65424:7;65433:9;65387:26;:56::i;:::-;65217:234;;;;:::o;56842:158::-;;;;;:::o;48267:319::-;48396:18;48402:2;48406:7;48396:5;:18::i;:::-;48447:53;48478:1;48482:2;48486:7;48495:4;48447:22;:53::i;:::-;48425:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:319;;;:::o;54125:853::-;54279:4;54300:15;:2;:13;;;:15::i;:::-;54296:675;;;54352:2;54336:36;;;54373:12;:10;:12::i;:::-;54387:4;54393:7;54402:4;54336:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54332:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54594:1;54577:6;:13;:18;54573:328;;54620:60;;;;;;;;;;:::i;:::-;;;;;;;;54573:328;54851:6;54845:13;54836:6;54832:2;54828:15;54821:38;54332:584;54468:41;;;54458:51;;;:6;:51;;;;54451:58;;;;;54296:675;54955:4;54948:11;;54125:853;;;;;;;:::o;11648:922::-;11701:7;11721:14;11738:1;11721:18;;11788:6;11779:5;:15;11775:102;;11824:6;11815:15;;;;;;:::i;:::-;;;;;11859:2;11849:12;;;;11775:102;11904:6;11895:5;:15;11891:102;;11940:6;11931:15;;;;;;:::i;:::-;;;;;11975:2;11965:12;;;;11891:102;12020:6;12011:5;:15;12007:102;;12056:6;12047:15;;;;;;:::i;:::-;;;;;12091:2;12081:12;;;;12007:102;12136:5;12127;:14;12123:99;;12171:5;12162:14;;;;;;:::i;:::-;;;;;12205:1;12195:11;;;;12123:99;12249:5;12240;:14;12236:99;;12284:5;12275:14;;;;;;:::i;:::-;;;;;12318:1;12308:11;;;;12236:99;12362:5;12353;:14;12349:99;;12397:5;12388:14;;;;;;:::i;:::-;;;;;12431:1;12421:11;;;;12349:99;12475:5;12466;:14;12462:66;;12511:1;12501:11;;;;12462:66;12556:6;12549:13;;;11648:922;;;:::o;32575:157::-;32660:4;32699:25;32684:40;;;:11;:40;;;;32677:47;;32575:157;;;:::o;59176:915::-;59353:61;59380:4;59386:2;59390:12;59404:9;59353:26;:61::i;:::-;59443:1;59431:9;:13;59427:222;;;59574:63;;;;;;;;;;:::i;:::-;;;;;;;;59427:222;59661:15;59679:12;59661:30;;59724:1;59708:18;;:4;:18;;;59704:187;;59743:40;59775:7;59743:31;:40::i;:::-;59704:187;;;59813:2;59805:10;;:4;:10;;;59801:90;;59832:47;59865:4;59871:7;59832:32;:47::i;:::-;59801:90;59704:187;59919:1;59905:16;;:2;:16;;;59901:183;;59938:45;59975:7;59938:36;:45::i;:::-;59901:183;;;60011:4;60005:10;;:2;:10;;;60001:83;;60032:40;60060:2;60064:7;60032:27;:40::i;:::-;60001:83;59901:183;59342:749;59176:915;;;;:::o;48922:942::-;49016:1;49002:16;;:2;:16;;;48994:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49075:16;49083:7;49075;:16::i;:::-;49074:17;49066:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49137:48;49166:1;49170:2;49174:7;49183:1;49137:20;:48::i;:::-;49284:16;49292:7;49284;:16::i;:::-;49283:17;49275:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:1;49682:9;:13;49692:2;49682:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49743:2;49724:7;:16;49732:7;49724:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49788:7;49784:2;49763:33;;49780:1;49763:33;;;;;;;;;;;;49809:47;49837:1;49841:2;49845:7;49854:1;49809:19;:47::i;:::-;48922:942;;:::o;21526:326::-;21586:4;21843:1;21821:7;:19;;;:23;21814:30;;21526:326;;;:::o;55710:410::-;55900:1;55888:9;:13;55884:229;;;55938:1;55922:18;;:4;:18;;;55918:87;;55980:9;55961;:15;55971:4;55961:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;55918:87;56037:1;56023:16;;:2;:16;;;56019:83;;56077:9;56060;:13;56070:2;56060:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;56019:83;55884:229;55710:410;;;;:::o;60814:164::-;60918:10;:17;;;;60891:15;:24;60907:7;60891:24;;;;;;;;;;;:44;;;;60946:10;60962:7;60946:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60814:164;:::o;61605:988::-;61871:22;61921:1;61896:22;61913:4;61896:16;:22::i;:::-;:26;;;;:::i;:::-;61871:51;;61933:18;61954:17;:26;61972:7;61954:26;;;;;;;;;;;;61933:47;;62101:14;62087:10;:28;62083:328;;62132:19;62154:12;:18;62167:4;62154:18;;;;;;;;;;;;;;;:34;62173:14;62154:34;;;;;;;;;;;;62132:56;;62238:11;62205:12;:18;62218:4;62205:18;;;;;;;;;;;;;;;:30;62224:10;62205:30;;;;;;;;;;;:44;;;;62355:10;62322:17;:30;62340:11;62322:30;;;;;;;;;;;:43;;;;62117:294;62083:328;62507:17;:26;62525:7;62507:26;;;;;;;;;;;62500:33;;;62551:12;:18;62564:4;62551:18;;;;;;;;;;;;;;;:34;62570:14;62551:34;;;;;;;;;;;62544:41;;;61686:907;;61605:988;;:::o;62888:1079::-;63141:22;63186:1;63166:10;:17;;;;:21;;;;:::i;:::-;63141:46;;63198:18;63219:15;:24;63235:7;63219:24;;;;;;;;;;;;63198:45;;63570:19;63592:10;63603:14;63592:26;;;;;;;;:::i;:::-;;;;;;;;;;63570:48;;63656:11;63631:10;63642;63631:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;63767:10;63736:15;:28;63752:11;63736:28;;;;;;;;;;;:41;;;;63908:15;:24;63924:7;63908:24;;;;;;;;;;;63901:31;;;63943:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62959:1008;;;62888:1079;:::o;60392:221::-;60477:14;60494:20;60511:2;60494:16;:20::i;:::-;60477:37;;60552:7;60525:12;:16;60538:2;60525:16;;;;;;;;;;;;;;;:24;60542:6;60525:24;;;;;;;;;;;:34;;;;60599:6;60570:17;:26;60588:7;60570:26;;;;;;;;;;;:35;;;;60466:147;60392:221;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:474::-;10059:6;10067;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10369:2;10395:53;10440:7;10431:6;10420:9;10416:22;10395:53;:::i;:::-;10385:63;;10340:118;9991:474;;;;;:::o;10471:180::-;10519:77;10516:1;10509:88;10616:4;10613:1;10606:15;10640:4;10637:1;10630:15;10657:320;10701:6;10738:1;10732:4;10728:12;10718:22;;10785:1;10779:4;10775:12;10806:18;10796:81;;10862:4;10854:6;10850:17;10840:27;;10796:81;10924:2;10916:6;10913:14;10893:18;10890:38;10887:84;;10943:18;;:::i;:::-;10887:84;10708:269;10657:320;;;:::o;10983:220::-;11123:34;11119:1;11111:6;11107:14;11100:58;11192:3;11187:2;11179:6;11175:15;11168:28;10983:220;:::o;11209:366::-;11351:3;11372:67;11436:2;11431:3;11372:67;:::i;:::-;11365:74;;11448:93;11537:3;11448:93;:::i;:::-;11566:2;11561:3;11557:12;11550:19;;11209:366;;;:::o;11581:419::-;11747:4;11785:2;11774:9;11770:18;11762:26;;11834:9;11828:4;11824:20;11820:1;11809:9;11805:17;11798:47;11862:131;11988:4;11862:131;:::i;:::-;11854:139;;11581:419;;;:::o;12006:248::-;12146:34;12142:1;12134:6;12130:14;12123:58;12215:31;12210:2;12202:6;12198:15;12191:56;12006:248;:::o;12260:366::-;12402:3;12423:67;12487:2;12482:3;12423:67;:::i;:::-;12416:74;;12499:93;12588:3;12499:93;:::i;:::-;12617:2;12612:3;12608:12;12601:19;;12260:366;;;:::o;12632:419::-;12798:4;12836:2;12825:9;12821:18;12813:26;;12885:9;12879:4;12875:20;12871:1;12860:9;12856:17;12849:47;12913:131;13039:4;12913:131;:::i;:::-;12905:139;;12632:419;;;:::o;13057:232::-;13197:34;13193:1;13185:6;13181:14;13174:58;13266:15;13261:2;13253:6;13249:15;13242:40;13057:232;:::o;13295:366::-;13437:3;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13534:93;13623:3;13534:93;:::i;:::-;13652:2;13647:3;13643:12;13636:19;;13295:366;;;:::o;13667:419::-;13833:4;13871:2;13860:9;13856:18;13848:26;;13920:9;13914:4;13910:20;13906:1;13895:9;13891:17;13884:47;13948:131;14074:4;13948:131;:::i;:::-;13940:139;;13667:419;;;:::o;14092:230::-;14232:34;14228:1;14220:6;14216:14;14209:58;14301:13;14296:2;14288:6;14284:15;14277:38;14092:230;:::o;14328:366::-;14470:3;14491:67;14555:2;14550:3;14491:67;:::i;:::-;14484:74;;14567:93;14656:3;14567:93;:::i;:::-;14685:2;14680:3;14676:12;14669:19;;14328:366;;;:::o;14700:419::-;14866:4;14904:2;14893:9;14889:18;14881:26;;14953:9;14947:4;14943:20;14939:1;14928:9;14924:17;14917:47;14981:131;15107:4;14981:131;:::i;:::-;14973:139;;14700:419;;;:::o;15125:162::-;15265:14;15261:1;15253:6;15249:14;15242:38;15125:162;:::o;15293:366::-;15435:3;15456:67;15520:2;15515:3;15456:67;:::i;:::-;15449:74;;15532:93;15621:3;15532:93;:::i;:::-;15650:2;15645:3;15641:12;15634:19;;15293:366;;;:::o;15665:419::-;15831:4;15869:2;15858:9;15854:18;15846:26;;15918:9;15912:4;15908:20;15904:1;15893:9;15889:17;15882:47;15946:131;16072:4;15946:131;:::i;:::-;15938:139;;15665:419;;;:::o;16090:166::-;16230:18;16226:1;16218:6;16214:14;16207:42;16090:166;:::o;16262:366::-;16404:3;16425:67;16489:2;16484:3;16425:67;:::i;:::-;16418:74;;16501:93;16590:3;16501:93;:::i;:::-;16619:2;16614:3;16610:12;16603:19;;16262:366;;;:::o;16634:419::-;16800:4;16838:2;16827:9;16823:18;16815:26;;16887:9;16881:4;16877:20;16873:1;16862:9;16858:17;16851:47;16915:131;17041:4;16915:131;:::i;:::-;16907:139;;16634:419;;;:::o;17059:172::-;17199:24;17195:1;17187:6;17183:14;17176:48;17059:172;:::o;17237:366::-;17379:3;17400:67;17464:2;17459:3;17400:67;:::i;:::-;17393:74;;17476:93;17565:3;17476:93;:::i;:::-;17594:2;17589:3;17585:12;17578:19;;17237:366;;;:::o;17609:419::-;17775:4;17813:2;17802:9;17798:18;17790:26;;17862:9;17856:4;17852:20;17848:1;17837:9;17833:17;17826:47;17890:131;18016:4;17890:131;:::i;:::-;17882:139;;17609:419;;;:::o;18034:231::-;18174:34;18170:1;18162:6;18158:14;18151:58;18243:14;18238:2;18230:6;18226:15;18219:39;18034:231;:::o;18271:366::-;18413:3;18434:67;18498:2;18493:3;18434:67;:::i;:::-;18427:74;;18510:93;18599:3;18510:93;:::i;:::-;18628:2;18623:3;18619:12;18612:19;;18271:366;;;:::o;18643:419::-;18809:4;18847:2;18836:9;18832:18;18824:26;;18896:9;18890:4;18886:20;18882:1;18871:9;18867:17;18860:47;18924:131;19050:4;18924:131;:::i;:::-;18916:139;;18643:419;;;:::o;19068:180::-;19116:77;19113:1;19106:88;19213:4;19210:1;19203:15;19237:4;19234:1;19227:15;19254:174;19394:26;19390:1;19382:6;19378:14;19371:50;19254:174;:::o;19434:366::-;19576:3;19597:67;19661:2;19656:3;19597:67;:::i;:::-;19590:74;;19673:93;19762:3;19673:93;:::i;:::-;19791:2;19786:3;19782:12;19775:19;;19434:366;;;:::o;19806:419::-;19972:4;20010:2;19999:9;19995:18;19987:26;;20059:9;20053:4;20049:20;20045:1;20034:9;20030:17;20023:47;20087:131;20213:4;20087:131;:::i;:::-;20079:139;;19806:419;;;:::o;20231:228::-;20371:34;20367:1;20359:6;20355:14;20348:58;20440:11;20435:2;20427:6;20423:15;20416:36;20231:228;:::o;20465:366::-;20607:3;20628:67;20692:2;20687:3;20628:67;:::i;:::-;20621:74;;20704:93;20793:3;20704:93;:::i;:::-;20822:2;20817:3;20813:12;20806:19;;20465:366;;;:::o;20837:419::-;21003:4;21041:2;21030:9;21026:18;21018:26;;21090:9;21084:4;21080:20;21076:1;21065:9;21061:17;21054:47;21118:131;21244:4;21118:131;:::i;:::-;21110:139;;20837:419;;;:::o;21262:148::-;21364:11;21401:3;21386:18;;21262:148;;;;:::o;21416:390::-;21522:3;21550:39;21583:5;21550:39;:::i;:::-;21605:89;21687:6;21682:3;21605:89;:::i;:::-;21598:96;;21703:65;21761:6;21756:3;21749:4;21742:5;21738:16;21703:65;:::i;:::-;21793:6;21788:3;21784:16;21777:23;;21526:280;21416:390;;;;:::o;21812:155::-;21952:7;21948:1;21940:6;21936:14;21929:31;21812:155;:::o;21973:400::-;22133:3;22154:84;22236:1;22231:3;22154:84;:::i;:::-;22147:91;;22247:93;22336:3;22247:93;:::i;:::-;22365:1;22360:3;22356:11;22349:18;;21973:400;;;:::o;22379:701::-;22660:3;22682:95;22773:3;22764:6;22682:95;:::i;:::-;22675:102;;22794:95;22885:3;22876:6;22794:95;:::i;:::-;22787:102;;22906:148;23050:3;22906:148;:::i;:::-;22899:155;;23071:3;23064:10;;22379:701;;;;;:::o;23086:225::-;23226:34;23222:1;23214:6;23210:14;23203:58;23295:8;23290:2;23282:6;23278:15;23271:33;23086:225;:::o;23317:366::-;23459:3;23480:67;23544:2;23539:3;23480:67;:::i;:::-;23473:74;;23556:93;23645:3;23556:93;:::i;:::-;23674:2;23669:3;23665:12;23658:19;;23317:366;;;:::o;23689:419::-;23855:4;23893:2;23882:9;23878:18;23870:26;;23942:9;23936:4;23932:20;23928:1;23917:9;23913:17;23906:47;23970:131;24096:4;23970:131;:::i;:::-;23962:139;;23689:419;;;:::o;24114:224::-;24254:34;24250:1;24242:6;24238:14;24231:58;24323:7;24318:2;24310:6;24306:15;24299:32;24114:224;:::o;24344:366::-;24486:3;24507:67;24571:2;24566:3;24507:67;:::i;:::-;24500:74;;24583:93;24672:3;24583:93;:::i;:::-;24701:2;24696:3;24692:12;24685:19;;24344:366;;;:::o;24716:419::-;24882:4;24920:2;24909:9;24905:18;24897:26;;24969:9;24963:4;24959:20;24955:1;24944:9;24940:17;24933:47;24997:131;25123:4;24997:131;:::i;:::-;24989:139;;24716:419;;;:::o;25141:223::-;25281:34;25277:1;25269:6;25265:14;25258:58;25350:6;25345:2;25337:6;25333:15;25326:31;25141:223;:::o;25370:366::-;25512:3;25533:67;25597:2;25592:3;25533:67;:::i;:::-;25526:74;;25609:93;25698:3;25609:93;:::i;:::-;25727:2;25722:3;25718:12;25711:19;;25370:366;;;:::o;25742:419::-;25908:4;25946:2;25935:9;25931:18;25923:26;;25995:9;25989:4;25985:20;25981:1;25970:9;25966:17;25959:47;26023:131;26149:4;26023:131;:::i;:::-;26015:139;;25742:419;;;:::o;26167:182::-;26307:34;26303:1;26295:6;26291:14;26284:58;26167:182;:::o;26355:366::-;26497:3;26518:67;26582:2;26577:3;26518:67;:::i;:::-;26511:74;;26594:93;26683:3;26594:93;:::i;:::-;26712:2;26707:3;26703:12;26696:19;;26355:366;;;:::o;26727:419::-;26893:4;26931:2;26920:9;26916:18;26908:26;;26980:9;26974:4;26970:20;26966:1;26955:9;26951:17;26944:47;27008:131;27134:4;27008:131;:::i;:::-;27000:139;;26727:419;;;:::o;27152:175::-;27292:27;27288:1;27280:6;27276:14;27269:51;27152:175;:::o;27333:366::-;27475:3;27496:67;27560:2;27555:3;27496:67;:::i;:::-;27489:74;;27572:93;27661:3;27572:93;:::i;:::-;27690:2;27685:3;27681:12;27674:19;;27333:366;;;:::o;27705:419::-;27871:4;27909:2;27898:9;27894:18;27886:26;;27958:9;27952:4;27948:20;27944:1;27933:9;27929:17;27922:47;27986:131;28112:4;27986:131;:::i;:::-;27978:139;;27705:419;;;:::o;28130:237::-;28270:34;28266:1;28258:6;28254:14;28247:58;28339:20;28334:2;28326:6;28322:15;28315:45;28130:237;:::o;28373:366::-;28515:3;28536:67;28600:2;28595:3;28536:67;:::i;:::-;28529:74;;28612:93;28701:3;28612:93;:::i;:::-;28730:2;28725:3;28721:12;28714:19;;28373:366;;;:::o;28745:419::-;28911:4;28949:2;28938:9;28934:18;28926:26;;28998:9;28992:4;28988:20;28984:1;28973:9;28969:17;28962:47;29026:131;29152:4;29026:131;:::i;:::-;29018:139;;28745:419;;;:::o;29170:180::-;29218:77;29215:1;29208:88;29315:4;29312:1;29305:15;29339:4;29336:1;29329:15;29356:98;29407:6;29441:5;29435:12;29425:22;;29356:98;;;:::o;29460:168::-;29543:11;29577:6;29572:3;29565:19;29617:4;29612:3;29608:14;29593:29;;29460:168;;;;:::o;29634:373::-;29720:3;29748:38;29780:5;29748:38;:::i;:::-;29802:70;29865:6;29860:3;29802:70;:::i;:::-;29795:77;;29881:65;29939:6;29934:3;29927:4;29920:5;29916:16;29881:65;:::i;:::-;29971:29;29993:6;29971:29;:::i;:::-;29966:3;29962:39;29955:46;;29724:283;29634:373;;;;:::o;30013:640::-;30208:4;30246:3;30235:9;30231:19;30223:27;;30260:71;30328:1;30317:9;30313:17;30304:6;30260:71;:::i;:::-;30341:72;30409:2;30398:9;30394:18;30385:6;30341:72;:::i;:::-;30423;30491:2;30480:9;30476:18;30467:6;30423:72;:::i;:::-;30542:9;30536:4;30532:20;30527:2;30516:9;30512:18;30505:48;30570:76;30641:4;30632:6;30570:76;:::i;:::-;30562:84;;30013:640;;;;;;;:::o;30659:141::-;30715:5;30746:6;30740:13;30731:22;;30762:32;30788:5;30762:32;:::i;:::-;30659:141;;;;:::o;30806:349::-;30875:6;30924:2;30912:9;30903:7;30899:23;30895:32;30892:119;;;30930:79;;:::i;:::-;30892:119;31050:1;31075:63;31130:7;31121:6;31110:9;31106:22;31075:63;:::i;:::-;31065:73;;31021:127;30806:349;;;;:::o;31161:240::-;31301:34;31297:1;31289:6;31285:14;31278:58;31370:23;31365:2;31357:6;31353:15;31346:48;31161:240;:::o;31407:366::-;31549:3;31570:67;31634:2;31629:3;31570:67;:::i;:::-;31563:74;;31646:93;31735:3;31646:93;:::i;:::-;31764:2;31759:3;31755:12;31748:19;;31407:366;;;:::o;31779:419::-;31945:4;31983:2;31972:9;31968:18;31960:26;;32032:9;32026:4;32022:20;32018:1;32007:9;32003:17;31996:47;32060:131;32186:4;32060:131;:::i;:::-;32052:139;;31779:419;;;:::o;32204:182::-;32344:34;32340:1;32332:6;32328:14;32321:58;32204:182;:::o;32392:366::-;32534:3;32555:67;32619:2;32614:3;32555:67;:::i;:::-;32548:74;;32631:93;32720:3;32631:93;:::i;:::-;32749:2;32744:3;32740:12;32733:19;;32392:366;;;:::o;32764:419::-;32930:4;32968:2;32957:9;32953:18;32945:26;;33017:9;33011:4;33007:20;33003:1;32992:9;32988:17;32981:47;33045:131;33171:4;33045:131;:::i;:::-;33037:139;;32764:419;;;:::o;33189:178::-;33329:30;33325:1;33317:6;33313:14;33306:54;33189:178;:::o;33373:366::-;33515:3;33536:67;33600:2;33595:3;33536:67;:::i;:::-;33529:74;;33612:93;33701:3;33612:93;:::i;:::-;33730:2;33725:3;33721:12;33714:19;;33373:366;;;:::o;33745:419::-;33911:4;33949:2;33938:9;33934:18;33926:26;;33998:9;33992:4;33988:20;33984:1;33973:9;33969:17;33962:47;34026:131;34152:4;34026:131;:::i;:::-;34018:139;;33745:419;;;:::o;34170:180::-;34218:77;34215:1;34208:88;34315:4;34312:1;34305:15;34339:4;34336:1;34329:15;34356:194;34396:4;34416:20;34434:1;34416:20;:::i;:::-;34411:25;;34450:20;34468:1;34450:20;:::i;:::-;34445:25;;34494:1;34491;34487:9;34479:17;;34518:1;34512:4;34509:11;34506:37;;;34523:18;;:::i;:::-;34506:37;34356:194;;;;:::o;34556:191::-;34596:3;34615:20;34633:1;34615:20;:::i;:::-;34610:25;;34649:20;34667:1;34649:20;:::i;:::-;34644:25;;34692:1;34689;34685:9;34678:16;;34713:3;34710:1;34707:10;34704:36;;;34720:18;;:::i;:::-;34704:36;34556:191;;;;:::o;34753:180::-;34801:77;34798:1;34791:88;34898:4;34895:1;34888:15;34922:4;34919:1;34912:15

Swarm Source

ipfs://616511e4c019a9f7d850450cd1f40e0c1a3c3190896b3d31112d7a27c72e512d
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.