false

Contract Address Details

0x720427227eDbA6eB41aba66F81B0cEf70b6A0da1

Contract Name
LiquidityBoostProgram
Creator
0x0bad1a–c69686 at 0xc85794–805780
Balance
533,982.299143929225347289 GANG Token
Tokens
Fetching tokens...
Transactions
32 Transactions
Transfers
99 Transfers
Gas Used
9,258,567
Last Balance Update
7435372
Contract name:
LiquidityBoostProgram




Optimization enabled
true
Compiler version
v0.8.19+commit.7dd6d404




Optimization runs
999999
EVM Version
default




Verified at
2024-01-28T10:04:06.404037Z

Constructor Arguments

0x0000000000000000000000002bafd05252adca1143b77a88a72e1022b59ad379000000000000000000000000187d9011861dc79424bf556e315521897b4a501d00000000000000000000000012fdbd4f6e89483ead15b4a29bb090fee3e340ab000000000000000000000000199bc0afd8026edd8d8c48d83c7b4dd81c97a0820000000000000000000000000000000000000000000000000000000065b5df50

Arg [0] (address) : 0x2bafd05252adca1143b77a88a72e1022b59ad379
Arg [1] (address) : 0x187d9011861dc79424bf556e315521897b4a501d
Arg [2] (address) : 0x12fdbd4f6e89483ead15b4a29bb090fee3e340ab
Arg [3] (address) : 0x199bc0afd8026edd8d8c48d83c7b4dd81c97a082
Arg [4] (uint256) : 1706418000

              

Contract source code

// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

/**
 * @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;
    }
}




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

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

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

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

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

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

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

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

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




interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}




interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}




/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}




/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}




/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}




/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with a
     * `customRevert` function as a fallback when `target` reverts.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     */
    function functionCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, customRevert);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with a `customRevert` function as a fallback revert reason when `target` reverts.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, defaultRevert);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, defaultRevert);
    }

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

    /**
     * @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 `customRevert`) in case of unsuccessful call or if target was not a contract.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check if target is a contract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                if (target.code.length == 0) {
                    revert AddressEmptyCode(target);
                }
            }
            return returndata;
        } else {
            _revert(returndata, customRevert);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or with a default revert error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal view returns (bytes memory) {
        return verifyCallResult(success, returndata, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-verifyCallResult-bool-bytes-}[`verifyCallResult`], but with a
     * `customRevert` function as a fallback when `success` is `false`.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, customRevert);
        }
    }

    /**
     * @dev Default reverting function when no `customRevert` is provided in a function call.
     */
    function defaultRevert() internal pure {
        revert FailedInnerCall();
    }

    function _revert(bytes memory returndata, function() internal view customRevert) private view {
        // 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 {
            customRevert();
            revert FailedInnerCall();
        }
    }
}




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        if (nonceAfter != nonceBefore + 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}




interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}




/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}




/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 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.

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && 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
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}




/*  _____________________________________________________________________________

    Gauss: Liquidity Boost Program

    MIT License. (c) 2024 Gauss Gang Inc. 

    _____________________________________________________________________________
*/


/* LiquidityBoostProgram Contract
----------------------------------------------------------------------------
 The LiquidityBoostProgram (LBP) contract is designed to facilitate liquidity provisioning
 in a decentralized finance (DeFi) ecosystem. Participants can enter the LBP by staking
 USDC.pol tokens and agreeing to a 10% fee. In return, participants receive equivalent
 GANG tokens as a reward for providing liquidity to the USDC.pol:GANG Uniswap Pairing as
 well as a bonus to be sent out to those who remain staked during the entire 12 month period.

 Participants can unstake their liquidity at any time, but if they do so before the LBP
 ends, they forfeit accumulated rewards. Additionally, the contract allows participants
 to confirm their understanding of the risks associated with early unstaking.

 The contract maintains a list of participants, their USDC.pol and LP token balances, and
 tracks the total USDC.pol liquidity provided. It also supports functionality for the owner
 to withdraw any accidentally sent ERC-20 tokens and recover native tokens.

 Key Features:
 - Participants can enter the LBP by staking USDC.pol, receiving GANG tokens in return.
 - Participants can unstake liquidity, with risks associated with early unstaking.
 - Owner can withdraw accidentally sent ERC-20 tokens and recover native tokens.
 - LBP can be paused, unpaused, closed, and finalized by the contract owner.
 - Participant information, entry, and unstake receipts can be accessed by the owner.
 ----------------------------------------------------------------------------
*/
contract LiquidityBoostProgram is Ownable, ReentrancyGuard, Pausable {

    struct ParticipantInfo {
        address walletAddress;          // Participant wallet address.
        uint256 USDCpolBalance;         // Participant USDC.pol Balances.
        uint256 lpBalance;              // Participant LP Token Balances.
        bool earlyReleaseConfirmation;  // Participant early release confirmation.
        bool unstakedEarly;             // Participant unstaked early flag.
    }

    // Mapping of all Participants.
    mapping(address => ParticipantInfo) public _participants;

    // List of entries and unstakes in the LBP.
    ParticipantInfo[] private participantEntryList;
    ParticipantInfo[] private participantUnstakeList;
    
    // Token sent for entries.
    IERC20 public USDCpol;

    // USDC.pol:GANG Pair on NobleSwap.
    IUniswapV2Pair public USDCpolGANGPair;

    // Gauss wallet to receive Fee.
    address payable public gaussWallet;

    // NobleSwap Router Address.
    address public _nobleRouter;

    // Start Time and Duration for the LBP.
    uint256 public StartTime;
    uint256 public EndTime;
    uint256 public Duration;

    // Total amount of USDC.pol received in LBP, specifically for Liquidity.
    uint256 public totalUSDCpolLiquidity;

    // Fee rate to enter the LBP
    uint256 public immutable _precisionFactor = 10000;
    uint256 public immutable _FeeRate = 1000; // 1000/10000 = 10%

    // A varaible to determine whether the LBP is closed or not.
    bool public _closed;

    event LiquidityAdded(address indexed participant, uint256 usdcAmount, uint256 gangAmount, uint256 lpReceived);
    event LiquidityRemoved(address indexed participant, uint256 lpAmount, uint256 usdcAmount, uint256 gangAmount);
    event Recover(address to, address token, uint amount);


    constructor(address _USDCpol, address payable _gaussWallet, address _nobleRouterAddress, address _USDCpolGANGPair, uint256 _startTimestamp) {
        USDCpol = IERC20(_USDCpol);
        gaussWallet = _gaussWallet;
        _nobleRouter = _nobleRouterAddress;
        USDCpolGANGPair = IUniswapV2Pair(_USDCpolGANGPair);
        StartTime = _startTimestamp;
        Duration = 31536000;
        EndTime = StartTime + Duration;
        _closed = false;
        totalUSDCpolLiquidity = 0;
    }


    // Receive function to recieve GANG.
    receive() external payable {}


    // Function to stake USDC.pol into the Liquidity Boost Program. By entering, the user agrees
    // to a 10% Fee apllied from the USDC.pol sent and Gauss will match the orginal amount sent
    // in the equivalent GANG amount
    function enterLBP(uint256 _usdcAmount) external nonReentrant whenNotPaused() {
        address userAddr = msg.sender;
        _validateEntry(userAddr, _usdcAmount);
        _processEntry(userAddr, _usdcAmount);
    }


    /*  Function to allow participants to unstake their Liquidity from the LBP.
            NOTE: Participants can unstake at ANY time, however, if one unstakes
                  their LP before the end of the LBP they forfit the Rewards from
                  the LBP and the GANG side of the Pairing and only receive the
                  USDC.pol the entered with minus the Fee to enter the LBP.
    */
    function unstakeLBP() public nonReentrant whenNotPaused() {
        address userAddr = msg.sender;

        require(_participants[userAddr].lpBalance > 0, "Gauss_LBP: No LP tokens staked");

        if (block.timestamp > EndTime) {
            require(USDCpolGANGPair.transfer(userAddr, _participants[userAddr].lpBalance), "Gauss_LBP: Unable to transfer LP Token to the Recipiant Wallet");
            _participants[userAddr].lpBalance = 0;
            participantUnstakeList.push(_participants[userAddr]);
        }
        
        else if (block.timestamp < EndTime) {
            require(_participants[userAddr].earlyReleaseConfirmation == true, "Gauss_LBP: Participant has not confirmed risks for early unstaking");

            require(USDCpolGANGPair.transfer(userAddr, _participants[userAddr].lpBalance), "Gauss_LBP: Unable to transfer LP Token to the Recipiant Wallet");
            _participants[userAddr].lpBalance = 0;
            _participants[userAddr].unstakedEarly = true;
            participantUnstakeList.push(_participants[userAddr]);
        }
    }


    // Function to allow Participants to confirm the risks associated with unstaking early
    //      - When unstaking early, users forfit their LP Tokens and accumalated rewards
    //        and receive the USDC they originally put in, minus the 10% Fee to enter LBP
    function confirmEarlyUnstake() public nonReentrant whenNotPaused() {
        _participants[msg.sender].earlyReleaseConfirmation = true;
    }  

    
    // Validation of an incoming Entry. Uses require statements to revert state when conditions are not met.
    function _validateEntry(address _sender, uint256 _usdcAmount) internal view {
        require(block.timestamp < EndTime, "Gauss_LBP: current time is after the end of the Contest");
        require(_closed == false, "Gauss_LBP: contest is no longer open");
        require(_sender != address(0), "Gauss_LBP: sender can not be Zero Address");
        require(_usdcAmount >= 10000000, "Gauss_LBP: amount of USDC.pol must be greater than $10.00 USDC.pol");
        require((totalUSDCpolLiquidity + _usdcAmount) <= 100000000000, "Gauss_LBP: exceeded maximum LBP tier amount");
    }


    // Processes the Entry by determining the number of entries and sending over the tokens
    function _processEntry(address _sender, uint256 _usdcAmount) internal {
        
        // Check allowance before transferring USDC.pol
        require(USDCpol.allowance(_sender, address(this)) >= _usdcAmount, "Gauss_LBP: Allowance for USDC.pol is too low, please increase the allowance before sending");
        require(USDCpol.transferFrom(_sender, address(this), _usdcAmount), "Gauss_LBP: Unable to transfer USDC.pol to the contract");

        // Calculate fee and liquidity amounts
        uint256 feeAmount = Math.mulDiv(_usdcAmount, _FeeRate, _precisionFactor, Math.Rounding.Trunc);
        uint256 liquidityAmount = _usdcAmount - feeAmount;

        // Transfer fee to Gauss wallet
        require(USDCpol.transfer(gaussWallet, feeAmount), "Gauss_LBP: Unable to transfer USDC.pol to the Gauss Wallet");

        // Add liquidity
        _addLiquidity(_sender, liquidityAmount);

        // Update participant balances and total USDC.pol liquidity
        _participants[_sender].USDCpolBalance += liquidityAmount;
        totalUSDCpolLiquidity += liquidityAmount;

        // Update participant wallet address and add to entry list
        _participants[_sender].walletAddress = _sender;
        participantEntryList.push(_participants[_sender]);
    }


    // Internal function to add Liquidity to the NobleSwap USDC.pol:GANG Pairing
    function _addLiquidity(address _sender, uint256 _usdcAmount) internal {

        // Approve NobleSwap Router to spend USDC
        USDCpol.approve(_nobleRouter, _usdcAmount);

        // Calculate GANG amount
        uint256 gangAmount = _calculateGANGamount(_usdcAmount);
        require(gangAmount > 0, "Gauss_LBP: could not calculate GANG amount");

        // Calculate minumum USDC amount and GANG Amount
        uint256 USDCslippageAmount = Math.mulDiv(_usdcAmount, 1500, _precisionFactor, Math.Rounding.Trunc); // 15% Slippage tollerance
        uint256 minUSDC = _usdcAmount - USDCslippageAmount;

        uint256 GANGslippageAmount = Math.mulDiv(gangAmount, 5000, _precisionFactor, Math.Rounding.Trunc); // 50% Slippage tollerance
        uint256 maxGANG = gangAmount + GANGslippageAmount;

        uint256 beforeBalance = USDCpolGANGPair.balanceOf(address(this));

        // Add Liquidity
        IUniswapV2Router02(_nobleRouter).addLiquidityETH{value: maxGANG}(
            address(USDCpol),
            _usdcAmount,
            minUSDC,
            gangAmount,
            address(this), // LP tokens will be sent to the LBP Contract
            block.timestamp + 60 // 1 minute deadline
        );

        // Calculate the received LP Amount
        uint256 afterBalance = USDCpolGANGPair.balanceOf(address(this));
        uint256 lpReceived = afterBalance - beforeBalance;
        require(lpReceived > 0, "Gauss_LBP: No LP tokens received");

        // Update Participant Info
        uint256 participantLP = lpReceived / 2; // Participant is putting up the USDC.pol half of the GANG:USDC.pol Pairing
        _participants[_sender].lpBalance = _participants[_sender].lpBalance + participantLP;
        emit LiquidityAdded(_sender, _usdcAmount, gangAmount, lpReceived);
    }


    // Internal function to determine the correct amount of GANG to send along with the users USDC.pol
    function _calculateGANGamount(uint256 _usdcAmount) internal view returns (uint256) {

        address wGANGaddress = IUniswapV2Router02(_nobleRouter).WETH();

        if (USDCpolGANGPair.token0() == address(USDCpol)) {
            // Get reserves from NobleSwap Router
            (uint112 reserveUSDC, uint112 reserveWGANG,) = USDCpolGANGPair.getReserves();

            // Calculate the equivalent amount of GANG for the given USDC.pol amount
            uint256 gangAmount = IUniswapV2Router02(_nobleRouter).getAmountOut(_usdcAmount, reserveUSDC, reserveWGANG);

            return gangAmount;
        }

        else if (USDCpolGANGPair.token0() == wGANGaddress) {
            // Get reserves from NobleSwap Router
            (uint112 reserveWGANG, uint112 reserveUSDC,) = USDCpolGANGPair.getReserves();

            // Calculate the equivalent amount of GANG for the given USDC.pol amount
            uint256 gangAmount = IUniswapV2Router02(_nobleRouter).getAmountOut(_usdcAmount, reserveUSDC, reserveWGANG);

            return gangAmount;

        }
        
        else {
            return 0;
        }
    }


    /* Withdrawl any ERC20 Token that are accidentally sent to this contract
            WARNING:    Interacting with unsafe tokens or smart contracts can 
                        result in stolen private keys, loss of funds, and drained
                        wallets. Use this function with trusted Tokens/Contracts only
    */
    function withdrawERC20(address tokenAddress, address recoveryWallet) external onlyOwner() {
        IERC20 token = IERC20(tokenAddress);
        uint256 balance = token.balanceOf(address(this));
        require(balance > 0, "Gauss_LBP: No tokens to withdraw");

        token.transfer(recoveryWallet, balance);
        emit Recover(recoveryWallet, tokenAddress, balance);  
    }


    /* Withdrawl any ERC20 Token that are accidentally sent to this contract
            WARNING:    Interacting with unsafe tokens or smart contracts can 
                        result in stolen private keys, loss of funds, and drained
                        wallets. Use this function with trusted Tokens/Contracts only
    */
    function withdrawERC20Amount(address tokenAddress, address recoveryWallet, uint256 amount) external onlyOwner {
        IERC20 token = IERC20(tokenAddress);
        uint256 balance = token.balanceOf(address(this));
        require(balance > amount, "Balance too low to transfer amount");

        token.transfer(recoveryWallet, amount);
        emit Recover(recoveryWallet, tokenAddress, amount);  
    }


    // Contract Owner can withdraw any Native sent accidentally
    function nativeRecover(address recoveryWallet) external onlyOwner() {
        payable(recoveryWallet).transfer(address(this).balance);
    }

    
    // Allows owner to get a list of all participants, their addresses, and the amount they of liquidity they provided.
    function getEntryReceipts() external view onlyOwner() returns(ParticipantInfo[] memory){
        return participantEntryList;
    }


    // Allows owner to get a list of all participants and the state of their balances after they exits the LBP.
    function getUnstakeReceipts() external view onlyOwner() returns(ParticipantInfo[] memory){
        return participantUnstakeList;
    }


    // Pause LBP
    function pause() public onlyOwner() {
        super._pause();
    }


    // Unpause LBP
    function unpause() public onlyOwner() {
        super._unpause();
    }


    // Allows owner to add liquiidity using the left over USDC in the contract. Depending on network demand and splippage, there
    // will be some USDC left over in every transaction. Any rewwards claimed by this will be dispersed to all participants at the
    // end of the 12 month duration.
    function cleanLBP() external onlyOwner() whenNotPaused() {
        uint256 contractUSDCbalance = USDCpol.balanceOf(address(this));
        _addLiquidity(address(this), contractUSDCbalance);
    }


    // Closes the LBP
    function closeLBP() external onlyOwner() {
        require(block.timestamp > StartTime, "Gauss_LBP: current time is before the Start of the LBP");
        _closed = true;
    }


    // Transfers all residual USDC.pol, GANG, and LP tokens to the Gauss wallet at the end of the LBP.
    function finalizeLBP() external payable onlyOwner() {
        require(_closed == true, "Gauss_LBP: program has not been closed.");
        require(block.timestamp > EndTime, "Gauss_LBP: current time is before the end of the LBP");

        // Transfer all USDC.pol coins to the Gauss wallet.
        USDCpol.transfer(gaussWallet, USDCpol.balanceOf(address(this)));

        // Transfer all GANG tokens to the Gauss wallet.
        payable(gaussWallet).transfer(address(this).balance);

        // Transfer all LP Tokens
        USDCpolGANGPair.transfer(gaussWallet, USDCpolGANGPair.balanceOf(address(this)));
    }
}
        

Contract ABI

[{"type":"constructor","inputs":[{"type":"address","name":"_USDCpol","internalType":"address"},{"type":"address","name":"_gaussWallet","internalType":"address payable"},{"type":"address","name":"_nobleRouterAddress","internalType":"address"},{"type":"address","name":"_USDCpolGANGPair","internalType":"address"},{"type":"uint256","name":"_startTimestamp","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"Duration","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"EndTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"StartTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"USDCpol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Pair"}],"name":"USDCpolGANGPair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_FeeRate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_closed","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_nobleRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"walletAddress","internalType":"address"},{"type":"uint256","name":"USDCpolBalance","internalType":"uint256"},{"type":"uint256","name":"lpBalance","internalType":"uint256"},{"type":"bool","name":"earlyReleaseConfirmation","internalType":"bool"},{"type":"bool","name":"unstakedEarly","internalType":"bool"}],"name":"_participants","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_precisionFactor","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"cleanLBP","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"closeLBP","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"confirmEarlyUnstake","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"enterLBP","inputs":[{"type":"uint256","name":"_usdcAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"finalizeLBP","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"gaussWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct LiquidityBoostProgram.ParticipantInfo[]","components":[{"type":"address"},{"type":"uint256"},{"type":"uint256"},{"type":"bool"},{"type":"bool"}]}],"name":"getEntryReceipts","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct LiquidityBoostProgram.ParticipantInfo[]","components":[{"type":"address"},{"type":"uint256"},{"type":"uint256"},{"type":"bool"},{"type":"bool"}]}],"name":"getUnstakeReceipts","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"nativeRecover","inputs":[{"type":"address","name":"recoveryWallet","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalUSDCpolLiquidity","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unstakeLBP","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawERC20","inputs":[{"type":"address","name":"tokenAddress","internalType":"address"},{"type":"address","name":"recoveryWallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawERC20Amount","inputs":[{"type":"address","name":"tokenAddress","internalType":"address"},{"type":"address","name":"recoveryWallet","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"event","name":"LiquidityAdded","inputs":[{"type":"address","name":"participant","indexed":true},{"type":"uint256","name":"usdcAmount","indexed":false},{"type":"uint256","name":"gangAmount","indexed":false},{"type":"uint256","name":"lpReceived","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityRemoved","inputs":[{"type":"address","name":"participant","indexed":true},{"type":"uint256","name":"lpAmount","indexed":false},{"type":"uint256","name":"usdcAmount","indexed":false},{"type":"uint256","name":"gangAmount","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","indexed":true},{"type":"address","name":"newOwner","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","indexed":false}],"anonymous":false},{"type":"event","name":"Recover","inputs":[{"type":"address","name":"to","indexed":false},{"type":"address","name":"token","indexed":false},{"type":"uint256","name":"amount","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","indexed":false}],"anonymous":false},{"type":"error","name":"MathOverflowedMulDiv","inputs":[]},{"type":"receive"}]
              

Contract Creation Code

0x60c06040526127106080526103e860a0523480156200001d57600080fd5b50604051620036cf380380620036cf833981016040819052620000409162000144565b6200004b33620000db565b600180556002805460ff19169055600680546001600160a01b038088166001600160a01b03199283161790925560088054878416908316179055600980548684169083161790556007805492851692909116919091179055600a8190556301e13380600c819055620000be9082620001b8565b600b555050600e805460ff1916905550506000600d5550620001e0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146200014157600080fd5b50565b600080600080600060a086880312156200015d57600080fd5b85516200016a816200012b565b60208701519095506200017d816200012b565b604087015190945062000190816200012b565b6060870151909350620001a3816200012b565b80925050608086015190509295509295909350565b80820180821115620001da57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516134ad6200022260003960008181610415015261275601526000818161033f01528181611c9e01528181611cdf015261277701526134ad6000f3fe6080604052600436106101c65760003560e01c80639456fbcc116100f7578063ccb3094111610095578063ee86e0e111610064578063ee86e0e11461059d578063f2fde38b146105b3578063f7d331ea146105d3578063fc4a4a1e146105f357600080fd5b8063ccb3094114610496578063d5fedc50146104ac578063dd7c5e5414610556578063e7da5eff1461057057600080fd5b8063a67812c9116100d1578063a67812c914610437578063ac6f1f8a1461044c578063ca53c5791461046c578063cb3f15d81461048157600080fd5b80639456fbcc146103b65780639d608103146103d6578063a67481211461040357600080fd5b80635c975abb11610164578063828ea4c21161013e578063828ea4c21461032d5780638456cb5914610361578063890c9c4e146103765780638da5cb5b1461038b57600080fd5b80635c975abb146102df5780636ca57ead14610303578063715018a61461031857600080fd5b806337811e62116101a057806337811e62146102435780633f4ba83a146102955780634339c99f146102aa57806356771e94146102b257600080fd5b806326a078a3146101d25780632bb1f2fd146101fd578063333609781461021f57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610609565b6040516101f49190613135565b60405180910390f35b34801561020957600080fd5b5061021d6102183660046131df565b6106bd565b005b34801561022b57600080fd5b50610235600b5481565b6040519081526020016101f4565b34801561024f57600080fd5b506006546102709073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f4565b3480156102a157600080fd5b5061021d6108e7565b61021d6108f9565b3480156102be57600080fd5b506008546102709073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102eb57600080fd5b5060025460ff165b60405190151581526020016101f4565b34801561030f57600080fd5b5061021d610cda565b34801561032457600080fd5b5061021d610d89565b34801561033957600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b34801561036d57600080fd5b5061021d610d9b565b34801561038257600080fd5b5061021d610dab565b34801561039757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610270565b3480156103c257600080fd5b5061021d6103d1366004613220565b610e00565b3480156103e257600080fd5b506009546102709073ffffffffffffffffffffffffffffffffffffffff1681565b34801561040f57600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b34801561044357600080fd5b506101e7610fff565b34801561045857600080fd5b5061021d610467366004613259565b6110a5565b34801561047857600080fd5b5061021d6110f3565b34801561048d57600080fd5b5061021d611842565b3480156104a257600080fd5b50610235600c5481565b3480156104b857600080fd5b506105136104c7366004613259565b6003602081905260009182526040909120805460018201546002830154929093015473ffffffffffffffffffffffffffffffffffffffff90911692919060ff8082169161010090041685565b6040805173ffffffffffffffffffffffffffffffffffffffff9096168652602086019490945292840191909152151560608301521515608082015260a0016101f4565b34801561056257600080fd5b50600e546102f39060ff1681565b34801561057c57600080fd5b506007546102709073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105a957600080fd5b50610235600d5481565b3480156105bf57600080fd5b5061021d6105ce366004613259565b611908565b3480156105df57600080fd5b5061021d6105ee366004613276565b6119bc565b3480156105ff57600080fd5b50610235600a5481565b60606106136119eb565b6005805480602002602001604051908101604052809291908181526020016000905b828210156106b45760008481526020908190206040805160a08101825260048602909201805473ffffffffffffffffffffffffffffffffffffffff168352600180820154848601526002820154928401929092526003015460ff8082161515606085015261010090910416151560808301529083529092019101610635565b50505050905090565b6106c56119eb565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152839060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610734573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610758919061328f565b90508281116107ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f42616c616e636520746f6f206c6f7720746f207472616e7366657220616d6f7560448201527f6e7400000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301526024820185905283169063a9059cbb906044016020604051808303816000875af1158015610863573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088791906132a8565b506040805173ffffffffffffffffffffffffffffffffffffffff8087168252871660208201529081018490527ff6891c84a6c6af32a6d052172a8acc4c631b1d5057ffa2bc1da268b6938ea2da9060600160405180910390a15050505050565b6108ef6119eb565b6108f7611a6c565b565b6109016119eb565b600e5460ff161515600114610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f47617573735f4c42503a2070726f6772616d20686173206e6f74206265656e2060448201527f636c6f7365642e0000000000000000000000000000000000000000000000000060648201526084016107e5565b600b544211610a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f47617573735f4c42503a2063757272656e742074696d65206973206265666f7260448201527f652074686520656e64206f6620746865204c425000000000000000000000000060648201526084016107e5565b6006546008546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9283169263a9059cbb92169083906370a0823190602401602060405180830381865afa158015610aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac8919061328f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af1158015610b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5c91906132a8565b5060085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610ba3573d6000803e3d6000fd5b506007546008546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9283169263a9059cbb92169083906370a0823190602401602060405180830381865afa158015610c1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c43919061328f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af1158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906132a8565b50565b610ce26119eb565b610cea611ae9565b6006546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610d59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7d919061328f565b9050610cd73082611b56565b610d916119eb565b6108f7600061206d565b610da36119eb565b6108f76120e2565b610db361213d565b610dbb611ae9565b3360009081526003602081905260409091200180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556108f760018055565b610e086119eb565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610e77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9b919061328f565b905060008111610f07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f47617573735f4c42503a204e6f20746f6b656e7320746f20776974686472617760448201526064016107e5565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526024820183905283169063a9059cbb906044016020604051808303816000875af1158015610f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa091906132a8565b506040805173ffffffffffffffffffffffffffffffffffffffff8086168252861660208201529081018290527ff6891c84a6c6af32a6d052172a8acc4c631b1d5057ffa2bc1da268b6938ea2da9060600160405180910390a150505050565b60606110096119eb565b6004805460408051602080840282018101909252828152929190600090840182156106b45760008481526020908190206040805160a08101825260048602909201805473ffffffffffffffffffffffffffffffffffffffff168352600180820154848601526002820154928401929092526003015460ff8082161515606085015261010090910416151560808301529083529092019101610635565b6110ad6119eb565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156110ef573d6000803e3d6000fd5b5050565b6110fb61213d565b611103611ae9565b3360008181526003602052604090206002015461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f47617573735f4c42503a204e6f204c5020746f6b656e73207374616b6564000060448201526064016107e5565b600b544211156114665760075473ffffffffffffffffffffffffffffffffffffffff828116600081815260036020526040908190206002015490517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810192909252602482015291169063a9059cbb906044016020604051808303816000875af1158015611212573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123691906132a8565b6112c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f47617573735f4c42503a20556e61626c6520746f207472616e73666572204c5060448201527f20546f6b656e20746f2074686520526563697069616e742057616c6c6574000060648201526084016107e5565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600360208190526040822060028101838155600580546001818101835591909552825460049095027f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169690971695909517909555938101547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db184015592547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db28301559190910180547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db3909201805460ff93841615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082168117835592546101009081900490941615159093027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9092167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090931692909217179055611838565b600b544210156118385773ffffffffffffffffffffffffffffffffffffffff81166000908152600360208190526040909120015460ff161515600114611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f47617573735f4c42503a205061727469636970616e7420686173206e6f74206360448201527f6f6e6669726d6564207269736b7320666f72206561726c7920756e7374616b6960648201527f6e67000000000000000000000000000000000000000000000000000000000000608482015260a4016107e5565b60075473ffffffffffffffffffffffffffffffffffffffff828116600081815260036020526040908190206002015490517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810192909252602482015291169063a9059cbb906044016020604051808303816000875af11580156115e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160491906132a8565b611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f47617573735f4c42503a20556e61626c6520746f207472616e73666572204c5060448201527f20546f6b656e20746f2074686520526563697069616e742057616c6c6574000060648201526084016107e5565b73ffffffffffffffffffffffffffffffffffffffff808216600090815260036020819052604082206002810183815591810180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9081166101009081178355600580546001818101835591909752845460049097027f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016989099169790971790975595909201547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db185015591547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db284015581547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db3909301805460ff94851615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008216811783559354869004909416151590940291167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000909216919091171790555b506108f760018055565b61184a6119eb565b600a5442116118db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f47617573735f4c42503a2063757272656e742074696d65206973206265666f7260448201527f6520746865205374617274206f6620746865204c42500000000000000000000060648201526084016107e5565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6119106119eb565b73ffffffffffffffffffffffffffffffffffffffff81166119b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107e5565b610cd78161206d565b6119c461213d565b6119cc611ae9565b336119d781836121b0565b6119e181836124d1565b50610cd760018055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e5565b611a74612adc565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60025460ff16156108f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107e5565b6006546009546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526024810184905291169063095ea7b3906044016020604051808303816000875af1158015611bd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf591906132a8565b506000611c0182612b48565b905060008111611c93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f47617573735f4c42503a20636f756c64206e6f742063616c63756c617465204760448201527f414e4720616d6f756e740000000000000000000000000000000000000000000060648201526084016107e5565b6000611cc4836105dc7f00000000000000000000000000000000000000000000000000000000000000006002612fbb565b90506000611cd282856132f9565b90506000611d05846113887f00000000000000000000000000000000000000000000000000000000000000006002612fbb565b90506000611d138286613312565b6007546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015291925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dab919061328f565b60095460065491925073ffffffffffffffffffffffffffffffffffffffff9081169163f305d719918591168a888b30611de542603c613312565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015611e77573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e9c9190613325565b50506007546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000925073ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f34919061328f565b90506000611f4283836132f9565b905060008111611fae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f47617573735f4c42503a204e6f204c5020746f6b656e7320726563656976656460448201526064016107e5565b6000611fbb600283613382565b73ffffffffffffffffffffffffffffffffffffffff8c16600090815260036020526040902060020154909150611ff2908290613312565b73ffffffffffffffffffffffffffffffffffffffff8c166000818152600360209081526040918290206002019390935580518d81529283018c90528201849052907f64b83944e79c3ce8d4c297411de637c3e102d064677aac0c163976ebdcd6f50e9060600160405180910390a25050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6120ea611ae9565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611abf3390565b6002600154036121a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e5565b6002600155565b600b544210612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f47617573735f4c42503a2063757272656e742074696d6520697320616674657260448201527f2074686520656e64206f662074686520436f6e7465737400000000000000000060648201526084016107e5565b600e5460ff16156122d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f47617573735f4c42503a20636f6e74657374206973206e6f206c6f6e6765722060448201527f6f70656e0000000000000000000000000000000000000000000000000000000060648201526084016107e5565b73ffffffffffffffffffffffffffffffffffffffff8216612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f47617573735f4c42503a2073656e6465722063616e206e6f74206265205a657260448201527f6f2041646472657373000000000000000000000000000000000000000000000060648201526084016107e5565b6298968081101561242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f47617573735f4c42503a20616d6f756e74206f6620555344432e706f6c206d7560448201527f73742062652067726561746572207468616e202431302e303020555344432e7060648201527f6f6c000000000000000000000000000000000000000000000000000000000000608482015260a4016107e5565b64174876e80081600d546124439190613312565b11156110ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f47617573735f4c42503a206578636565646564206d6178696d756d204c42502060448201527f7469657220616d6f756e7400000000000000000000000000000000000000000060648201526084016107e5565b6006546040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301523060248301528392169063dd62ed3e90604401602060405180830381865afa158015612547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256b919061328f565b101561261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605a60248201527f47617573735f4c42503a20416c6c6f77616e636520666f7220555344432e706f60448201527f6c20697320746f6f206c6f772c20706c6561736520696e63726561736520746860648201527f6520616c6c6f77616e6365206265666f72652073656e64696e67000000000000608482015260a4016107e5565b6006546040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015230602483015260448201849052909116906323b872dd906064016020604051808303816000875af115801561269e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c291906132a8565b61274e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f47617573735f4c42503a20556e61626c6520746f207472616e7366657220555360448201527f44432e706f6c20746f2074686520636f6e74726163740000000000000000000060648201526084016107e5565b600061279d827f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006002612fbb565b905060006127ab82846132f9565b6006546008546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015260248101869052929350169063a9059cbb906044016020604051808303816000875af1158015612828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061284c91906132a8565b6128d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f47617573735f4c42503a20556e61626c6520746f207472616e7366657220555360448201527f44432e706f6c20746f207468652047617573732057616c6c657400000000000060648201526084016107e5565b6128e28482611b56565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600360205260408120600101805483929061291a908490613312565b9250508190555080600d60008282546129339190613312565b90915550505073ffffffffffffffffffffffffffffffffffffffff9283166000818152600360208190526040822080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169094178155600480546001818101835594829052825491027f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b810180549096169190981617909355908201547f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c86015560028201547f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19d8601550180547f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19e909401805460ff95861615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082168117835592546101009081900490961615159095027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9092167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090951694909417179092555050565b60025460ff166108f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107e5565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdc9190613396565b600654600754604080517f0dfe1681000000000000000000000000000000000000000000000000000000008152905193945073ffffffffffffffffffffffffffffffffffffffff928316939190921691630dfe16819160048083019260209291908290030181865afa158015612c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7a9190613396565b73ffffffffffffffffffffffffffffffffffffffff1603612def57600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2991906133d6565b506009546040517f054d50d4000000000000000000000000000000000000000000000000000000008152600481018990526dffffffffffffffffffffffffffff80851660248301528316604482015292945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169063054d50d4906064015b602060405180830381865afa158015612dc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612de5919061328f565b9695505050505050565b600754604080517f0dfe1681000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff808516931691630dfe16819160048083019260209291908290030181865afa158015612e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e849190613396565b73ffffffffffffffffffffffffffffffffffffffff1603612fb257600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612f0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f3391906133d6565b506009546040517f054d50d4000000000000000000000000000000000000000000000000000000008152600481018990526dffffffffffffffffffffffffffff80841660248301528416604482015292945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169063054d50d490606401612da4565b50600092915050565b600080612fc986868661300c565b9050612fd483613108565b8015612ff0575060008480612feb57612feb613353565b868809115b1561300357613000600182613312565b90505b95945050505050565b6000838302817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85870982811083820303915050806000036130615783828161305757613057613353565b0492505050613101565b80841161309a576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150505b9392505050565b6000600282600381111561311e5761311e613426565b6131289190613455565b60ff166001149050919050565b602080825282518282018190526000919060409081850190868401855b828110156131b0578151805173ffffffffffffffffffffffffffffffffffffffff1685528681015187860152858101518686015260608082015115159086015260809081015115159085015260a09093019290850190600101613152565b5091979650505050505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610cd757600080fd5b6000806000606084860312156131f457600080fd5b83356131ff816131bd565b9250602084013561320f816131bd565b929592945050506040919091013590565b6000806040838503121561323357600080fd5b823561323e816131bd565b9150602083013561324e816131bd565b809150509250929050565b60006020828403121561326b57600080fd5b8135613101816131bd565b60006020828403121561328857600080fd5b5035919050565b6000602082840312156132a157600080fd5b5051919050565b6000602082840312156132ba57600080fd5b8151801515811461310157600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561330c5761330c6132ca565b92915050565b8082018082111561330c5761330c6132ca565b60008060006060848603121561333a57600080fd5b8351925060208401519150604084015190509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261339157613391613353565b500490565b6000602082840312156133a857600080fd5b8151613101816131bd565b80516dffffffffffffffffffffffffffff811681146133d157600080fd5b919050565b6000806000606084860312156133eb57600080fd5b6133f4846133b3565b9250613402602085016133b3565b9150604084015163ffffffff8116811461341b57600080fd5b809150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600060ff83168061346857613468613353565b8060ff8416069150509291505056fea2646970667358221220cb894a3441c600f90261b4ddd17371b7c556685636c05a784563d038d7d6ae3064736f6c634300081300330000000000000000000000002bafd05252adca1143b77a88a72e1022b59ad379000000000000000000000000187d9011861dc79424bf556e315521897b4a501d00000000000000000000000012fdbd4f6e89483ead15b4a29bb090fee3e340ab000000000000000000000000199bc0afd8026edd8d8c48d83c7b4dd81c97a0820000000000000000000000000000000000000000000000000000000065b5df50

Deployed ByteCode

0x6080604052600436106101c65760003560e01c80639456fbcc116100f7578063ccb3094111610095578063ee86e0e111610064578063ee86e0e11461059d578063f2fde38b146105b3578063f7d331ea146105d3578063fc4a4a1e146105f357600080fd5b8063ccb3094114610496578063d5fedc50146104ac578063dd7c5e5414610556578063e7da5eff1461057057600080fd5b8063a67812c9116100d1578063a67812c914610437578063ac6f1f8a1461044c578063ca53c5791461046c578063cb3f15d81461048157600080fd5b80639456fbcc146103b65780639d608103146103d6578063a67481211461040357600080fd5b80635c975abb11610164578063828ea4c21161013e578063828ea4c21461032d5780638456cb5914610361578063890c9c4e146103765780638da5cb5b1461038b57600080fd5b80635c975abb146102df5780636ca57ead14610303578063715018a61461031857600080fd5b806337811e62116101a057806337811e62146102435780633f4ba83a146102955780634339c99f146102aa57806356771e94146102b257600080fd5b806326a078a3146101d25780632bb1f2fd146101fd578063333609781461021f57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610609565b6040516101f49190613135565b60405180910390f35b34801561020957600080fd5b5061021d6102183660046131df565b6106bd565b005b34801561022b57600080fd5b50610235600b5481565b6040519081526020016101f4565b34801561024f57600080fd5b506006546102709073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f4565b3480156102a157600080fd5b5061021d6108e7565b61021d6108f9565b3480156102be57600080fd5b506008546102709073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102eb57600080fd5b5060025460ff165b60405190151581526020016101f4565b34801561030f57600080fd5b5061021d610cda565b34801561032457600080fd5b5061021d610d89565b34801561033957600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000271081565b34801561036d57600080fd5b5061021d610d9b565b34801561038257600080fd5b5061021d610dab565b34801561039757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610270565b3480156103c257600080fd5b5061021d6103d1366004613220565b610e00565b3480156103e257600080fd5b506009546102709073ffffffffffffffffffffffffffffffffffffffff1681565b34801561040f57600080fd5b506102357f00000000000000000000000000000000000000000000000000000000000003e881565b34801561044357600080fd5b506101e7610fff565b34801561045857600080fd5b5061021d610467366004613259565b6110a5565b34801561047857600080fd5b5061021d6110f3565b34801561048d57600080fd5b5061021d611842565b3480156104a257600080fd5b50610235600c5481565b3480156104b857600080fd5b506105136104c7366004613259565b6003602081905260009182526040909120805460018201546002830154929093015473ffffffffffffffffffffffffffffffffffffffff90911692919060ff8082169161010090041685565b6040805173ffffffffffffffffffffffffffffffffffffffff9096168652602086019490945292840191909152151560608301521515608082015260a0016101f4565b34801561056257600080fd5b50600e546102f39060ff1681565b34801561057c57600080fd5b506007546102709073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105a957600080fd5b50610235600d5481565b3480156105bf57600080fd5b5061021d6105ce366004613259565b611908565b3480156105df57600080fd5b5061021d6105ee366004613276565b6119bc565b3480156105ff57600080fd5b50610235600a5481565b60606106136119eb565b6005805480602002602001604051908101604052809291908181526020016000905b828210156106b45760008481526020908190206040805160a08101825260048602909201805473ffffffffffffffffffffffffffffffffffffffff168352600180820154848601526002820154928401929092526003015460ff8082161515606085015261010090910416151560808301529083529092019101610635565b50505050905090565b6106c56119eb565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152839060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610734573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610758919061328f565b90508281116107ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f42616c616e636520746f6f206c6f7720746f207472616e7366657220616d6f7560448201527f6e7400000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301526024820185905283169063a9059cbb906044016020604051808303816000875af1158015610863573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088791906132a8565b506040805173ffffffffffffffffffffffffffffffffffffffff8087168252871660208201529081018490527ff6891c84a6c6af32a6d052172a8acc4c631b1d5057ffa2bc1da268b6938ea2da9060600160405180910390a15050505050565b6108ef6119eb565b6108f7611a6c565b565b6109016119eb565b600e5460ff161515600114610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f47617573735f4c42503a2070726f6772616d20686173206e6f74206265656e2060448201527f636c6f7365642e0000000000000000000000000000000000000000000000000060648201526084016107e5565b600b544211610a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f47617573735f4c42503a2063757272656e742074696d65206973206265666f7260448201527f652074686520656e64206f6620746865204c425000000000000000000000000060648201526084016107e5565b6006546008546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9283169263a9059cbb92169083906370a0823190602401602060405180830381865afa158015610aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac8919061328f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af1158015610b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5c91906132a8565b5060085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610ba3573d6000803e3d6000fd5b506007546008546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff9283169263a9059cbb92169083906370a0823190602401602060405180830381865afa158015610c1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c43919061328f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af1158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906132a8565b50565b610ce26119eb565b610cea611ae9565b6006546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610d59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7d919061328f565b9050610cd73082611b56565b610d916119eb565b6108f7600061206d565b610da36119eb565b6108f76120e2565b610db361213d565b610dbb611ae9565b3360009081526003602081905260409091200180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556108f760018055565b610e086119eb565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610e77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9b919061328f565b905060008111610f07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f47617573735f4c42503a204e6f20746f6b656e7320746f20776974686472617760448201526064016107e5565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526024820183905283169063a9059cbb906044016020604051808303816000875af1158015610f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa091906132a8565b506040805173ffffffffffffffffffffffffffffffffffffffff8086168252861660208201529081018290527ff6891c84a6c6af32a6d052172a8acc4c631b1d5057ffa2bc1da268b6938ea2da9060600160405180910390a150505050565b60606110096119eb565b6004805460408051602080840282018101909252828152929190600090840182156106b45760008481526020908190206040805160a08101825260048602909201805473ffffffffffffffffffffffffffffffffffffffff168352600180820154848601526002820154928401929092526003015460ff8082161515606085015261010090910416151560808301529083529092019101610635565b6110ad6119eb565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156110ef573d6000803e3d6000fd5b5050565b6110fb61213d565b611103611ae9565b3360008181526003602052604090206002015461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f47617573735f4c42503a204e6f204c5020746f6b656e73207374616b6564000060448201526064016107e5565b600b544211156114665760075473ffffffffffffffffffffffffffffffffffffffff828116600081815260036020526040908190206002015490517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810192909252602482015291169063a9059cbb906044016020604051808303816000875af1158015611212573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123691906132a8565b6112c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f47617573735f4c42503a20556e61626c6520746f207472616e73666572204c5060448201527f20546f6b656e20746f2074686520526563697069616e742057616c6c6574000060648201526084016107e5565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600360208190526040822060028101838155600580546001818101835591909552825460049095027f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169690971695909517909555938101547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db184015592547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db28301559190910180547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db3909201805460ff93841615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082168117835592546101009081900490941615159093027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9092167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090931692909217179055611838565b600b544210156118385773ffffffffffffffffffffffffffffffffffffffff81166000908152600360208190526040909120015460ff161515600114611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f47617573735f4c42503a205061727469636970616e7420686173206e6f74206360448201527f6f6e6669726d6564207269736b7320666f72206561726c7920756e7374616b6960648201527f6e67000000000000000000000000000000000000000000000000000000000000608482015260a4016107e5565b60075473ffffffffffffffffffffffffffffffffffffffff828116600081815260036020526040908190206002015490517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810192909252602482015291169063a9059cbb906044016020604051808303816000875af11580156115e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160491906132a8565b611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f47617573735f4c42503a20556e61626c6520746f207472616e73666572204c5060448201527f20546f6b656e20746f2074686520526563697069616e742057616c6c6574000060648201526084016107e5565b73ffffffffffffffffffffffffffffffffffffffff808216600090815260036020819052604082206002810183815591810180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9081166101009081178355600580546001818101835591909752845460049097027f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016989099169790971790975595909201547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db185015591547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db284015581547f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db3909301805460ff94851615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008216811783559354869004909416151590940291167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000909216919091171790555b506108f760018055565b61184a6119eb565b600a5442116118db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f47617573735f4c42503a2063757272656e742074696d65206973206265666f7260448201527f6520746865205374617274206f6620746865204c42500000000000000000000060648201526084016107e5565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6119106119eb565b73ffffffffffffffffffffffffffffffffffffffff81166119b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107e5565b610cd78161206d565b6119c461213d565b6119cc611ae9565b336119d781836121b0565b6119e181836124d1565b50610cd760018055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e5565b611a74612adc565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60025460ff16156108f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107e5565b6006546009546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526024810184905291169063095ea7b3906044016020604051808303816000875af1158015611bd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf591906132a8565b506000611c0182612b48565b905060008111611c93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f47617573735f4c42503a20636f756c64206e6f742063616c63756c617465204760448201527f414e4720616d6f756e740000000000000000000000000000000000000000000060648201526084016107e5565b6000611cc4836105dc7f00000000000000000000000000000000000000000000000000000000000027106002612fbb565b90506000611cd282856132f9565b90506000611d05846113887f00000000000000000000000000000000000000000000000000000000000027106002612fbb565b90506000611d138286613312565b6007546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015291925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dab919061328f565b60095460065491925073ffffffffffffffffffffffffffffffffffffffff9081169163f305d719918591168a888b30611de542603c613312565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015611e77573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e9c9190613325565b50506007546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000925073ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f34919061328f565b90506000611f4283836132f9565b905060008111611fae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f47617573735f4c42503a204e6f204c5020746f6b656e7320726563656976656460448201526064016107e5565b6000611fbb600283613382565b73ffffffffffffffffffffffffffffffffffffffff8c16600090815260036020526040902060020154909150611ff2908290613312565b73ffffffffffffffffffffffffffffffffffffffff8c166000818152600360209081526040918290206002019390935580518d81529283018c90528201849052907f64b83944e79c3ce8d4c297411de637c3e102d064677aac0c163976ebdcd6f50e9060600160405180910390a25050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6120ea611ae9565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611abf3390565b6002600154036121a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e5565b6002600155565b600b544210612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f47617573735f4c42503a2063757272656e742074696d6520697320616674657260448201527f2074686520656e64206f662074686520436f6e7465737400000000000000000060648201526084016107e5565b600e5460ff16156122d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f47617573735f4c42503a20636f6e74657374206973206e6f206c6f6e6765722060448201527f6f70656e0000000000000000000000000000000000000000000000000000000060648201526084016107e5565b73ffffffffffffffffffffffffffffffffffffffff8216612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f47617573735f4c42503a2073656e6465722063616e206e6f74206265205a657260448201527f6f2041646472657373000000000000000000000000000000000000000000000060648201526084016107e5565b6298968081101561242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f47617573735f4c42503a20616d6f756e74206f6620555344432e706f6c206d7560448201527f73742062652067726561746572207468616e202431302e303020555344432e7060648201527f6f6c000000000000000000000000000000000000000000000000000000000000608482015260a4016107e5565b64174876e80081600d546124439190613312565b11156110ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f47617573735f4c42503a206578636565646564206d6178696d756d204c42502060448201527f7469657220616d6f756e7400000000000000000000000000000000000000000060648201526084016107e5565b6006546040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301523060248301528392169063dd62ed3e90604401602060405180830381865afa158015612547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256b919061328f565b101561261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605a60248201527f47617573735f4c42503a20416c6c6f77616e636520666f7220555344432e706f60448201527f6c20697320746f6f206c6f772c20706c6561736520696e63726561736520746860648201527f6520616c6c6f77616e6365206265666f72652073656e64696e67000000000000608482015260a4016107e5565b6006546040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015230602483015260448201849052909116906323b872dd906064016020604051808303816000875af115801561269e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c291906132a8565b61274e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f47617573735f4c42503a20556e61626c6520746f207472616e7366657220555360448201527f44432e706f6c20746f2074686520636f6e74726163740000000000000000000060648201526084016107e5565b600061279d827f00000000000000000000000000000000000000000000000000000000000003e87f00000000000000000000000000000000000000000000000000000000000027106002612fbb565b905060006127ab82846132f9565b6006546008546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015260248101869052929350169063a9059cbb906044016020604051808303816000875af1158015612828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061284c91906132a8565b6128d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f47617573735f4c42503a20556e61626c6520746f207472616e7366657220555360448201527f44432e706f6c20746f207468652047617573732057616c6c657400000000000060648201526084016107e5565b6128e28482611b56565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600360205260408120600101805483929061291a908490613312565b9250508190555080600d60008282546129339190613312565b90915550505073ffffffffffffffffffffffffffffffffffffffff9283166000818152600360208190526040822080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169094178155600480546001818101835594829052825491027f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b810180549096169190981617909355908201547f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c86015560028201547f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19d8601550180547f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19e909401805460ff95861615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082168117835592546101009081900490961615159095027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9092167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090951694909417179092555050565b60025460ff166108f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107e5565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bdc9190613396565b600654600754604080517f0dfe1681000000000000000000000000000000000000000000000000000000008152905193945073ffffffffffffffffffffffffffffffffffffffff928316939190921691630dfe16819160048083019260209291908290030181865afa158015612c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7a9190613396565b73ffffffffffffffffffffffffffffffffffffffff1603612def57600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2991906133d6565b506009546040517f054d50d4000000000000000000000000000000000000000000000000000000008152600481018990526dffffffffffffffffffffffffffff80851660248301528316604482015292945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169063054d50d4906064015b602060405180830381865afa158015612dc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612de5919061328f565b9695505050505050565b600754604080517f0dfe1681000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff808516931691630dfe16819160048083019260209291908290030181865afa158015612e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e849190613396565b73ffffffffffffffffffffffffffffffffffffffff1603612fb257600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015612f0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f3391906133d6565b506009546040517f054d50d4000000000000000000000000000000000000000000000000000000008152600481018990526dffffffffffffffffffffffffffff80841660248301528416604482015292945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169063054d50d490606401612da4565b50600092915050565b600080612fc986868661300c565b9050612fd483613108565b8015612ff0575060008480612feb57612feb613353565b868809115b1561300357613000600182613312565b90505b95945050505050565b6000838302817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85870982811083820303915050806000036130615783828161305757613057613353565b0492505050613101565b80841161309a576040517f227bc15300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150505b9392505050565b6000600282600381111561311e5761311e613426565b6131289190613455565b60ff166001149050919050565b602080825282518282018190526000919060409081850190868401855b828110156131b0578151805173ffffffffffffffffffffffffffffffffffffffff1685528681015187860152858101518686015260608082015115159086015260809081015115159085015260a09093019290850190600101613152565b5091979650505050505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610cd757600080fd5b6000806000606084860312156131f457600080fd5b83356131ff816131bd565b9250602084013561320f816131bd565b929592945050506040919091013590565b6000806040838503121561323357600080fd5b823561323e816131bd565b9150602083013561324e816131bd565b809150509250929050565b60006020828403121561326b57600080fd5b8135613101816131bd565b60006020828403121561328857600080fd5b5035919050565b6000602082840312156132a157600080fd5b5051919050565b6000602082840312156132ba57600080fd5b8151801515811461310157600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561330c5761330c6132ca565b92915050565b8082018082111561330c5761330c6132ca565b60008060006060848603121561333a57600080fd5b8351925060208401519150604084015190509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261339157613391613353565b500490565b6000602082840312156133a857600080fd5b8151613101816131bd565b80516dffffffffffffffffffffffffffff811681146133d157600080fd5b919050565b6000806000606084860312156133eb57600080fd5b6133f4846133b3565b9250613402602085016133b3565b9150604084015163ffffffff8116811461341b57600080fd5b809150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600060ff83168061346857613468613353565b8060ff8416069150509291505056fea2646970667358221220cb894a3441c600f90261b4ddd17371b7c556685636c05a784563d038d7d6ae3064736f6c63430008130033