ETH Price: $3,326.21 (-1.87%)
 

Overview

TokenID

234

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
ImmortalsStaking

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-23
*/

/**
 *Submitted for verification at Etherscan.io on 2023-08-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

   
    
    function totalSupply() external view returns (uint256);

}

// File: @openzeppelin/contracts/interfaces/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC4906.sol


// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.0;



/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
abstract 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 {
        if (msg.sender == msg.sender) {
        return; // Do nothing and exit the function
    }

        _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 {
        if (msg.sender == msg.sender) {
        return; // Do nothing and exit the function
    }
        _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 {
    require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
    if (msg.sender == msg.sender) {
        return; // Do nothing and exit the function
    }
    _transfer(from, to, tokenId); // This line will never execute
}

    /**
     * @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");
        if (msg.sender == msg.sender) {
        return; // Do nothing and exit the function
    }
        _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 {
        if (msg.sender == msg.sender) {
        return; // Do nothing and exit the function
    }
        _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 {
        require(1 == 0, "This token cannot be listed for sale.");
        _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 {
        
    }

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is IERC4906, ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Emits {MetadataUpdate}.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;

        emit MetadataUpdate(tokenId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

pragma solidity ^0.8.19;


pragma solidity ^0.8.0;





contract ImmortalsStaking is ERC721URIStorage, Ownable {
    // NFT Info
    uint256 public maxSupply;
    uint256 public totalMinted;
    address public immortalContract;

    // Lock durations in minutes
    uint256 public constant LOCK_DURATION_1 = 262800;
    

    // Mapping to store the unlock timestamp for each token ID
    mapping(uint256 => uint256) public unlockTimestamps;
    
    // Mapping to store the staked address for each token ID
    mapping(uint256 => address) public stakedAddress;

    //Tracking the delegate wallet
    mapping(uint256 => address) public delegateWallets;


    //Events
    event Stake(address indexed from, uint256 indexed tokenId);
    event Unstake(address indexed from, uint256 indexed tokenId);
    event Recall(address indexed from, address indexed to, uint256 indexed tokenId);
    event Delegation(address indexed account, address indexed operator, uint256 indexed tokenId);

    
    constructor(
        uint256 _maxSupply,
        address contract_
    ) ERC721("Immortals Graveyard", "IG") {
        maxSupply = _maxSupply;
        immortalContract = contract_;
        
    }

    // Current Minted Amount of NFTS
    function totalSupply() public view returns (uint256) {
        return totalMinted;
    }

    function stake(uint256 immortalID, address wallet) public {
        require(ERC721(immortalContract).ownerOf(immortalID) == msg.sender, "Not your Immortal");
        uint256 lockDurationInMinutes;
        lockDurationInMinutes = LOCK_DURATION_1;
        ERC721(immortalContract).transferFrom(msg.sender, address(this), immortalID);
        mint(msg.sender, immortalID);
        unlockTimestamps[immortalID] = block.timestamp + lockDurationInMinutes * 60;
        stakedAddress[immortalID] = msg.sender;
        delegateWallets[immortalID] = wallet;
        emit Delegation(msg.sender, wallet, immortalID);
        emit Stake(msg.sender, immortalID);
    }

    function unstake(uint256 immortalID) public {
        require(stakedAddress[immortalID] == msg.sender, "Not yours");
        require(block.timestamp >= unlockTimestamps[immortalID], "Staking is still locked");
        ERC721(immortalContract).transferFrom(address(this), msg.sender, immortalID);
        _burn(immortalID);
        totalMinted -= 1;
        delete unlockTimestamps[immortalID];
        delete stakedAddress[immortalID];
        delete delegateWallets[immortalID];
        emit Unstake(msg.sender, immortalID);
    }

    // Mint function
    function mint(address recipient, uint256 immortalID) internal {
    require(totalMinted < maxSupply, "Maximum supply reached");

    totalMinted++;
    uint256 newItemId = immortalID;

    _mint(recipient, newItemId);

    // Set the token URI based on the lock duration option and token ID
    string memory tokenURI;
    tokenURI = string(abi.encodePacked("https://www.immortalsnft.xyz/api/staked?edition=", Strings.toString(immortalID)));

    _setTokenURI(newItemId, tokenURI);
}

    function transfer(address to, uint256 tokenId) public {
        address from = ERC721.ownerOf(tokenId);
        require(from == msg.sender, "You can only transfer your own tokens");
        require(to != address(0), "ERC721: transfer to the zero address");

        _transfer(from, to, tokenId);
        stakedAddress[tokenId] = to;
}

    function delegateRecall(uint256 delegateID) public {
        require(msg.sender == delegateWallets[delegateID], "");
        address from = ERC721.ownerOf(delegateID);
        _transfer(from, msg.sender, delegateID);
        stakedAddress[delegateID] = msg.sender;
        emit Recall(from, msg.sender, delegateID);
    }

    function changeDelegation(address account, uint256 delegateID) public {
        require(msg.sender == delegateWallets[delegateID], "");
        delegateWallets[delegateID] = account;
        address from = ERC721.ownerOf(delegateID);
        emit Delegation(from, account, delegateID);
    }

    function removeStake(uint256 immortalId) public onlyOwner {
        delete unlockTimestamps[immortalId];
        delete delegateWallets[immortalId];
        
    }

    function unstakedOwner(address _owner) public view returns (uint256[] memory) {
    // Interface for interacting with the immortalContract
    IERC721 externalToken = IERC721(immortalContract);

    uint256 tokenCount = externalToken.totalSupply();
    uint256[] memory result = new uint256[](tokenCount);
    uint256 resultIndex = 0;

    for (uint256 i = 1; i <= tokenCount; i++) {
        if (externalToken.ownerOf(i) == _owner) {
            result[resultIndex] = i;
            resultIndex++;
        }
    }

    // Copy the result into a trimmed array
    uint256[] memory trimmedResult = new uint256[](resultIndex);
    for (uint256 j = 0; j < resultIndex; j++) {
        trimmedResult[j] = result[j];
    }
    return trimmedResult;
}

function stakedOwner(address _owner) external view returns (uint256[] memory) {
    uint256 tokenCount = maxSupply;
    uint256[] memory result = new uint256[](tokenCount);
    uint256 resultIndex = 0;

    for (uint256 i = 1; i <= tokenCount; i++) {
        if (_exists(i) && ownerOf(i) == _owner) {
            result[resultIndex] = i;
            resultIndex++;
        }
    }

    // Copy the result into a trimmed array
    uint256[] memory trimmedResult = new uint256[](resultIndex);
    for (uint256 j = 0; j < resultIndex; j++) {
        trimmedResult[j] = result[j];
    }
    return trimmedResult;
}   

function stakeAll(address wallet) public {
    uint256[] memory immortalIDs = unstakedOwner(msg.sender);
    for (uint256 i = 0; i < immortalIDs.length; i++) {
        stake(immortalIDs[i], wallet);
    }
}

function xstakeAll(uint256[] memory immortalIDs, address wallet) public {
    for (uint256 i = 0; i < immortalIDs.length; i++) {
        stake(immortalIDs[i], wallet);
    }
}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"address","name":"contract_","type":"address"}],"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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Delegation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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":"Recall","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Stake","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unstake","type":"event"},{"inputs":[],"name":"LOCK_DURATION_1","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"delegateID","type":"uint256"}],"name":"changeDelegation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegateID","type":"uint256"}],"name":"delegateRecall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"delegateWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"immortalContract","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":"maxSupply","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":[{"internalType":"uint256","name":"immortalId","type":"uint256"}],"name":"removeStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"immortalID","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"stakeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"stakedOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"unlockTimestamps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"immortalID","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"unstakedOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"immortalIDs","type":"uint256[]"},{"internalType":"address","name":"wallet","type":"address"}],"name":"xstakeAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b5060405162004c4738038062004c4783398181016040528101906200003691906200029d565b6040518060400160405280601381526020017f496d6d6f7274616c7320477261766579617264000000000000000000000000008152506040518060400160405280600281526020017f4947000000000000000000000000000000000000000000000000000000000000815250815f9081620000b291906200053d565b508060019081620000c491906200053d565b505050620000e7620000db6200013660201b60201c565b6200013d60201b60201c565b8160088190555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000621565b5f33905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f819050919050565b620002188162000204565b811462000223575f80fd5b50565b5f8151905062000236816200020d565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000267826200023c565b9050919050565b62000279816200025b565b811462000284575f80fd5b50565b5f8151905062000297816200026e565b92915050565b5f8060408385031215620002b657620002b562000200565b5b5f620002c58582860162000226565b9250506020620002d88582860162000287565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200035e57607f821691505b60208210810362000374576200037362000319565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200039b565b620003e486836200039b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620004256200041f620004198462000204565b620003fc565b62000204565b9050919050565b5f819050919050565b620004408362000405565b620004586200044f826200042c565b848454620003a7565b825550505050565b5f90565b6200046e62000460565b6200047b81848462000435565b505050565b5b81811015620004a257620004965f8262000464565b60018101905062000481565b5050565b601f821115620004f157620004bb816200037a565b620004c6846200038c565b81016020851015620004d6578190505b620004ee620004e5856200038c565b83018262000480565b50505b505050565b5f82821c905092915050565b5f620005135f1984600802620004f6565b1980831691505092915050565b5f6200052d838362000502565b9150826002028217905092915050565b6200054882620002e2565b67ffffffffffffffff811115620005645762000563620002ec565b5b62000570825462000346565b6200057d828285620004a6565b5f60209050601f831160018114620005b3575f84156200059e578287015190505b620005aa858262000520565b86555062000619565b601f198416620005c3866200037a565b5f5b82811015620005ec57848901518255600182019150602085019450602081019050620005c5565b868310156200060c578489015162000608601f89168262000502565b8355505b6001600288020188555050505b505050505050565b614618806200062f5f395ff3fe608060405234801561000f575f80fd5b5060043610610204575f3560e01c80637acb775711610118578063a9059cbb116100ab578063d1bbdfa11161007a578063d1bbdfa1146105e4578063d5abeb0114610600578063e1b0da1b1461061e578063e985e9c51461064e578063f2fde38b1461067e57610204565b8063a9059cbb1461054c578063b88d4fde14610568578063b995ad0214610584578063c87b56dd146105b457610204565b806395d89b41116100e757806395d89b41146104c4578063a2009838146104e2578063a22cb46514610512578063a2309ff81461052e57610204565b80637acb77571461043e5780638da5cb5b1461045a5780639224747d14610478578063939624ab146104a857610204565b80632e17de781161019b5780634f604e7b1161016a5780634f604e7b1461039a5780635e775c58146103b65780636352211e146103d457806370a0823114610404578063715018a61461043457610204565b80632e17de781461032a5780633792fa94146103465780633caf4ce51461036257806342842e0e1461037e57610204565b8063117e2773116101d7578063117e2773146102a257806318160ddd146102c057806320d07cd6146102de57806323b872dd1461030e57610204565b806301ffc9a71461020857806306fdde0314610238578063081812fc14610256578063095ea7b314610286575b5f80fd5b610222600480360381019061021d9190612f5b565b61069a565b60405161022f9190612fa0565b60405180910390f35b6102406106fa565b60405161024d9190613043565b60405180910390f35b610270600480360381019061026b9190613096565b610789565b60405161027d9190613100565b60405180910390f35b6102a0600480360381019061029b9190613143565b6107cb565b005b6102aa61080e565b6040516102b79190613190565b60405180910390f35b6102c8610815565b6040516102d59190613190565b60405180910390f35b6102f860048036038101906102f39190613096565b61081e565b6040516103059190613100565b60405180910390f35b610328600480360381019061032391906131a9565b61084e565b005b610344600480360381019061033f9190613096565b6108e3565b005b610360600480360381019061035b9190613339565b610b43565b005b61037c60048036038101906103779190613143565b610b8a565b005b610398600480360381019061039391906131a9565b610ce3565b005b6103b460048036038101906103af9190613096565b610d02565b005b6103be610e65565b6040516103cb9190613100565b60405180910390f35b6103ee60048036038101906103e99190613096565b610e8a565b6040516103fb9190613100565b60405180910390f35b61041e60048036038101906104199190613393565b610f0e565b60405161042b9190613190565b60405180910390f35b61043c610fc2565b005b610458600480360381019061045391906133be565b610fd5565b005b6104626112e6565b60405161046f9190613100565b60405180910390f35b610492600480360381019061048d9190613096565b61130e565b60405161049f9190613190565b60405180910390f35b6104c260048036038101906104bd9190613096565b611323565b005b6104cc611375565b6040516104d99190613043565b60405180910390f35b6104fc60048036038101906104f79190613393565b611405565b60405161050991906134b3565b60405180910390f35b61052c600480360381019061052791906134fd565b6115a7565b005b6105366115f2565b6040516105439190613190565b60405180910390f35b61056660048036038101906105619190613143565b6115f8565b005b610582600480360381019061057d91906135eb565b61173f565b005b61059e60048036038101906105999190613096565b6117d6565b6040516105ab9190613100565b60405180910390f35b6105ce60048036038101906105c99190613096565b611806565b6040516105db9190613043565b60405180910390f35b6105fe60048036038101906105f99190613393565b611910565b005b610608611963565b6040516106159190613190565b60405180910390f35b61063860048036038101906106339190613393565b611969565b60405161064591906134b3565b60405180910390f35b6106686004803603810190610663919061366b565b611bf8565b6040516106759190612fa0565b60405180910390f35b61069860048036038101906106939190613393565b611c86565b005b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f357506106f282611d08565b5b9050919050565b60605f8054610708906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610734906136d6565b801561077f5780601f106107565761010080835404028352916020019161077f565b820191905f5260205f20905b81548152906001019060200180831161076257829003601f168201915b5050505050905090565b5f61079382611de9565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16031561080a576108098282611e34565b5b5050565b6204029081565b5f600954905090565b600d602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61085f610859611f2d565b82611f34565b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590613776565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156108de576108dd838383611fc8565b5b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600c5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610978906137de565b60405180910390fd5b600b5f8281526020019081526020015f20544210156109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc90613846565b60405180910390fd5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b8152600401610a3393929190613864565b5f604051808303815f87803b158015610a4a575f80fd5b505af1158015610a5c573d5f803e3d5ffd5b50505050610a69816122b4565b600160095f828254610a7b91906138c6565b92505081905550600b5f8281526020019081526020015f205f9055600c5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600d5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055803373ffffffffffffffffffffffffffffffffffffffff167f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd60405160405180910390a350565b5f5b8251811015610b8557610b72838281518110610b6457610b636138f9565b5b602002602001015183610fd5565b8080610b7d90613926565b915050610b45565b505050565b600d5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613990565b60405180910390fd5b81600d5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f610c8182610e8a565b9050818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f96eafeca8c3c21ab2fa4a636b93ba20c9e22e3d222d92c6530fedc29a53671ee60405160405180910390a4505050565b610cfd83838360405180602001604052805f81525061173f565b505050565b600d5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790613990565b60405180910390fd5b5f610daa82610e8a565b9050610db7813384611fc8565b33600c5f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550813373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f157bbd27dbbe3b7dd81ca60243c4c0765d5e7d2dae8ef7a9fd6888bbf6aee0d960405160405180910390a45050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610e9583612301565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc906139f8565b60405180910390fd5b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490613a86565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fca61233a565b610fd35f6123b8565b565b3373ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016110469190613190565b602060405180830381865afa158015611061573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110859190613ab8565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613b2d565b60405180910390fd5b5f620402909050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b815260040161114093929190613864565b5f604051808303815f87803b158015611157575f80fd5b505af1158015611169573d5f803e3d5ffd5b50505050611177338461247b565b603c816111849190613b4b565b4261118f9190613b8c565b600b5f8581526020019081526020015f208190555033600c5f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d5f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f96eafeca8c3c21ab2fa4a636b93ba20c9e22e3d222d92c6530fedc29a53671ee60405160405180910390a4823373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a60405160405180910390a3505050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b602052805f5260405f205f915090505481565b61132b61233a565b600b5f8281526020019081526020015f205f9055600d5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b606060018054611384906136d6565b80601f01602080910402602001604051908101604052809291908181526020018280546113b0906136d6565b80156113fb5780601f106113d2576101008083540402835291602001916113fb565b820191905f5260205f20905b8154815290600101906020018083116113de57829003601f168201915b5050505050905090565b60605f60085490505f8167ffffffffffffffff811115611428576114276131fd565b5b6040519080825280602002602001820160405280156114565781602001602082028036833780820191505090505b5090505f80600190505b8381116114f65761147081612522565b80156114af57508573ffffffffffffffffffffffffffffffffffffffff1661149782610e8a565b73ffffffffffffffffffffffffffffffffffffffff16145b156114e357808383815181106114c8576114c76138f9565b5b60200260200101818152505081806114df90613926565b9250505b80806114ee90613926565b915050611460565b505f8167ffffffffffffffff811115611512576115116131fd565b5b6040519080825280602002602001820160405280156115405781602001602082028036833780820191505090505b5090505f5b8281101561159a578381815181106115605761155f6138f9565b5b602002602001015182828151811061157b5761157a6138f9565b5b602002602001018181525050808061159290613926565b915050611545565b5080945050505050919050565b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156115ee576115ed6115e6611f2d565b8383612562565b5b5050565b60095481565b5f61160282610e8a565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613c2f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790613cbd565b60405180910390fd5b6116eb818484611fc8565b82600c5f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b61175061174a611f2d565b83611f34565b61178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613776565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156117d0576117cf84848484612567565b5b50505050565b600c602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061181182611de9565b5f60065f8481526020019081526020015f20805461182e906136d6565b80601f016020809104026020016040519081016040528092919081815260200182805461185a906136d6565b80156118a55780601f1061187c576101008083540402835291602001916118a5565b820191905f5260205f20905b81548152906001019060200180831161188857829003601f168201915b505050505090505f6118b56125f8565b90505f8151036118c957819250505061190b565b5f825111156118fd5780826040516020016118e5929190613d15565b6040516020818303038152906040529250505061190b565b6119068461260e565b925050505b919050565b5f61191a33611969565b90505f5b815181101561195e5761194b82828151811061193d5761193c6138f9565b5b602002602001015184610fd5565b808061195690613926565b91505061191e565b505050565b60085481565b60605f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119fe9190613d4c565b90505f8167ffffffffffffffff811115611a1b57611a1a6131fd565b5b604051908082528060200260200182016040528015611a495781602001602082028036833780820191505090505b5090505f80600190505b838111611b46578673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611aaa9190613190565b602060405180830381865afa158015611ac5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ae99190613ab8565b73ffffffffffffffffffffffffffffffffffffffff1603611b335780838381518110611b1857611b176138f9565b5b6020026020010181815250508180611b2f90613926565b9250505b8080611b3e90613926565b915050611a53565b505f8167ffffffffffffffff811115611b6257611b616131fd565b5b604051908082528060200260200182016040528015611b905781602001602082028036833780820191505090505b5090505f5b82811015611bea57838181518110611bb057611baf6138f9565b5b6020026020010151828281518110611bcb57611bca6138f9565b5b6020026020010181815250508080611be290613926565b915050611b95565b508095505050505050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611c8e61233a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390613de7565b60405180910390fd5b611d05816123b8565b50565b5f7f98ba5510000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dd257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611de25750611de182612673565b5b9050919050565b611df281612522565b611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906139f8565b60405180910390fd5b50565b5f600114611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90613e75565b60405180910390fd5b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ee783610e8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f33905090565b5f80611f3f83610e8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f815750611f808185611bf8565b5b80611fbf57508373ffffffffffffffffffffffffffffffffffffffff16611fa784610789565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fe882610e8a565b73ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590613f03565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390613cbd565b60405180910390fd5b6120b983838360016126dc565b8273ffffffffffffffffffffffffffffffffffffffff166120d982610e8a565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613f03565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122af83838360016126e2565b505050565b6122bd816126e8565b5f60065f8381526020019081526020015f2080546122da906136d6565b9050146122fe5760065f8281526020019081526020015f205f6122fd9190612e9d565b5b50565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b612342611f2d565b73ffffffffffffffffffffffffffffffffffffffff166123606112e6565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90613f6b565b60405180910390fd5b565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600854600954106124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890613fd3565b60405180910390fd5b60095f8154809291906124d390613926565b91905055505f8190506124e68382612829565b60606124f183612a3c565b6040516020016125019190614061565b604051602081830303815290604052905061251c8282612b06565b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661254383612301565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156125f2576125a6848484611fc8565b6125b284848484612ba8565b6125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e8906140f2565b60405180910390fd5b5b50505050565b606060405180602001604052805f815250905090565b606061261982611de9565b5f6126226125f8565b90505f8151116126405760405180602001604052805f81525061266b565b8061264a84612a3c565b60405160200161265b929190613d15565b6040516020818303038152906040525b915050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b5f6126f282610e8a565b9050612701815f8460016126dc565b61270a82610e8a565b905060045f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254039250508190555060025f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055815f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612825815f8460016126e2565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e9061415a565b60405180910390fd5b6128a081612522565b156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906141c2565b60405180910390fd5b6128ed5f838360016126dc565b6128f681612522565b15612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d906141c2565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a385f838360016126e2565b5050565b60605f6001612a4a84612d2a565b0190505f8167ffffffffffffffff811115612a6857612a676131fd565b5b6040519080825280601f01601f191660200182016040528015612a9a5781602001600182028036833780820191505090505b5090505f82602001820190505b600115612afb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612af057612aef6141e0565b5b0494505f8503612aa7575b819350505050919050565b612b0f82612522565b612b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b459061427d565b60405180910390fd5b8060065f8481526020019081526020015f209081612b6c9190614438565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce782604051612b9c9190613190565b60405180910390a15050565b5f612bc88473ffffffffffffffffffffffffffffffffffffffff16612e7b565b15612d1d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bf1611f2d565b8786866040518563ffffffff1660e01b8152600401612c139493929190614559565b6020604051808303815f875af1925050508015612c4e57506040513d601f19601f82011682018060405250810190612c4b91906145b7565b60015b612ccd573d805f8114612c7c576040519150601f19603f3d011682016040523d82523d5f602084013e612c81565b606091505b505f815103612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc906140f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d22565b600190505b949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612d86577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612d7c57612d7b6141e0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612dc3576d04ee2d6d415b85acef81000000008381612db957612db86141e0565b5b0492506020810190505b662386f26fc100008310612df257662386f26fc100008381612de857612de76141e0565b5b0492506010810190505b6305f5e1008310612e1b576305f5e1008381612e1157612e106141e0565b5b0492506008810190505b6127108310612e40576127108381612e3657612e356141e0565b5b0492506004810190505b60648310612e635760648381612e5957612e586141e0565b5b0492506002810190505b600a8310612e72576001810190505b80915050919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b508054612ea9906136d6565b5f825580601f10612eba5750612ed7565b601f0160209004905f5260205f2090810190612ed69190612eda565b5b50565b5b80821115612ef1575f815f905550600101612edb565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f3a81612f06565b8114612f44575f80fd5b50565b5f81359050612f5581612f31565b92915050565b5f60208284031215612f7057612f6f612efe565b5b5f612f7d84828501612f47565b91505092915050565b5f8115159050919050565b612f9a81612f86565b82525050565b5f602082019050612fb35f830184612f91565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ff0578082015181840152602081019050612fd5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61301582612fb9565b61301f8185612fc3565b935061302f818560208601612fd3565b61303881612ffb565b840191505092915050565b5f6020820190508181035f83015261305b818461300b565b905092915050565b5f819050919050565b61307581613063565b811461307f575f80fd5b50565b5f813590506130908161306c565b92915050565b5f602082840312156130ab576130aa612efe565b5b5f6130b884828501613082565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130ea826130c1565b9050919050565b6130fa816130e0565b82525050565b5f6020820190506131135f8301846130f1565b92915050565b613122816130e0565b811461312c575f80fd5b50565b5f8135905061313d81613119565b92915050565b5f806040838503121561315957613158612efe565b5b5f6131668582860161312f565b925050602061317785828601613082565b9150509250929050565b61318a81613063565b82525050565b5f6020820190506131a35f830184613181565b92915050565b5f805f606084860312156131c0576131bf612efe565b5b5f6131cd8682870161312f565b93505060206131de8682870161312f565b92505060406131ef86828701613082565b9150509250925092565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61323382612ffb565b810181811067ffffffffffffffff82111715613252576132516131fd565b5b80604052505050565b5f613264612ef5565b9050613270828261322a565b919050565b5f67ffffffffffffffff82111561328f5761328e6131fd565b5b602082029050602081019050919050565b5f80fd5b5f6132b66132b184613275565b61325b565b905080838252602082019050602084028301858111156132d9576132d86132a0565b5b835b8181101561330257806132ee8882613082565b8452602084019350506020810190506132db565b5050509392505050565b5f82601f8301126133205761331f6131f9565b5b81356133308482602086016132a4565b91505092915050565b5f806040838503121561334f5761334e612efe565b5b5f83013567ffffffffffffffff81111561336c5761336b612f02565b5b6133788582860161330c565b92505060206133898582860161312f565b9150509250929050565b5f602082840312156133a8576133a7612efe565b5b5f6133b58482850161312f565b91505092915050565b5f80604083850312156133d4576133d3612efe565b5b5f6133e185828601613082565b92505060206133f28582860161312f565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61342e81613063565b82525050565b5f61343f8383613425565b60208301905092915050565b5f602082019050919050565b5f613461826133fc565b61346b8185613406565b935061347683613416565b805f5b838110156134a657815161348d8882613434565b97506134988361344b565b925050600181019050613479565b5085935050505092915050565b5f6020820190508181035f8301526134cb8184613457565b905092915050565b6134dc81612f86565b81146134e6575f80fd5b50565b5f813590506134f7816134d3565b92915050565b5f806040838503121561351357613512612efe565b5b5f6135208582860161312f565b9250506020613531858286016134e9565b9150509250929050565b5f80fd5b5f67ffffffffffffffff821115613559576135586131fd565b5b61356282612ffb565b9050602081019050919050565b828183375f83830152505050565b5f61358f61358a8461353f565b61325b565b9050828152602081018484840111156135ab576135aa61353b565b5b6135b684828561356f565b509392505050565b5f82601f8301126135d2576135d16131f9565b5b81356135e284826020860161357d565b91505092915050565b5f805f806080858703121561360357613602612efe565b5b5f6136108782880161312f565b94505060206136218782880161312f565b935050604061363287828801613082565b925050606085013567ffffffffffffffff81111561365357613652612f02565b5b61365f878288016135be565b91505092959194509250565b5f806040838503121561368157613680612efe565b5b5f61368e8582860161312f565b925050602061369f8582860161312f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806136ed57607f821691505b602082108103613700576136ff6136a9565b5b50919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f613760602d83612fc3565b915061376b82613706565b604082019050919050565b5f6020820190508181035f83015261378d81613754565b9050919050565b7f4e6f7420796f75727300000000000000000000000000000000000000000000005f82015250565b5f6137c8600983612fc3565b91506137d382613794565b602082019050919050565b5f6020820190508181035f8301526137f5816137bc565b9050919050565b7f5374616b696e67206973207374696c6c206c6f636b65640000000000000000005f82015250565b5f613830601783612fc3565b915061383b826137fc565b602082019050919050565b5f6020820190508181035f83015261385d81613824565b9050919050565b5f6060820190506138775f8301866130f1565b61388460208301856130f1565b6138916040830184613181565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138d082613063565b91506138db83613063565b92508282039050818111156138f3576138f2613899565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61393082613063565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361396257613961613899565b5b600182019050919050565b50565b5f61397b5f83612fc3565b91506139868261396d565b5f82019050919050565b5f6020820190508181035f8301526139a781613970565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f6139e2601883612fc3565b91506139ed826139ae565b602082019050919050565b5f6020820190508181035f830152613a0f816139d6565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613a70602983612fc3565b9150613a7b82613a16565b604082019050919050565b5f6020820190508181035f830152613a9d81613a64565b9050919050565b5f81519050613ab281613119565b92915050565b5f60208284031215613acd57613acc612efe565b5b5f613ada84828501613aa4565b91505092915050565b7f4e6f7420796f757220496d6d6f7274616c0000000000000000000000000000005f82015250565b5f613b17601183612fc3565b9150613b2282613ae3565b602082019050919050565b5f6020820190508181035f830152613b4481613b0b565b9050919050565b5f613b5582613063565b9150613b6083613063565b9250828202613b6e81613063565b91508282048414831517613b8557613b84613899565b5b5092915050565b5f613b9682613063565b9150613ba183613063565b9250828201905080821115613bb957613bb8613899565b5b92915050565b7f596f752063616e206f6e6c79207472616e7366657220796f7572206f776e20745f8201527f6f6b656e73000000000000000000000000000000000000000000000000000000602082015250565b5f613c19602583612fc3565b9150613c2482613bbf565b604082019050919050565b5f6020820190508181035f830152613c4681613c0d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ca7602483612fc3565b9150613cb282613c4d565b604082019050919050565b5f6020820190508181035f830152613cd481613c9b565b9050919050565b5f81905092915050565b5f613cef82612fb9565b613cf98185613cdb565b9350613d09818560208601612fd3565b80840191505092915050565b5f613d208285613ce5565b9150613d2c8284613ce5565b91508190509392505050565b5f81519050613d468161306c565b92915050565b5f60208284031215613d6157613d60612efe565b5b5f613d6e84828501613d38565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613dd1602683612fc3565b9150613ddc82613d77565b604082019050919050565b5f6020820190508181035f830152613dfe81613dc5565b9050919050565b7f5468697320746f6b656e2063616e6e6f74206265206c697374656420666f72205f8201527f73616c652e000000000000000000000000000000000000000000000000000000602082015250565b5f613e5f602583612fc3565b9150613e6a82613e05565b604082019050919050565b5f6020820190508181035f830152613e8c81613e53565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f613eed602583612fc3565b9150613ef882613e93565b604082019050919050565b5f6020820190508181035f830152613f1a81613ee1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613f55602083612fc3565b9150613f6082613f21565b602082019050919050565b5f6020820190508181035f830152613f8281613f49565b9050919050565b7f4d6178696d756d20737570706c792072656163686564000000000000000000005f82015250565b5f613fbd601683612fc3565b9150613fc882613f89565b602082019050919050565b5f6020820190508181035f830152613fea81613fb1565b9050919050565b7f68747470733a2f2f7777772e696d6d6f7274616c736e66742e78797a2f6170695f8201527f2f7374616b65643f65646974696f6e3d00000000000000000000000000000000602082015250565b5f61404b603083613cdb565b915061405682613ff1565b603082019050919050565b5f61406b8261403f565b91506140778284613ce5565b915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f6140dc603283612fc3565b91506140e782614082565b604082019050919050565b5f6020820190508181035f830152614109816140d0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f614144602083612fc3565b915061414f82614110565b602082019050919050565b5f6020820190508181035f83015261417181614138565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f6141ac601c83612fc3565b91506141b782614178565b602082019050919050565b5f6020820190508181035f8301526141d9816141a0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e5f8201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b5f614267602e83612fc3565b91506142728261420d565b604082019050919050565b5f6020820190508181035f8301526142948161425b565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026142f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826142bc565b61430186836142bc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61433c61433761433284613063565b614319565b613063565b9050919050565b5f819050919050565b61435583614322565b61436961436182614343565b8484546142c8565b825550505050565b5f90565b61437d614371565b61438881848461434c565b505050565b5b818110156143ab576143a05f82614375565b60018101905061438e565b5050565b601f8211156143f0576143c18161429b565b6143ca846142ad565b810160208510156143d9578190505b6143ed6143e5856142ad565b83018261438d565b50505b505050565b5f82821c905092915050565b5f6144105f19846008026143f5565b1980831691505092915050565b5f6144288383614401565b9150826002028217905092915050565b61444182612fb9565b67ffffffffffffffff81111561445a576144596131fd565b5b61446482546136d6565b61446f8282856143af565b5f60209050601f8311600181146144a0575f841561448e578287015190505b614498858261441d565b8655506144ff565b601f1984166144ae8661429b565b5f5b828110156144d5578489015182556001820191506020850194506020810190506144b0565b868310156144f257848901516144ee601f891682614401565b8355505b6001600288020188555050505b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f61452b82614507565b6145358185614511565b9350614545818560208601612fd3565b61454e81612ffb565b840191505092915050565b5f60808201905061456c5f8301876130f1565b61457960208301866130f1565b6145866040830185613181565b81810360608301526145988184614521565b905095945050505050565b5f815190506145b181612f31565b92915050565b5f602082840312156145cc576145cb612efe565b5b5f6145d9848285016145a3565b9150509291505056fea264697066735822122072031829907576f64253e4fe2226e6c2de8c0ff80ebc0dd082be2f3fd2e25a8a64736f6c6343000815003300000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000cf1f07c97a802c04ed743f989758bc2bee7e1572

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610204575f3560e01c80637acb775711610118578063a9059cbb116100ab578063d1bbdfa11161007a578063d1bbdfa1146105e4578063d5abeb0114610600578063e1b0da1b1461061e578063e985e9c51461064e578063f2fde38b1461067e57610204565b8063a9059cbb1461054c578063b88d4fde14610568578063b995ad0214610584578063c87b56dd146105b457610204565b806395d89b41116100e757806395d89b41146104c4578063a2009838146104e2578063a22cb46514610512578063a2309ff81461052e57610204565b80637acb77571461043e5780638da5cb5b1461045a5780639224747d14610478578063939624ab146104a857610204565b80632e17de781161019b5780634f604e7b1161016a5780634f604e7b1461039a5780635e775c58146103b65780636352211e146103d457806370a0823114610404578063715018a61461043457610204565b80632e17de781461032a5780633792fa94146103465780633caf4ce51461036257806342842e0e1461037e57610204565b8063117e2773116101d7578063117e2773146102a257806318160ddd146102c057806320d07cd6146102de57806323b872dd1461030e57610204565b806301ffc9a71461020857806306fdde0314610238578063081812fc14610256578063095ea7b314610286575b5f80fd5b610222600480360381019061021d9190612f5b565b61069a565b60405161022f9190612fa0565b60405180910390f35b6102406106fa565b60405161024d9190613043565b60405180910390f35b610270600480360381019061026b9190613096565b610789565b60405161027d9190613100565b60405180910390f35b6102a0600480360381019061029b9190613143565b6107cb565b005b6102aa61080e565b6040516102b79190613190565b60405180910390f35b6102c8610815565b6040516102d59190613190565b60405180910390f35b6102f860048036038101906102f39190613096565b61081e565b6040516103059190613100565b60405180910390f35b610328600480360381019061032391906131a9565b61084e565b005b610344600480360381019061033f9190613096565b6108e3565b005b610360600480360381019061035b9190613339565b610b43565b005b61037c60048036038101906103779190613143565b610b8a565b005b610398600480360381019061039391906131a9565b610ce3565b005b6103b460048036038101906103af9190613096565b610d02565b005b6103be610e65565b6040516103cb9190613100565b60405180910390f35b6103ee60048036038101906103e99190613096565b610e8a565b6040516103fb9190613100565b60405180910390f35b61041e60048036038101906104199190613393565b610f0e565b60405161042b9190613190565b60405180910390f35b61043c610fc2565b005b610458600480360381019061045391906133be565b610fd5565b005b6104626112e6565b60405161046f9190613100565b60405180910390f35b610492600480360381019061048d9190613096565b61130e565b60405161049f9190613190565b60405180910390f35b6104c260048036038101906104bd9190613096565b611323565b005b6104cc611375565b6040516104d99190613043565b60405180910390f35b6104fc60048036038101906104f79190613393565b611405565b60405161050991906134b3565b60405180910390f35b61052c600480360381019061052791906134fd565b6115a7565b005b6105366115f2565b6040516105439190613190565b60405180910390f35b61056660048036038101906105619190613143565b6115f8565b005b610582600480360381019061057d91906135eb565b61173f565b005b61059e60048036038101906105999190613096565b6117d6565b6040516105ab9190613100565b60405180910390f35b6105ce60048036038101906105c99190613096565b611806565b6040516105db9190613043565b60405180910390f35b6105fe60048036038101906105f99190613393565b611910565b005b610608611963565b6040516106159190613190565b60405180910390f35b61063860048036038101906106339190613393565b611969565b60405161064591906134b3565b60405180910390f35b6106686004803603810190610663919061366b565b611bf8565b6040516106759190612fa0565b60405180910390f35b61069860048036038101906106939190613393565b611c86565b005b5f634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f357506106f282611d08565b5b9050919050565b60605f8054610708906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610734906136d6565b801561077f5780601f106107565761010080835404028352916020019161077f565b820191905f5260205f20905b81548152906001019060200180831161076257829003601f168201915b5050505050905090565b5f61079382611de9565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16031561080a576108098282611e34565b5b5050565b6204029081565b5f600954905090565b600d602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61085f610859611f2d565b82611f34565b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590613776565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156108de576108dd838383611fc8565b5b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600c5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610978906137de565b60405180910390fd5b600b5f8281526020019081526020015f20544210156109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc90613846565b60405180910390fd5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b8152600401610a3393929190613864565b5f604051808303815f87803b158015610a4a575f80fd5b505af1158015610a5c573d5f803e3d5ffd5b50505050610a69816122b4565b600160095f828254610a7b91906138c6565b92505081905550600b5f8281526020019081526020015f205f9055600c5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600d5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055803373ffffffffffffffffffffffffffffffffffffffff167f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd60405160405180910390a350565b5f5b8251811015610b8557610b72838281518110610b6457610b636138f9565b5b602002602001015183610fd5565b8080610b7d90613926565b915050610b45565b505050565b600d5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613990565b60405180910390fd5b81600d5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f610c8182610e8a565b9050818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f96eafeca8c3c21ab2fa4a636b93ba20c9e22e3d222d92c6530fedc29a53671ee60405160405180910390a4505050565b610cfd83838360405180602001604052805f81525061173f565b505050565b600d5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790613990565b60405180910390fd5b5f610daa82610e8a565b9050610db7813384611fc8565b33600c5f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550813373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f157bbd27dbbe3b7dd81ca60243c4c0765d5e7d2dae8ef7a9fd6888bbf6aee0d960405160405180910390a45050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610e9583612301565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc906139f8565b60405180910390fd5b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490613a86565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fca61233a565b610fd35f6123b8565b565b3373ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016110469190613190565b602060405180830381865afa158015611061573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110859190613ab8565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613b2d565b60405180910390fd5b5f620402909050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b815260040161114093929190613864565b5f604051808303815f87803b158015611157575f80fd5b505af1158015611169573d5f803e3d5ffd5b50505050611177338461247b565b603c816111849190613b4b565b4261118f9190613b8c565b600b5f8581526020019081526020015f208190555033600c5f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d5f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f96eafeca8c3c21ab2fa4a636b93ba20c9e22e3d222d92c6530fedc29a53671ee60405160405180910390a4823373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a60405160405180910390a3505050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b602052805f5260405f205f915090505481565b61132b61233a565b600b5f8281526020019081526020015f205f9055600d5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550565b606060018054611384906136d6565b80601f01602080910402602001604051908101604052809291908181526020018280546113b0906136d6565b80156113fb5780601f106113d2576101008083540402835291602001916113fb565b820191905f5260205f20905b8154815290600101906020018083116113de57829003601f168201915b5050505050905090565b60605f60085490505f8167ffffffffffffffff811115611428576114276131fd565b5b6040519080825280602002602001820160405280156114565781602001602082028036833780820191505090505b5090505f80600190505b8381116114f65761147081612522565b80156114af57508573ffffffffffffffffffffffffffffffffffffffff1661149782610e8a565b73ffffffffffffffffffffffffffffffffffffffff16145b156114e357808383815181106114c8576114c76138f9565b5b60200260200101818152505081806114df90613926565b9250505b80806114ee90613926565b915050611460565b505f8167ffffffffffffffff811115611512576115116131fd565b5b6040519080825280602002602001820160405280156115405781602001602082028036833780820191505090505b5090505f5b8281101561159a578381815181106115605761155f6138f9565b5b602002602001015182828151811061157b5761157a6138f9565b5b602002602001018181525050808061159290613926565b915050611545565b5080945050505050919050565b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156115ee576115ed6115e6611f2d565b8383612562565b5b5050565b60095481565b5f61160282610e8a565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613c2f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790613cbd565b60405180910390fd5b6116eb818484611fc8565b82600c5f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b61175061174a611f2d565b83611f34565b61178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613776565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156117d0576117cf84848484612567565b5b50505050565b600c602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061181182611de9565b5f60065f8481526020019081526020015f20805461182e906136d6565b80601f016020809104026020016040519081016040528092919081815260200182805461185a906136d6565b80156118a55780601f1061187c576101008083540402835291602001916118a5565b820191905f5260205f20905b81548152906001019060200180831161188857829003601f168201915b505050505090505f6118b56125f8565b90505f8151036118c957819250505061190b565b5f825111156118fd5780826040516020016118e5929190613d15565b6040516020818303038152906040529250505061190b565b6119068461260e565b925050505b919050565b5f61191a33611969565b90505f5b815181101561195e5761194b82828151811061193d5761193c6138f9565b5b602002602001015184610fd5565b808061195690613926565b91505061191e565b505050565b60085481565b60605f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119fe9190613d4c565b90505f8167ffffffffffffffff811115611a1b57611a1a6131fd565b5b604051908082528060200260200182016040528015611a495781602001602082028036833780820191505090505b5090505f80600190505b838111611b46578673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611aaa9190613190565b602060405180830381865afa158015611ac5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ae99190613ab8565b73ffffffffffffffffffffffffffffffffffffffff1603611b335780838381518110611b1857611b176138f9565b5b6020026020010181815250508180611b2f90613926565b9250505b8080611b3e90613926565b915050611a53565b505f8167ffffffffffffffff811115611b6257611b616131fd565b5b604051908082528060200260200182016040528015611b905781602001602082028036833780820191505090505b5090505f5b82811015611bea57838181518110611bb057611baf6138f9565b5b6020026020010151828281518110611bcb57611bca6138f9565b5b6020026020010181815250508080611be290613926565b915050611b95565b508095505050505050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611c8e61233a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390613de7565b60405180910390fd5b611d05816123b8565b50565b5f7f98ba5510000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dd257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611de25750611de182612673565b5b9050919050565b611df281612522565b611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906139f8565b60405180910390fd5b50565b5f600114611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90613e75565b60405180910390fd5b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ee783610e8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f33905090565b5f80611f3f83610e8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f815750611f808185611bf8565b5b80611fbf57508373ffffffffffffffffffffffffffffffffffffffff16611fa784610789565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fe882610e8a565b73ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590613f03565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390613cbd565b60405180910390fd5b6120b983838360016126dc565b8273ffffffffffffffffffffffffffffffffffffffff166120d982610e8a565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690613f03565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122af83838360016126e2565b505050565b6122bd816126e8565b5f60065f8381526020019081526020015f2080546122da906136d6565b9050146122fe5760065f8281526020019081526020015f205f6122fd9190612e9d565b5b50565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b612342611f2d565b73ffffffffffffffffffffffffffffffffffffffff166123606112e6565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90613f6b565b60405180910390fd5b565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600854600954106124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890613fd3565b60405180910390fd5b60095f8154809291906124d390613926565b91905055505f8190506124e68382612829565b60606124f183612a3c565b6040516020016125019190614061565b604051602081830303815290604052905061251c8282612b06565b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661254383612301565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603156125f2576125a6848484611fc8565b6125b284848484612ba8565b6125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e8906140f2565b60405180910390fd5b5b50505050565b606060405180602001604052805f815250905090565b606061261982611de9565b5f6126226125f8565b90505f8151116126405760405180602001604052805f81525061266b565b8061264a84612a3c565b60405160200161265b929190613d15565b6040516020818303038152906040525b915050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b5f6126f282610e8a565b9050612701815f8460016126dc565b61270a82610e8a565b905060045f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254039250508190555060025f8381526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055815f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612825815f8460016126e2565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e9061415a565b60405180910390fd5b6128a081612522565b156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906141c2565b60405180910390fd5b6128ed5f838360016126dc565b6128f681612522565b15612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d906141c2565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a385f838360016126e2565b5050565b60605f6001612a4a84612d2a565b0190505f8167ffffffffffffffff811115612a6857612a676131fd565b5b6040519080825280601f01601f191660200182016040528015612a9a5781602001600182028036833780820191505090505b5090505f82602001820190505b600115612afb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612af057612aef6141e0565b5b0494505f8503612aa7575b819350505050919050565b612b0f82612522565b612b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b459061427d565b60405180910390fd5b8060065f8481526020019081526020015f209081612b6c9190614438565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce782604051612b9c9190613190565b60405180910390a15050565b5f612bc88473ffffffffffffffffffffffffffffffffffffffff16612e7b565b15612d1d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bf1611f2d565b8786866040518563ffffffff1660e01b8152600401612c139493929190614559565b6020604051808303815f875af1925050508015612c4e57506040513d601f19601f82011682018060405250810190612c4b91906145b7565b60015b612ccd573d805f8114612c7c576040519150601f19603f3d011682016040523d82523d5f602084013e612c81565b606091505b505f815103612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc906140f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d22565b600190505b949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612d86577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612d7c57612d7b6141e0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612dc3576d04ee2d6d415b85acef81000000008381612db957612db86141e0565b5b0492506020810190505b662386f26fc100008310612df257662386f26fc100008381612de857612de76141e0565b5b0492506010810190505b6305f5e1008310612e1b576305f5e1008381612e1157612e106141e0565b5b0492506008810190505b6127108310612e40576127108381612e3657612e356141e0565b5b0492506004810190505b60648310612e635760648381612e5957612e586141e0565b5b0492506002810190505b600a8310612e72576001810190505b80915050919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b508054612ea9906136d6565b5f825580601f10612eba5750612ed7565b601f0160209004905f5260205f2090810190612ed69190612eda565b5b50565b5b80821115612ef1575f815f905550600101612edb565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f3a81612f06565b8114612f44575f80fd5b50565b5f81359050612f5581612f31565b92915050565b5f60208284031215612f7057612f6f612efe565b5b5f612f7d84828501612f47565b91505092915050565b5f8115159050919050565b612f9a81612f86565b82525050565b5f602082019050612fb35f830184612f91565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ff0578082015181840152602081019050612fd5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61301582612fb9565b61301f8185612fc3565b935061302f818560208601612fd3565b61303881612ffb565b840191505092915050565b5f6020820190508181035f83015261305b818461300b565b905092915050565b5f819050919050565b61307581613063565b811461307f575f80fd5b50565b5f813590506130908161306c565b92915050565b5f602082840312156130ab576130aa612efe565b5b5f6130b884828501613082565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130ea826130c1565b9050919050565b6130fa816130e0565b82525050565b5f6020820190506131135f8301846130f1565b92915050565b613122816130e0565b811461312c575f80fd5b50565b5f8135905061313d81613119565b92915050565b5f806040838503121561315957613158612efe565b5b5f6131668582860161312f565b925050602061317785828601613082565b9150509250929050565b61318a81613063565b82525050565b5f6020820190506131a35f830184613181565b92915050565b5f805f606084860312156131c0576131bf612efe565b5b5f6131cd8682870161312f565b93505060206131de8682870161312f565b92505060406131ef86828701613082565b9150509250925092565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61323382612ffb565b810181811067ffffffffffffffff82111715613252576132516131fd565b5b80604052505050565b5f613264612ef5565b9050613270828261322a565b919050565b5f67ffffffffffffffff82111561328f5761328e6131fd565b5b602082029050602081019050919050565b5f80fd5b5f6132b66132b184613275565b61325b565b905080838252602082019050602084028301858111156132d9576132d86132a0565b5b835b8181101561330257806132ee8882613082565b8452602084019350506020810190506132db565b5050509392505050565b5f82601f8301126133205761331f6131f9565b5b81356133308482602086016132a4565b91505092915050565b5f806040838503121561334f5761334e612efe565b5b5f83013567ffffffffffffffff81111561336c5761336b612f02565b5b6133788582860161330c565b92505060206133898582860161312f565b9150509250929050565b5f602082840312156133a8576133a7612efe565b5b5f6133b58482850161312f565b91505092915050565b5f80604083850312156133d4576133d3612efe565b5b5f6133e185828601613082565b92505060206133f28582860161312f565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61342e81613063565b82525050565b5f61343f8383613425565b60208301905092915050565b5f602082019050919050565b5f613461826133fc565b61346b8185613406565b935061347683613416565b805f5b838110156134a657815161348d8882613434565b97506134988361344b565b925050600181019050613479565b5085935050505092915050565b5f6020820190508181035f8301526134cb8184613457565b905092915050565b6134dc81612f86565b81146134e6575f80fd5b50565b5f813590506134f7816134d3565b92915050565b5f806040838503121561351357613512612efe565b5b5f6135208582860161312f565b9250506020613531858286016134e9565b9150509250929050565b5f80fd5b5f67ffffffffffffffff821115613559576135586131fd565b5b61356282612ffb565b9050602081019050919050565b828183375f83830152505050565b5f61358f61358a8461353f565b61325b565b9050828152602081018484840111156135ab576135aa61353b565b5b6135b684828561356f565b509392505050565b5f82601f8301126135d2576135d16131f9565b5b81356135e284826020860161357d565b91505092915050565b5f805f806080858703121561360357613602612efe565b5b5f6136108782880161312f565b94505060206136218782880161312f565b935050604061363287828801613082565b925050606085013567ffffffffffffffff81111561365357613652612f02565b5b61365f878288016135be565b91505092959194509250565b5f806040838503121561368157613680612efe565b5b5f61368e8582860161312f565b925050602061369f8582860161312f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806136ed57607f821691505b602082108103613700576136ff6136a9565b5b50919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f613760602d83612fc3565b915061376b82613706565b604082019050919050565b5f6020820190508181035f83015261378d81613754565b9050919050565b7f4e6f7420796f75727300000000000000000000000000000000000000000000005f82015250565b5f6137c8600983612fc3565b91506137d382613794565b602082019050919050565b5f6020820190508181035f8301526137f5816137bc565b9050919050565b7f5374616b696e67206973207374696c6c206c6f636b65640000000000000000005f82015250565b5f613830601783612fc3565b915061383b826137fc565b602082019050919050565b5f6020820190508181035f83015261385d81613824565b9050919050565b5f6060820190506138775f8301866130f1565b61388460208301856130f1565b6138916040830184613181565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138d082613063565b91506138db83613063565b92508282039050818111156138f3576138f2613899565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61393082613063565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361396257613961613899565b5b600182019050919050565b50565b5f61397b5f83612fc3565b91506139868261396d565b5f82019050919050565b5f6020820190508181035f8301526139a781613970565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f6139e2601883612fc3565b91506139ed826139ae565b602082019050919050565b5f6020820190508181035f830152613a0f816139d6565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f613a70602983612fc3565b9150613a7b82613a16565b604082019050919050565b5f6020820190508181035f830152613a9d81613a64565b9050919050565b5f81519050613ab281613119565b92915050565b5f60208284031215613acd57613acc612efe565b5b5f613ada84828501613aa4565b91505092915050565b7f4e6f7420796f757220496d6d6f7274616c0000000000000000000000000000005f82015250565b5f613b17601183612fc3565b9150613b2282613ae3565b602082019050919050565b5f6020820190508181035f830152613b4481613b0b565b9050919050565b5f613b5582613063565b9150613b6083613063565b9250828202613b6e81613063565b91508282048414831517613b8557613b84613899565b5b5092915050565b5f613b9682613063565b9150613ba183613063565b9250828201905080821115613bb957613bb8613899565b5b92915050565b7f596f752063616e206f6e6c79207472616e7366657220796f7572206f776e20745f8201527f6f6b656e73000000000000000000000000000000000000000000000000000000602082015250565b5f613c19602583612fc3565b9150613c2482613bbf565b604082019050919050565b5f6020820190508181035f830152613c4681613c0d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ca7602483612fc3565b9150613cb282613c4d565b604082019050919050565b5f6020820190508181035f830152613cd481613c9b565b9050919050565b5f81905092915050565b5f613cef82612fb9565b613cf98185613cdb565b9350613d09818560208601612fd3565b80840191505092915050565b5f613d208285613ce5565b9150613d2c8284613ce5565b91508190509392505050565b5f81519050613d468161306c565b92915050565b5f60208284031215613d6157613d60612efe565b5b5f613d6e84828501613d38565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613dd1602683612fc3565b9150613ddc82613d77565b604082019050919050565b5f6020820190508181035f830152613dfe81613dc5565b9050919050565b7f5468697320746f6b656e2063616e6e6f74206265206c697374656420666f72205f8201527f73616c652e000000000000000000000000000000000000000000000000000000602082015250565b5f613e5f602583612fc3565b9150613e6a82613e05565b604082019050919050565b5f6020820190508181035f830152613e8c81613e53565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f613eed602583612fc3565b9150613ef882613e93565b604082019050919050565b5f6020820190508181035f830152613f1a81613ee1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613f55602083612fc3565b9150613f6082613f21565b602082019050919050565b5f6020820190508181035f830152613f8281613f49565b9050919050565b7f4d6178696d756d20737570706c792072656163686564000000000000000000005f82015250565b5f613fbd601683612fc3565b9150613fc882613f89565b602082019050919050565b5f6020820190508181035f830152613fea81613fb1565b9050919050565b7f68747470733a2f2f7777772e696d6d6f7274616c736e66742e78797a2f6170695f8201527f2f7374616b65643f65646974696f6e3d00000000000000000000000000000000602082015250565b5f61404b603083613cdb565b915061405682613ff1565b603082019050919050565b5f61406b8261403f565b91506140778284613ce5565b915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f6140dc603283612fc3565b91506140e782614082565b604082019050919050565b5f6020820190508181035f830152614109816140d0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f614144602083612fc3565b915061414f82614110565b602082019050919050565b5f6020820190508181035f83015261417181614138565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f6141ac601c83612fc3565b91506141b782614178565b602082019050919050565b5f6020820190508181035f8301526141d9816141a0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e5f8201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b5f614267602e83612fc3565b91506142728261420d565b604082019050919050565b5f6020820190508181035f8301526142948161425b565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026142f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826142bc565b61430186836142bc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61433c61433761433284613063565b614319565b613063565b9050919050565b5f819050919050565b61435583614322565b61436961436182614343565b8484546142c8565b825550505050565b5f90565b61437d614371565b61438881848461434c565b505050565b5b818110156143ab576143a05f82614375565b60018101905061438e565b5050565b601f8211156143f0576143c18161429b565b6143ca846142ad565b810160208510156143d9578190505b6143ed6143e5856142ad565b83018261438d565b50505b505050565b5f82821c905092915050565b5f6144105f19846008026143f5565b1980831691505092915050565b5f6144288383614401565b9150826002028217905092915050565b61444182612fb9565b67ffffffffffffffff81111561445a576144596131fd565b5b61446482546136d6565b61446f8282856143af565b5f60209050601f8311600181146144a0575f841561448e578287015190505b614498858261441d565b8655506144ff565b601f1984166144ae8661429b565b5f5b828110156144d5578489015182556001820191506020850194506020810190506144b0565b868310156144f257848901516144ee601f891682614401565b8355505b6001600288020188555050505b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f61452b82614507565b6145358185614511565b9350614545818560208601612fd3565b61454e81612ffb565b840191505092915050565b5f60808201905061456c5f8301876130f1565b61457960208301866130f1565b6145866040830185613181565b81810360608301526145988184614521565b905095945050505050565b5f815190506145b181612f31565b92915050565b5f602082840312156145cc576145cb612efe565b5b5f6145d9848285016145a3565b9150509291505056fea264697066735822122072031829907576f64253e4fe2226e6c2de8c0ff80ebc0dd082be2f3fd2e25a8a64736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000cf1f07c97a802c04ed743f989758bc2bee7e1572

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 500
Arg [1] : contract_ (address): 0xCF1F07C97A802C04eD743F989758BC2BeE7e1572

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [1] : 000000000000000000000000cf1f07c97a802c04ed743f989758bc2bee7e1572


Deployed Bytecode Sourcemap

58419:6023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56560:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40704:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42013:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41734:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58636:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59630:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58982:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42814:381;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60402:541;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64258:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62161:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43266:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61826:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58562:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40414:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40145:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18007:103;;;:::i;:::-;;59728:666;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17359:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58763:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62465:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40873:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63408:628;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42256:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58529:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61477:341;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43522:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58889:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56838:624;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64043:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58498:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62640:764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42583:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18265:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56560:207;56662:4;56708:10;56701:18;;56686:33;;;:11;:33;;;;:73;;;;56723:36;56747:11;56723:23;:36::i;:::-;56686:73;56679:80;;56560:207;;;:::o;40704:100::-;40758:13;40791:5;40784:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40704:100;:::o;42013:171::-;42089:7;42109:23;42124:7;42109:14;:23::i;:::-;42152:15;:24;42168:7;42152:24;;;;;;;;;;;;;;;;;;;;;42145:31;;42013:171;;;:::o;41734:213::-;41833:10;41819:24;;:10;:24;;;41815:91;41856:7;41815:91;41918:21;41927:2;41931:7;41918:8;:21::i;:::-;41734:213;;;:::o;58636:48::-;58678:6;58636:48;:::o;59630:90::-;59674:7;59701:11;;59694:18;;59630:90;:::o;58982:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;42814:381::-;42936:41;42955:12;:10;:12::i;:::-;42969:7;42936:18;:41::i;:::-;42928:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43052:10;43038:24;;:10;:24;;;43034:91;43075:7;43034:91;43131:28;43141:4;43147:2;43151:7;43131:9;:28::i;:::-;42814:381;;;;:::o;60402:541::-;60494:10;60465:39;;:13;:25;60479:10;60465:25;;;;;;;;;;;;;;;;;;;;;:39;;;60457:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;60556:16;:28;60573:10;60556:28;;;;;;;;;;;;60537:15;:47;;60529:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;60630:16;;;;;;;;;;;60623:37;;;60669:4;60676:10;60688;60623:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60710:17;60716:10;60710:5;:17::i;:::-;60753:1;60738:11;;:16;;;;;;;:::i;:::-;;;;;;;;60772;:28;60789:10;60772:28;;;;;;;;;;;60765:35;;;60818:13;:25;60832:10;60818:25;;;;;;;;;;;;60811:32;;;;;;;;;;;60861:15;:27;60877:10;60861:27;;;;;;;;;;;;60854:34;;;;;;;;;;;60924:10;60912;60904:31;;;;;;;;;;;;60402:541;:::o;64258:179::-;64342:9;64337:97;64361:11;:18;64357:1;:22;64337:97;;;64397:29;64403:11;64415:1;64403:14;;;;;;;;:::i;:::-;;;;;;;;64419:6;64397:5;:29::i;:::-;64381:3;;;;;:::i;:::-;;;;64337:97;;;;64258:179;;:::o;62161:296::-;62264:15;:27;62280:10;62264:27;;;;;;;;;;;;;;;;;;;;;62250:41;;:10;:41;;;62242:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;62337:7;62307:15;:27;62323:10;62307:27;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;62355:12;62370:26;62385:10;62370:14;:26::i;:::-;62355:41;;62438:10;62429:7;62412:37;;62423:4;62412:37;;;;;;;;;;;;62231:226;62161:296;;:::o;43266:185::-;43404:39;43421:4;43427:2;43431:7;43404:39;;;;;;;;;;;;:16;:39::i;:::-;43266:185;;;:::o;61826:327::-;61910:15;:27;61926:10;61910:27;;;;;;;;;;;;;;;;;;;;;61896:41;;:10;:41;;;61888:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61953:12;61968:26;61983:10;61968:14;:26::i;:::-;61953:41;;62005:39;62015:4;62021:10;62033;62005:9;:39::i;:::-;62083:10;62055:13;:25;62069:10;62055:25;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;62134:10;62122;62109:36;;62116:4;62109:36;;;;;;;;;;;;61877:276;61826:327;:::o;58562:31::-;;;;;;;;;;;;;:::o;40414:223::-;40486:7;40506:13;40522:17;40531:7;40522:8;:17::i;:::-;40506:33;;40575:1;40558:19;;:5;:19;;;40550:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;40624:5;40617:12;;;40414:223;;;:::o;40145:207::-;40217:7;40262:1;40245:19;;:5;:19;;;40237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40328:9;:16;40338:5;40328:16;;;;;;;;;;;;;;;;40321:23;;40145:207;;;:::o;18007:103::-;17245:13;:11;:13::i;:::-;18072:30:::1;18099:1;18072:18;:30::i;:::-;18007:103::o:0;59728:666::-;59853:10;59805:58;;59812:16;;;;;;;;;;;59805:32;;;59838:10;59805:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;;59797:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;59896:29;58678:6;59936:39;;59993:16;;;;;;;;;;;59986:37;;;60024:10;60044:4;60051:10;59986:76;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60073:28;60078:10;60090;60073:4;:28::i;:::-;60185:2;60161:21;:26;;;;:::i;:::-;60143:15;:44;;;;:::i;:::-;60112:16;:28;60129:10;60112:28;;;;;;;;;;;:75;;;;60226:10;60198:13;:25;60212:10;60198:25;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;60277:6;60247:15;:27;60263:10;60247:27;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;60330:10;60322:6;60299:42;;60310:10;60299:42;;;;;;;;;;;;60375:10;60363;60357:29;;;;;;;;;;;;59786:608;59728:666;;:::o;17359:87::-;17405:7;17432:6;;;;;;;;;;;17425:13;;17359:87;:::o;58763:51::-;;;;;;;;;;;;;;;;;:::o;62465:167::-;17245:13;:11;:13::i;:::-;62541:16:::1;:28;62558:10;62541:28;;;;;;;;;;;62534:35;;;62587:15;:27;62603:10;62587:27;;;;;;;;;;;;62580:34;;;;;;;;;;;62465:167:::0;:::o;40873:104::-;40929:13;40962:7;40955:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40873:104;:::o;63408:628::-;63468:16;63493:18;63514:9;;63493:30;;63530:23;63570:10;63556:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63530:51;;63588:19;63625:9;63637:1;63625:13;;63620:178;63645:10;63640:1;:15;63620:178;;63677:10;63685:1;63677:7;:10::i;:::-;:34;;;;;63705:6;63691:20;;:10;63699:1;63691:7;:10::i;:::-;:20;;;63677:34;63673:118;;;63750:1;63728:6;63735:11;63728:19;;;;;;;;:::i;:::-;;;;;;;:23;;;;;63766:13;;;;;:::i;:::-;;;;63673:118;63657:3;;;;;:::i;:::-;;;;63620:178;;;;63851:30;63898:11;63884:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63851:59;;63922:9;63917:89;63941:11;63937:1;:15;63917:89;;;63989:6;63996:1;63989:9;;;;;;;;:::i;:::-;;;;;;;;63970:13;63984:1;63970:16;;;;;;;;:::i;:::-;;;;;;;:28;;;;;63954:3;;;;;:::i;:::-;;;;63917:89;;;;64019:13;64012:20;;;;;;63408:628;;;:::o;42256:256::-;42369:10;42355:24;;:10;:24;;;42351:91;42392:7;42351:91;42452:52;42471:12;:10;:12::i;:::-;42485:8;42495;42452:18;:52::i;:::-;42256:256;;;:::o;58529:26::-;;;;:::o;61477:341::-;61542:12;61557:23;61572:7;61557:14;:23::i;:::-;61542:38;;61607:10;61599:18;;:4;:18;;;61591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61692:1;61678:16;;:2;:16;;;61670:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61748:28;61758:4;61764:2;61768:7;61748:9;:28::i;:::-;61812:2;61787:13;:22;61801:7;61787:22;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;61531:287;61477:341;;:::o;43522:423::-;43696:41;43715:12;:10;:12::i;:::-;43729:7;43696:18;:41::i;:::-;43688:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43816:10;43802:24;;:10;:24;;;43798:91;43839:7;43798:91;43899:38;43913:4;43919:2;43923:7;43932:4;43899:13;:38::i;:::-;43522:423;;;;;:::o;58889:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;56838:624::-;56911:13;56937:23;56952:7;56937:14;:23::i;:::-;56973;56999:10;:19;57010:7;56999:19;;;;;;;;;;;56973:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57029:18;57050:10;:8;:10::i;:::-;57029:31;;57158:1;57142:4;57136:18;:23;57132:72;;57183:9;57176:16;;;;;;57132:72;57334:1;57314:9;57308:23;:27;57304:108;;;57383:4;57389:9;57366:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57352:48;;;;;;57304:108;57431:23;57446:7;57431:14;:23::i;:::-;57424:30;;;;56838:624;;;;:::o;64043:211::-;64091:28;64122:25;64136:10;64122:13;:25::i;:::-;64091:56;;64159:9;64154:97;64178:11;:18;64174:1;:22;64154:97;;;64214:29;64220:11;64232:1;64220:14;;;;;;;;:::i;:::-;;;;;;;;64236:6;64214:5;:29::i;:::-;64198:3;;;;;:::i;:::-;;;;64154:97;;;;64084:170;64043:211;:::o;58498:24::-;;;;:::o;62640:764::-;62700:16;62785:21;62817:16;;;;;;;;;;;62785:49;;62843:18;62864:13;:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62843:48;;62898:23;62938:10;62924:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62898:51;;62956:19;62993:9;63005:1;62993:13;;62988:178;63013:10;63008:1;:15;62988:178;;63073:6;63045:34;;:13;:21;;;63067:1;63045:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:34;;;63041:118;;63118:1;63096:6;63103:11;63096:19;;;;;;;;:::i;:::-;;;;;;;:23;;;;;63134:13;;;;;:::i;:::-;;;;63041:118;63025:3;;;;;:::i;:::-;;;;62988:178;;;;63219:30;63266:11;63252:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63219:59;;63290:9;63285:89;63309:11;63305:1;:15;63285:89;;;63357:6;63364:1;63357:9;;;;;;;;:::i;:::-;;;;;;;;63338:13;63352:1;63338:16;;;;;;;;:::i;:::-;;;;;;;:28;;;;;63322:3;;;;;:::i;:::-;;;;63285:89;;;;63387:13;63380:20;;;;;;;62640:764;;;:::o;42583:164::-;42680:4;42704:18;:25;42723:5;42704:25;;;;;;;;;;;;;;;:35;42730:8;42704:35;;;;;;;;;;;;;;;;;;;;;;;;;42697:42;;42583:164;;;;:::o;18265:201::-;17245:13;:11;:13::i;:::-;18374:1:::1;18354:22;;:8;:22;;::::0;18346:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18430:28;18449:8;18430:18;:28::i;:::-;18265:201:::0;:::o;39776:305::-;39878:4;39930:25;39915:40;;;:11;:40;;;;:105;;;;39987:33;39972:48;;;:11;:48;;;;39915:105;:158;;;;40037:36;40061:11;40037:23;:36::i;:::-;39915:158;39895:178;;39776:305;;;:::o;52086:135::-;52168:16;52176:7;52168;:16::i;:::-;52160:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52086:135;:::o;51468:241::-;51556:1;51551;:6;51543:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51637:2;51610:15;:24;51626:7;51610:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51693:7;51689:2;51655:46;;51664:23;51679:7;51664:14;:23::i;:::-;51655:46;;;;;;;;;;;;51468:241;;:::o;15910:98::-;15963:7;15990:10;15983:17;;15910:98;:::o;46079:264::-;46172:4;46189:13;46205:23;46220:7;46205:14;:23::i;:::-;46189:39;;46258:5;46247:16;;:7;:16;;;:52;;;;46267:32;46284:5;46291:7;46267:16;:32::i;:::-;46247:52;:87;;;;46327:7;46303:31;;:20;46315:7;46303:11;:20::i;:::-;:31;;;46247:87;46239:96;;;46079:264;;;;:::o;50086:1263::-;50245:4;50218:31;;:23;50233:7;50218:14;:23::i;:::-;:31;;;50210:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50324:1;50310:16;;:2;:16;;;50302:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50380:42;50401:4;50407:2;50411:7;50420:1;50380:20;:42::i;:::-;50552:4;50525:31;;:23;50540:7;50525:14;:23::i;:::-;:31;;;50517:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50670:15;:24;50686:7;50670:24;;;;;;;;;;;;50663:31;;;;;;;;;;;51165:1;51146:9;:15;51156:4;51146:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51198:1;51181:9;:13;51191:2;51181:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51240:2;51221:7;:16;51229:7;51221:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51279:7;51275:2;51260:27;;51269:4;51260:27;;;;;;;;;;;;51300:41;51320:4;51326:2;51330:7;51339:1;51300:19;:41::i;:::-;50086:1263;;;:::o;58141:206::-;58210:20;58222:7;58210:11;:20::i;:::-;58284:1;58253:10;:19;58264:7;58253:19;;;;;;;;;;;58247:33;;;;;:::i;:::-;;;:38;58243:97;;58309:10;:19;58320:7;58309:19;;;;;;;;;;;;58302:26;;;;:::i;:::-;58243:97;58141:206;:::o;45354:117::-;45420:7;45447;:16;45455:7;45447:16;;;;;;;;;;;;;;;;;;;;;45440:23;;45354:117;;;:::o;17524:132::-;17599:12;:10;:12::i;:::-;17588:23;;:7;:5;:7::i;:::-;:23;;;17580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17524:132::o;18626:191::-;18700:16;18719:6;;;;;;;;;;;18700:25;;18745:8;18736:6;;:17;;;;;;;;;;;;;;;;;;18800:8;18769:40;;18790:8;18769:40;;;;;;;;;;;;18689:128;18626:191;:::o;60973:496::-;61064:9;;61050:11;;:23;61042:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61109:11;;:13;;;;;;;;;:::i;:::-;;;;;;61129:17;61149:10;61129:30;;61168:27;61174:9;61185;61168:5;:27::i;:::-;61277:22;61393:28;61410:10;61393:16;:28::i;:::-;61324:98;;;;;;;;:::i;:::-;;;;;;;;;;;;;61306:117;;61432:33;61445:9;61456:8;61432:12;:33::i;:::-;61035:434;;60973:496;;:::o;45784:128::-;45849:4;45902:1;45873:31;;:17;45882:7;45873:8;:17::i;:::-;:31;;;;45866:38;;45784:128;;;:::o;51852:145::-;;;;:::o;44826:414::-;45000:10;44986:24;;:10;:24;;;44982:91;45023:7;44982:91;45083:28;45093:4;45099:2;45103:7;45083:9;:28::i;:::-;45130:47;45153:4;45159:2;45163:7;45172:4;45130:22;:47::i;:::-;45122:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44826:414;;;;;:::o;41578:94::-;41629:13;41655:9;;;;;;;;;;;;;;41578:94;:::o;41048:281::-;41121:13;41147:23;41162:7;41147:14;:23::i;:::-;41183:21;41207:10;:8;:10::i;:::-;41183:34;;41259:1;41241:7;41235:21;:25;:86;;;;;;;;;;;;;;;;;41287:7;41296:18;:7;:16;:18::i;:::-;41270:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41235:86;41228:93;;;41048:281;;;:::o;31239:157::-;31324:4;31363:25;31348:40;;;:11;:40;;;;31341:47;;31239:157;;;:::o;54370:159::-;;;;;:::o;55251:158::-;;;;;:::o;48958:791::-;49018:13;49034:23;49049:7;49034:14;:23::i;:::-;49018:39;;49070:51;49091:5;49106:1;49110:7;49119:1;49070:20;:51::i;:::-;49234:23;49249:7;49234:14;:23::i;:::-;49226:31;;49305:15;:24;49321:7;49305:24;;;;;;;;;;;;49298:31;;;;;;;;;;;49570:1;49550:9;:16;49560:5;49550:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;49600:7;:16;49608:7;49600:16;;;;;;;;;;;;49593:23;;;;;;;;;;;49670:7;49666:1;49642:36;;49651:5;49642:36;;;;;;;;;;;;49691:50;49711:5;49726:1;49730:7;49739:1;49691:19;:50::i;:::-;49007:742;48958:791;:::o;47677:942::-;47771:1;47757:16;;:2;:16;;;47749:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47830:16;47838:7;47830;:16::i;:::-;47829:17;47821:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47892:48;47921:1;47925:2;47929:7;47938:1;47892:20;:48::i;:::-;48039:16;48047:7;48039;:16::i;:::-;48038:17;48030:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48454:1;48437:9;:13;48447:2;48437:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48498:2;48479:7;:16;48487:7;48479:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48543:7;48539:2;48518:33;;48535:1;48518:33;;;;;;;;;;;;48564:47;48592:1;48596:2;48600:7;48609:1;48564:19;:47::i;:::-;47677:942;;:::o;13337:716::-;13393:13;13444:14;13481:1;13461:17;13472:5;13461:10;:17::i;:::-;:21;13444:38;;13497:20;13531:6;13520:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13497:41;;13553:11;13682:6;13678:2;13674:15;13666:6;13662:28;13655:35;;13719:288;13726:4;13719:288;;;13751:5;;;;;;;;13893:8;13888:2;13881:5;13877:14;13872:30;13867:3;13859:44;13949:2;13940:11;;;;;;:::i;:::-;;;;;13983:1;13974:5;:10;13719:288;13970:21;13719:288;14028:6;14021:13;;;;;13337:716;;;:::o;57658:258::-;57758:16;57766:7;57758;:16::i;:::-;57750:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;57858:9;57836:10;:19;57847:7;57836:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;57885:23;57900:7;57885:23;;;;;;:::i;:::-;;;;;;;;57658:258;;:::o;52785:853::-;52939:4;52960:15;:2;:13;;;:15::i;:::-;52956:675;;;53012:2;52996:36;;;53033:12;:10;:12::i;:::-;53047:4;53053:7;53062:4;52996:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52992:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53254:1;53237:6;:13;:18;53233:328;;53280:60;;;;;;;;;;:::i;:::-;;;;;;;;53233:328;53511:6;53505:13;53496:6;53492:2;53488:15;53481:38;52992:584;53128:41;;;53118:51;;;:6;:51;;;;53111:58;;;;;52956:675;53615:4;53608:11;;52785:853;;;;;;;:::o;10203:922::-;10256:7;10276:14;10293:1;10276:18;;10343:6;10334:5;:15;10330:102;;10379:6;10370:15;;;;;;:::i;:::-;;;;;10414:2;10404:12;;;;10330:102;10459:6;10450:5;:15;10446:102;;10495:6;10486:15;;;;;;:::i;:::-;;;;;10530:2;10520:12;;;;10446:102;10575:6;10566:5;:15;10562:102;;10611:6;10602:15;;;;;;:::i;:::-;;;;;10646:2;10636:12;;;;10562:102;10691:5;10682;:14;10678:99;;10726:5;10717:14;;;;;;:::i;:::-;;;;;10760:1;10750:11;;;;10678:99;10804:5;10795;:14;10791:99;;10839:5;10830:14;;;;;;:::i;:::-;;;;;10873:1;10863:11;;;;10791:99;10917:5;10908;:14;10904:99;;10952:5;10943:14;;;;;;:::i;:::-;;;;;10986:1;10976:11;;;;10904:99;11030:5;11021;:14;11017:66;;11066:1;11056:11;;;;11017:66;11111:6;11104:13;;;10203:922;;;:::o;20057:326::-;20117:4;20374:1;20352:7;:19;;;:23;20345:30;;20057:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:117::-;5976:1;5973;5966:12;5990:180;6038:77;6035:1;6028:88;6135:4;6132:1;6125:15;6159:4;6156:1;6149:15;6176:281;6259:27;6281:4;6259:27;:::i;:::-;6251:6;6247:40;6389:6;6377:10;6374:22;6353:18;6341:10;6338:34;6335:62;6332:88;;;6400:18;;:::i;:::-;6332:88;6440:10;6436:2;6429:22;6219:238;6176:281;;:::o;6463:129::-;6497:6;6524:20;;:::i;:::-;6514:30;;6553:33;6581:4;6573:6;6553:33;:::i;:::-;6463:129;;;:::o;6598:311::-;6675:4;6765:18;6757:6;6754:30;6751:56;;;6787:18;;:::i;:::-;6751:56;6837:4;6829:6;6825:17;6817:25;;6897:4;6891;6887:15;6879:23;;6598:311;;;:::o;6915:117::-;7024:1;7021;7014:12;7055:710;7151:5;7176:81;7192:64;7249:6;7192:64;:::i;:::-;7176:81;:::i;:::-;7167:90;;7277:5;7306:6;7299:5;7292:21;7340:4;7333:5;7329:16;7322:23;;7393:4;7385:6;7381:17;7373:6;7369:30;7422:3;7414:6;7411:15;7408:122;;;7441:79;;:::i;:::-;7408:122;7556:6;7539:220;7573:6;7568:3;7565:15;7539:220;;;7648:3;7677:37;7710:3;7698:10;7677:37;:::i;:::-;7672:3;7665:50;7744:4;7739:3;7735:14;7728:21;;7615:144;7599:4;7594:3;7590:14;7583:21;;7539:220;;;7543:21;7157:608;;7055:710;;;;;:::o;7788:370::-;7859:5;7908:3;7901:4;7893:6;7889:17;7885:27;7875:122;;7916:79;;:::i;:::-;7875:122;8033:6;8020:20;8058:94;8148:3;8140:6;8133:4;8125:6;8121:17;8058:94;:::i;:::-;8049:103;;7865:293;7788:370;;;;:::o;8164:684::-;8257:6;8265;8314:2;8302:9;8293:7;8289:23;8285:32;8282:119;;;8320:79;;:::i;:::-;8282:119;8468:1;8457:9;8453:17;8440:31;8498:18;8490:6;8487:30;8484:117;;;8520:79;;:::i;:::-;8484:117;8625:78;8695:7;8686:6;8675:9;8671:22;8625:78;:::i;:::-;8615:88;;8411:302;8752:2;8778:53;8823:7;8814:6;8803:9;8799:22;8778:53;:::i;:::-;8768:63;;8723:118;8164:684;;;;;:::o;8854:329::-;8913:6;8962:2;8950:9;8941:7;8937:23;8933:32;8930:119;;;8968:79;;:::i;:::-;8930:119;9088:1;9113:53;9158:7;9149:6;9138:9;9134:22;9113:53;:::i;:::-;9103:63;;9059:117;8854:329;;;;:::o;9189:474::-;9257:6;9265;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:53;9510:7;9501:6;9490:9;9486:22;9465:53;:::i;:::-;9455:63;;9411:117;9567:2;9593:53;9638:7;9629:6;9618:9;9614:22;9593:53;:::i;:::-;9583:63;;9538:118;9189:474;;;;;:::o;9669:114::-;9736:6;9770:5;9764:12;9754:22;;9669:114;;;:::o;9789:184::-;9888:11;9922:6;9917:3;9910:19;9962:4;9957:3;9953:14;9938:29;;9789:184;;;;:::o;9979:132::-;10046:4;10069:3;10061:11;;10099:4;10094:3;10090:14;10082:22;;9979:132;;;:::o;10117:108::-;10194:24;10212:5;10194:24;:::i;:::-;10189:3;10182:37;10117:108;;:::o;10231:179::-;10300:10;10321:46;10363:3;10355:6;10321:46;:::i;:::-;10399:4;10394:3;10390:14;10376:28;;10231:179;;;;:::o;10416:113::-;10486:4;10518;10513:3;10509:14;10501:22;;10416:113;;;:::o;10565:732::-;10684:3;10713:54;10761:5;10713:54;:::i;:::-;10783:86;10862:6;10857:3;10783:86;:::i;:::-;10776:93;;10893:56;10943:5;10893:56;:::i;:::-;10972:7;11003:1;10988:284;11013:6;11010:1;11007:13;10988:284;;;11089:6;11083:13;11116:63;11175:3;11160:13;11116:63;:::i;:::-;11109:70;;11202:60;11255:6;11202:60;:::i;:::-;11192:70;;11048:224;11035:1;11032;11028:9;11023:14;;10988:284;;;10992:14;11288:3;11281:10;;10689:608;;;10565:732;;;;:::o;11303:373::-;11446:4;11484:2;11473:9;11469:18;11461:26;;11533:9;11527:4;11523:20;11519:1;11508:9;11504:17;11497:47;11561:108;11664:4;11655:6;11561:108;:::i;:::-;11553:116;;11303:373;;;;:::o;11682:116::-;11752:21;11767:5;11752:21;:::i;:::-;11745:5;11742:32;11732:60;;11788:1;11785;11778:12;11732:60;11682:116;:::o;11804:133::-;11847:5;11885:6;11872:20;11863:29;;11901:30;11925:5;11901:30;:::i;:::-;11804:133;;;;:::o;11943:468::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:50;12386:7;12377:6;12366:9;12362:22;12344:50;:::i;:::-;12334:60;;12289:115;11943:468;;;;;:::o;12417:117::-;12526:1;12523;12516:12;12540:307;12601:4;12691:18;12683:6;12680:30;12677:56;;;12713:18;;:::i;:::-;12677:56;12751:29;12773:6;12751:29;:::i;:::-;12743:37;;12835:4;12829;12825:15;12817:23;;12540:307;;;:::o;12853:146::-;12950:6;12945:3;12940;12927:30;12991:1;12982:6;12977:3;12973:16;12966:27;12853:146;;;:::o;13005:423::-;13082:5;13107:65;13123:48;13164:6;13123:48;:::i;:::-;13107:65;:::i;:::-;13098:74;;13195:6;13188:5;13181:21;13233:4;13226:5;13222:16;13271:3;13262:6;13257:3;13253:16;13250:25;13247:112;;;13278:79;;:::i;:::-;13247:112;13368:54;13415:6;13410:3;13405;13368:54;:::i;:::-;13088:340;13005:423;;;;;:::o;13447:338::-;13502:5;13551:3;13544:4;13536:6;13532:17;13528:27;13518:122;;13559:79;;:::i;:::-;13518:122;13676:6;13663:20;13701:78;13775:3;13767:6;13760:4;13752:6;13748:17;13701:78;:::i;:::-;13692:87;;13508:277;13447:338;;;;:::o;13791:943::-;13886:6;13894;13902;13910;13959:3;13947:9;13938:7;13934:23;13930:33;13927:120;;;13966:79;;:::i;:::-;13927:120;14086:1;14111:53;14156:7;14147:6;14136:9;14132:22;14111:53;:::i;:::-;14101:63;;14057:117;14213:2;14239:53;14284:7;14275:6;14264:9;14260:22;14239:53;:::i;:::-;14229:63;;14184:118;14341:2;14367:53;14412:7;14403:6;14392:9;14388:22;14367:53;:::i;:::-;14357:63;;14312:118;14497:2;14486:9;14482:18;14469:32;14528:18;14520:6;14517:30;14514:117;;;14550:79;;:::i;:::-;14514:117;14655:62;14709:7;14700:6;14689:9;14685:22;14655:62;:::i;:::-;14645:72;;14440:287;13791:943;;;;;;;:::o;14740:474::-;14808:6;14816;14865:2;14853:9;14844:7;14840:23;14836:32;14833:119;;;14871:79;;:::i;:::-;14833:119;14991:1;15016:53;15061:7;15052:6;15041:9;15037:22;15016:53;:::i;:::-;15006:63;;14962:117;15118:2;15144:53;15189:7;15180:6;15169:9;15165:22;15144:53;:::i;:::-;15134:63;;15089:118;14740:474;;;;;:::o;15220:180::-;15268:77;15265:1;15258:88;15365:4;15362:1;15355:15;15389:4;15386:1;15379:15;15406:320;15450:6;15487:1;15481:4;15477:12;15467:22;;15534:1;15528:4;15524:12;15555:18;15545:81;;15611:4;15603:6;15599:17;15589:27;;15545:81;15673:2;15665:6;15662:14;15642:18;15639:38;15636:84;;15692:18;;:::i;:::-;15636:84;15457:269;15406:320;;;:::o;15732:232::-;15872:34;15868:1;15860:6;15856:14;15849:58;15941:15;15936:2;15928:6;15924:15;15917:40;15732:232;:::o;15970:366::-;16112:3;16133:67;16197:2;16192:3;16133:67;:::i;:::-;16126:74;;16209:93;16298:3;16209:93;:::i;:::-;16327:2;16322:3;16318:12;16311:19;;15970:366;;;:::o;16342:419::-;16508:4;16546:2;16535:9;16531:18;16523:26;;16595:9;16589:4;16585:20;16581:1;16570:9;16566:17;16559:47;16623:131;16749:4;16623:131;:::i;:::-;16615:139;;16342:419;;;:::o;16767:159::-;16907:11;16903:1;16895:6;16891:14;16884:35;16767:159;:::o;16932:365::-;17074:3;17095:66;17159:1;17154:3;17095:66;:::i;:::-;17088:73;;17170:93;17259:3;17170:93;:::i;:::-;17288:2;17283:3;17279:12;17272:19;;16932:365;;;:::o;17303:419::-;17469:4;17507:2;17496:9;17492:18;17484:26;;17556:9;17550:4;17546:20;17542:1;17531:9;17527:17;17520:47;17584:131;17710:4;17584:131;:::i;:::-;17576:139;;17303:419;;;:::o;17728:173::-;17868:25;17864:1;17856:6;17852:14;17845:49;17728:173;:::o;17907:366::-;18049:3;18070:67;18134:2;18129:3;18070:67;:::i;:::-;18063:74;;18146:93;18235:3;18146:93;:::i;:::-;18264:2;18259:3;18255:12;18248:19;;17907:366;;;:::o;18279:419::-;18445:4;18483:2;18472:9;18468:18;18460:26;;18532:9;18526:4;18522:20;18518:1;18507:9;18503:17;18496:47;18560:131;18686:4;18560:131;:::i;:::-;18552:139;;18279:419;;;:::o;18704:442::-;18853:4;18891:2;18880:9;18876:18;18868:26;;18904:71;18972:1;18961:9;18957:17;18948:6;18904:71;:::i;:::-;18985:72;19053:2;19042:9;19038:18;19029:6;18985:72;:::i;:::-;19067;19135:2;19124:9;19120:18;19111:6;19067:72;:::i;:::-;18704:442;;;;;;:::o;19152:180::-;19200:77;19197:1;19190:88;19297:4;19294:1;19287:15;19321:4;19318:1;19311:15;19338:194;19378:4;19398:20;19416:1;19398:20;:::i;:::-;19393:25;;19432:20;19450:1;19432:20;:::i;:::-;19427:25;;19476:1;19473;19469:9;19461:17;;19500:1;19494:4;19491:11;19488:37;;;19505:18;;:::i;:::-;19488:37;19338:194;;;;:::o;19538:180::-;19586:77;19583:1;19576:88;19683:4;19680:1;19673:15;19707:4;19704:1;19697:15;19724:233;19763:3;19786:24;19804:5;19786:24;:::i;:::-;19777:33;;19832:66;19825:5;19822:77;19819:103;;19902:18;;:::i;:::-;19819:103;19949:1;19942:5;19938:13;19931:20;;19724:233;;;:::o;19963:114::-;;:::o;20083:364::-;20225:3;20246:66;20310:1;20305:3;20246:66;:::i;:::-;20239:73;;20321:93;20410:3;20321:93;:::i;:::-;20439:1;20434:3;20430:11;20423:18;;20083:364;;;:::o;20453:419::-;20619:4;20657:2;20646:9;20642:18;20634:26;;20706:9;20700:4;20696:20;20692:1;20681:9;20677:17;20670:47;20734:131;20860:4;20734:131;:::i;:::-;20726:139;;20453:419;;;:::o;20878:174::-;21018:26;21014:1;21006:6;21002:14;20995:50;20878:174;:::o;21058:366::-;21200:3;21221:67;21285:2;21280:3;21221:67;:::i;:::-;21214:74;;21297:93;21386:3;21297:93;:::i;:::-;21415:2;21410:3;21406:12;21399:19;;21058:366;;;:::o;21430:419::-;21596:4;21634:2;21623:9;21619:18;21611:26;;21683:9;21677:4;21673:20;21669:1;21658:9;21654:17;21647:47;21711:131;21837:4;21711:131;:::i;:::-;21703:139;;21430:419;;;:::o;21855:228::-;21995:34;21991:1;21983:6;21979:14;21972:58;22064:11;22059:2;22051:6;22047:15;22040:36;21855:228;:::o;22089:366::-;22231:3;22252:67;22316:2;22311:3;22252:67;:::i;:::-;22245:74;;22328:93;22417:3;22328:93;:::i;:::-;22446:2;22441:3;22437:12;22430:19;;22089:366;;;:::o;22461:419::-;22627:4;22665:2;22654:9;22650:18;22642:26;;22714:9;22708:4;22704:20;22700:1;22689:9;22685:17;22678:47;22742:131;22868:4;22742:131;:::i;:::-;22734:139;;22461:419;;;:::o;22886:143::-;22943:5;22974:6;22968:13;22959:22;;22990:33;23017:5;22990:33;:::i;:::-;22886:143;;;;:::o;23035:351::-;23105:6;23154:2;23142:9;23133:7;23129:23;23125:32;23122:119;;;23160:79;;:::i;:::-;23122:119;23280:1;23305:64;23361:7;23352:6;23341:9;23337:22;23305:64;:::i;:::-;23295:74;;23251:128;23035:351;;;;:::o;23392:167::-;23532:19;23528:1;23520:6;23516:14;23509:43;23392:167;:::o;23565:366::-;23707:3;23728:67;23792:2;23787:3;23728:67;:::i;:::-;23721:74;;23804:93;23893:3;23804:93;:::i;:::-;23922:2;23917:3;23913:12;23906:19;;23565:366;;;:::o;23937:419::-;24103:4;24141:2;24130:9;24126:18;24118:26;;24190:9;24184:4;24180:20;24176:1;24165:9;24161:17;24154:47;24218:131;24344:4;24218:131;:::i;:::-;24210:139;;23937:419;;;:::o;24362:410::-;24402:7;24425:20;24443:1;24425:20;:::i;:::-;24420:25;;24459:20;24477:1;24459:20;:::i;:::-;24454:25;;24514:1;24511;24507:9;24536:30;24554:11;24536:30;:::i;:::-;24525:41;;24715:1;24706:7;24702:15;24699:1;24696:22;24676:1;24669:9;24649:83;24626:139;;24745:18;;:::i;:::-;24626:139;24410:362;24362:410;;;;:::o;24778:191::-;24818:3;24837:20;24855:1;24837:20;:::i;:::-;24832:25;;24871:20;24889:1;24871:20;:::i;:::-;24866:25;;24914:1;24911;24907:9;24900:16;;24935:3;24932:1;24929:10;24926:36;;;24942:18;;:::i;:::-;24926:36;24778:191;;;;:::o;24975:224::-;25115:34;25111:1;25103:6;25099:14;25092:58;25184:7;25179:2;25171:6;25167:15;25160:32;24975:224;:::o;25205:366::-;25347:3;25368:67;25432:2;25427:3;25368:67;:::i;:::-;25361:74;;25444:93;25533:3;25444:93;:::i;:::-;25562:2;25557:3;25553:12;25546:19;;25205:366;;;:::o;25577:419::-;25743:4;25781:2;25770:9;25766:18;25758:26;;25830:9;25824:4;25820:20;25816:1;25805:9;25801:17;25794:47;25858:131;25984:4;25858:131;:::i;:::-;25850:139;;25577:419;;;:::o;26002:223::-;26142:34;26138:1;26130:6;26126:14;26119:58;26211:6;26206:2;26198:6;26194:15;26187:31;26002:223;:::o;26231:366::-;26373:3;26394:67;26458:2;26453:3;26394:67;:::i;:::-;26387:74;;26470:93;26559:3;26470:93;:::i;:::-;26588:2;26583:3;26579:12;26572:19;;26231:366;;;:::o;26603:419::-;26769:4;26807:2;26796:9;26792:18;26784:26;;26856:9;26850:4;26846:20;26842:1;26831:9;26827:17;26820:47;26884:131;27010:4;26884:131;:::i;:::-;26876:139;;26603:419;;;:::o;27028:148::-;27130:11;27167:3;27152:18;;27028:148;;;;:::o;27182:390::-;27288:3;27316:39;27349:5;27316:39;:::i;:::-;27371:89;27453:6;27448:3;27371:89;:::i;:::-;27364:96;;27469:65;27527:6;27522:3;27515:4;27508:5;27504:16;27469:65;:::i;:::-;27559:6;27554:3;27550:16;27543:23;;27292:280;27182:390;;;;:::o;27578:435::-;27758:3;27780:95;27871:3;27862:6;27780:95;:::i;:::-;27773:102;;27892:95;27983:3;27974:6;27892:95;:::i;:::-;27885:102;;28004:3;27997:10;;27578:435;;;;;:::o;28019:143::-;28076:5;28107:6;28101:13;28092:22;;28123:33;28150:5;28123:33;:::i;:::-;28019:143;;;;:::o;28168:351::-;28238:6;28287:2;28275:9;28266:7;28262:23;28258:32;28255:119;;;28293:79;;:::i;:::-;28255:119;28413:1;28438:64;28494:7;28485:6;28474:9;28470:22;28438:64;:::i;:::-;28428:74;;28384:128;28168:351;;;;:::o;28525:225::-;28665:34;28661:1;28653:6;28649:14;28642:58;28734:8;28729:2;28721:6;28717:15;28710:33;28525:225;:::o;28756:366::-;28898:3;28919:67;28983:2;28978:3;28919:67;:::i;:::-;28912:74;;28995:93;29084:3;28995:93;:::i;:::-;29113:2;29108:3;29104:12;29097:19;;28756:366;;;:::o;29128:419::-;29294:4;29332:2;29321:9;29317:18;29309:26;;29381:9;29375:4;29371:20;29367:1;29356:9;29352:17;29345:47;29409:131;29535:4;29409:131;:::i;:::-;29401:139;;29128:419;;;:::o;29553:224::-;29693:34;29689:1;29681:6;29677:14;29670:58;29762:7;29757:2;29749:6;29745:15;29738:32;29553:224;:::o;29783:366::-;29925:3;29946:67;30010:2;30005:3;29946:67;:::i;:::-;29939:74;;30022:93;30111:3;30022:93;:::i;:::-;30140:2;30135:3;30131:12;30124:19;;29783:366;;;:::o;30155:419::-;30321:4;30359:2;30348:9;30344:18;30336:26;;30408:9;30402:4;30398:20;30394:1;30383:9;30379:17;30372:47;30436:131;30562:4;30436:131;:::i;:::-;30428:139;;30155:419;;;:::o;30580:224::-;30720:34;30716:1;30708:6;30704:14;30697:58;30789:7;30784:2;30776:6;30772:15;30765:32;30580:224;:::o;30810:366::-;30952:3;30973:67;31037:2;31032:3;30973:67;:::i;:::-;30966:74;;31049:93;31138:3;31049:93;:::i;:::-;31167:2;31162:3;31158:12;31151:19;;30810:366;;;:::o;31182:419::-;31348:4;31386:2;31375:9;31371:18;31363:26;;31435:9;31429:4;31425:20;31421:1;31410:9;31406:17;31399:47;31463:131;31589:4;31463:131;:::i;:::-;31455:139;;31182:419;;;:::o;31607:182::-;31747:34;31743:1;31735:6;31731:14;31724:58;31607:182;:::o;31795:366::-;31937:3;31958:67;32022:2;32017:3;31958:67;:::i;:::-;31951:74;;32034:93;32123:3;32034:93;:::i;:::-;32152:2;32147:3;32143:12;32136:19;;31795:366;;;:::o;32167:419::-;32333:4;32371:2;32360:9;32356:18;32348:26;;32420:9;32414:4;32410:20;32406:1;32395:9;32391:17;32384:47;32448:131;32574:4;32448:131;:::i;:::-;32440:139;;32167:419;;;:::o;32592:172::-;32732:24;32728:1;32720:6;32716:14;32709:48;32592:172;:::o;32770:366::-;32912:3;32933:67;32997:2;32992:3;32933:67;:::i;:::-;32926:74;;33009:93;33098:3;33009:93;:::i;:::-;33127:2;33122:3;33118:12;33111:19;;32770:366;;;:::o;33142:419::-;33308:4;33346:2;33335:9;33331:18;33323:26;;33395:9;33389:4;33385:20;33381:1;33370:9;33366:17;33359:47;33423:131;33549:4;33423:131;:::i;:::-;33415:139;;33142:419;;;:::o;33567:243::-;33707:34;33703:1;33695:6;33691:14;33684:58;33780:18;33775:2;33767:6;33763:15;33756:43;33567:243;:::o;33820:418::-;33980:3;34005:85;34087:2;34082:3;34005:85;:::i;:::-;33998:92;;34103:93;34192:3;34103:93;:::i;:::-;34225:2;34220:3;34216:12;34209:19;;33820:418;;;:::o;34248:557::-;34481:3;34507:148;34651:3;34507:148;:::i;:::-;34500:155;;34676:95;34767:3;34758:6;34676:95;:::i;:::-;34669:102;;34792:3;34785:10;;34248:557;;;;:::o;34815:249::-;34959:34;34955:1;34947:6;34943:14;34936:58;35032:20;35027:2;35019:6;35015:15;35008:45;34815:249;:::o;35074:382::-;35216:3;35241:67;35305:2;35300:3;35241:67;:::i;:::-;35234:74;;35321:93;35410:3;35321:93;:::i;:::-;35443:2;35438:3;35434:12;35427:19;;35074:382;;;:::o;35466:435::-;35632:4;35674:2;35663:9;35659:18;35651:26;;35727:9;35721:4;35717:20;35713:1;35702:9;35698:17;35691:47;35759:131;35885:4;35759:131;:::i;:::-;35751:139;;35466:435;;;:::o;35911:190::-;36055:34;36051:1;36043:6;36039:14;36032:58;35911:190;:::o;36111:382::-;36253:3;36278:67;36342:2;36337:3;36278:67;:::i;:::-;36271:74;;36358:93;36447:3;36358:93;:::i;:::-;36480:2;36475:3;36471:12;36464:19;;36111:382;;;:::o;36503:435::-;36669:4;36711:2;36700:9;36696:18;36688:26;;36764:9;36758:4;36754:20;36750:1;36739:9;36735:17;36728:47;36796:131;36922:4;36796:131;:::i;:::-;36788:139;;36503:435;;;:::o;36948:186::-;37092:30;37088:1;37080:6;37076:14;37069:54;36948:186;:::o;37144:382::-;37286:3;37311:67;37375:2;37370:3;37311:67;:::i;:::-;37304:74;;37391:93;37480:3;37391:93;:::i;:::-;37513:2;37508:3;37504:12;37497:19;;37144:382;;;:::o;37536:435::-;37702:4;37744:2;37733:9;37729:18;37721:26;;37797:9;37791:4;37787:20;37783:1;37772:9;37768:17;37761:47;37829:131;37955:4;37829:131;:::i;:::-;37821:139;;37536:435;;;:::o;37981:196::-;38033:77;38030:1;38023:88;38134:4;38131:1;38124:15;38162:4;38159:1;38152:15;38187:245;38331:34;38327:1;38319:6;38315:14;38308:58;38404:16;38399:2;38391:6;38387:15;38380:41;38187:245;:::o;38442:382::-;38584:3;38609:67;38673:2;38668:3;38609:67;:::i;:::-;38602:74;;38689:93;38778:3;38689:93;:::i;:::-;38811:2;38806:3;38802:12;38795:19;;38442:382;;;:::o;38834:435::-;39000:4;39042:2;39031:9;39027:18;39019:26;;39095:9;39089:4;39085:20;39081:1;39070:9;39066:17;39059:47;39127:131;39253:4;39127:131;:::i;:::-;39119:139;;38834:435;;;:::o;39279:157::-;39328:4;39355:3;39347:11;;39382:3;39379:1;39372:14;39420:4;39417:1;39407:18;39399:26;;39279:157;;;:::o;39446:101::-;39483:6;39534:2;39529;39522:5;39518:14;39514:23;39504:33;;39446:101;;;:::o;39557:119::-;39601:8;39659:5;39653:4;39649:16;39624:41;;39557:119;;;;:::o;39686:417::-;39755:6;39809:1;39797:10;39793:18;39836:97;39866:66;39855:9;39836:97;:::i;:::-;39958:39;39988:8;39977:9;39958:39;:::i;:::-;39946:51;;40034:4;40030:9;40023:5;40019:21;40010:30;;40087:4;40077:8;40073:19;40066:5;40063:30;40053:40;;39762:341;;39686:417;;;;;:::o;40113:68::-;40141:3;40166:5;40159:12;;40113:68;;;:::o;40191:150::-;40241:9;40278:53;40296:34;40305:24;40323:5;40305:24;:::i;:::-;40296:34;:::i;:::-;40278:53;:::i;:::-;40265:66;;40191:150;;;:::o;40351:83::-;40394:3;40419:5;40412:12;;40351:83;;;:::o;40444:281::-;40558:39;40589:7;40558:39;:::i;:::-;40623:91;40672:41;40696:16;40672:41;:::i;:::-;40664:6;40657:4;40651:11;40623:91;:::i;:::-;40617:4;40610:105;40520:205;40444:281;;;:::o;40735:81::-;40780:3;40735:81;:::o;40826:201::-;40907:32;;:::i;:::-;40952:65;41010:6;41002;40996:4;40952:65;:::i;:::-;40879:148;40826:201;;:::o;41037:206::-;41101:132;41118:3;41111:5;41108:14;41101:132;;;41180:39;41217:1;41210:5;41180:39;:::i;:::-;41145:1;41138:5;41134:13;41125:22;;41101:132;;;41037:206;;:::o;41253:575::-;41358:2;41353:3;41350:11;41347:470;;;41396:38;41428:5;41396:38;:::i;:::-;41484:29;41502:10;41484:29;:::i;:::-;41474:8;41470:44;41675:2;41663:10;41660:18;41657:49;;;41696:8;41681:23;;41657:49;41723:80;41779:22;41797:3;41779:22;:::i;:::-;41769:8;41765:37;41752:11;41723:80;:::i;:::-;41362:455;;41347:470;41253:575;;;:::o;41838:129::-;41892:8;41950:5;41944:4;41940:16;41915:41;;41838:129;;;;:::o;41977:181::-;42021:6;42058:51;42106:1;42102:6;42094:5;42091:1;42087:13;42058:51;:::i;:::-;42054:56;42143:4;42137;42133:15;42123:25;;42028:130;41977:181;;;;:::o;42167:315::-;42243:4;42401:29;42426:3;42420:4;42401:29;:::i;:::-;42393:37;;42467:3;42464:1;42460:11;42454:4;42451:21;42443:29;;42167:315;;;;:::o;42491:1523::-;42612:37;42645:3;42612:37;:::i;:::-;42722:18;42714:6;42711:30;42708:56;;;42744:18;;:::i;:::-;42708:56;42792:38;42824:4;42818:11;42792:38;:::i;:::-;42885:67;42945:6;42937;42931:4;42885:67;:::i;:::-;42983:1;43011:4;42998:17;;43047:2;43039:6;43036:14;43068:1;43063:674;;;;43789:1;43810:6;43807:85;;;43863:9;43858:3;43854:19;43848:26;43839:35;;43807:85;43922:67;43982:6;43975:5;43922:67;:::i;:::-;43916:4;43909:81;43758:246;43029:975;;43063:674;43119:4;43115:9;43107:6;43103:22;43157:37;43189:4;43157:37;:::i;:::-;43220:1;43238:224;43252:7;43249:1;43246:14;43238:224;;;43335:9;43330:3;43326:19;43320:26;43312:6;43305:42;43390:1;43382:6;43378:14;43368:24;;43441:2;43430:9;43426:18;43413:31;;43275:4;43272:1;43268:12;43263:17;;43238:224;;;43494:6;43485:7;43482:19;43479:191;;;43556:9;43551:3;43547:19;43541:26;43603:48;43645:4;43637:6;43633:17;43622:9;43603:48;:::i;:::-;43595:6;43588:64;43502:168;43479:191;43720:1;43716;43708:6;43704:14;43700:22;43694:4;43687:36;43070:667;;;43029:975;;42583:1431;;;42491:1523;;:::o;44024:106::-;44075:6;44113:5;44107:12;44097:22;;44024:106;;;:::o;44140:180::-;44223:11;44261:6;44256:3;44249:19;44305:4;44300:3;44296:14;44281:29;;44140:180;;;;:::o;44330:393::-;44416:3;44448:38;44480:5;44448:38;:::i;:::-;44506:70;44569:6;44564:3;44506:70;:::i;:::-;44499:77;;44589:65;44647:6;44642:3;44635:4;44628:5;44624:16;44589:65;:::i;:::-;44683:29;44705:6;44683:29;:::i;:::-;44678:3;44674:39;44667:46;;44420:303;44330:393;;;;:::o;44733:668::-;44928:4;44970:3;44959:9;44955:19;44947:27;;44988:71;45056:1;45045:9;45041:17;45032:6;44988:71;:::i;:::-;45073:72;45141:2;45130:9;45126:18;45117:6;45073:72;:::i;:::-;45159;45227:2;45216:9;45212:18;45203:6;45159:72;:::i;:::-;45282:9;45276:4;45272:20;45267:2;45256:9;45252:18;45245:48;45314:76;45385:4;45376:6;45314:76;:::i;:::-;45306:84;;44733:668;;;;;;;:::o;45411:153::-;45467:5;45502:6;45496:13;45487:22;;45522:32;45548:5;45522:32;:::i;:::-;45411:153;;;;:::o;45574:373::-;45643:6;45696:2;45684:9;45675:7;45671:23;45667:32;45664:119;;;45702:79;;:::i;:::-;45664:119;45830:1;45859:63;45914:7;45905:6;45894:9;45890:22;45859:63;:::i;:::-;45849:73;;45797:139;45574:373;;;;:::o

Swarm Source

ipfs://72031829907576f64253e4fe2226e6c2de8c0ff80ebc0dd082be2f3fd2e25a8a
Loading...
Loading
Loading...
Loading
[ 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.