false
true
0

Contract Address Details

0x88DE03e7c75b64f1EF18002212e14D41360B500c

Contract Name
CrispyAutoTrader
Creator
0x61b0a2–77011a at 0x2dd5e0–92c8b0
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
3 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26064406
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
CrispyAutoTrader




Optimization enabled
false
Compiler version
v0.8.21+commit.d9974bed




EVM Version
shanghai




Verified at
2025-12-18T00:14:56.777563Z

Constructor Arguments

000000000000000000000000165c3410fc91ef562c50559f7d2289febed552d9000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a2700000000000000000000000007ffb053224a100b95e2dc3faa82bda9fc1b8899000000000000000000000000000000000000000000000000000000000000003c

Arg [0] (address) : 0x165c3410fc91ef562c50559f7d2289febed552d9
Arg [1] (address) : 0xa1077a294dde1b09bb078844df40758a5d0f9a27
Arg [2] (address) : 0x07ffb053224a100b95e2dc3faa82bda9fc1b8899
Arg [3] (uint256) : 60

              

printersDeployed/Actuator/Fast_HTT_6666.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract CrispyAutoTrader is Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    IUniswapV2Router02 public dexRouter;
    IERC20 public immutable wpls;
    IERC20 public targetToken;

    uint256 public interval;
    uint256 public lastExecutionTime;
    uint256 public minPLSToSwap = 1_000 ether;
    uint256 public maxPLSToSwap = 3_500 ether;
    uint256 public randomOffsetMax = 333 ether;
    uint256 public maxGasPrice = 100000000000 gwei;
    uint256 public slippageBips = 500; // 5% default (500 basis points)

    address public forwardAddress;
    bool public autoForwardEnabled;

    bool public smartPricingEnabled = false;
    bool public autoDirectionEnabled = false;

    uint256 public maxPriceInPLSPerTargetToken; // buy if price <= this
    uint256 public minPriceInPLSPerTargetToken; // sell if price >= this

    event DexRouterUpdated(address indexed newDexRouter);
    event TargetTokenUpdated(address indexed oldToken, address indexed newToken);
    event TokenPurchased(uint256 plsSpent, uint256 tokensReceived);
    event TokenSold(uint256 tokensSold, uint256 plsReceived);
    event Forwarded(address to, uint256 amount);
    event SmartPricingStatusUpdated(bool enabled);
    event AutoDirectionStatusUpdated(bool enabled);
    event MaxPriceUpdated(uint256 maxPrice);
    event MinPriceUpdated(uint256 minPrice);
    event IntervalUpdated(uint256 newInterval);
    event MinPLSUpdated(uint256 newMinPLS);
    event MaxPLSUpdated(uint256 newMaxPLS);
    event RandomOffsetUpdated(uint256 newRandomOffsetMax);
    event MaxGasPriceUpdated(uint256 newMaxGasPrice);
    event ForwardAddressUpdated(address newForwardAddress);
    event AutoForwardStatusUpdated(bool enabled);
    event SlippageUpdated(uint256 newSlippageBips);

    constructor(
    address _dexRouter,
    address _wpls,
    address _targetToken,
    uint256 _interval
    ) Ownable(msg.sender) {
        dexRouter = IUniswapV2Router02(_dexRouter);
        wpls = IERC20(_wpls);
        targetToken = IERC20(_targetToken);
        interval = _interval;
        maxPriceInPLSPerTargetToken = 2000000 ether;
        minPriceInPLSPerTargetToken = 4200000;
        slippageBips = 500; // 5% default
        }

        function updateDexRouter(address _newRouter) external onlyOwner {
            require(_newRouter != address(0), "Invalid router address");
            dexRouter = IUniswapV2Router02(_newRouter);
            emit DexRouterUpdated(_newRouter);
        }   
       
       
        function setTargetToken(address _token) external onlyOwner {
            require(_token != address(0), "Invalid token");
            targetToken = IERC20(_token);
        }

    function setSmartPricingEnabled(bool _enabled) external onlyOwner {
        smartPricingEnabled = _enabled;
        emit SmartPricingStatusUpdated(_enabled);
    }

    function setAutoDirectionEnabled(bool _enabled) external onlyOwner {
        autoDirectionEnabled = _enabled;
        emit AutoDirectionStatusUpdated(_enabled);
    }

    function setMaxPrice(uint256 _price) external onlyOwner {
        maxPriceInPLSPerTargetToken = _price;
        emit MaxPriceUpdated(_price);
    }

    function setMinPrice(uint256 _price) external onlyOwner {
        minPriceInPLSPerTargetToken = _price;
        emit MinPriceUpdated(_price);
    }

    function setInterval(uint256 _interval) external onlyOwner {
        interval = _interval;
        emit IntervalUpdated(_interval);
    }

    function setMinPLSToSwap(uint256 _minPLS) external onlyOwner {
        minPLSToSwap = _minPLS;
        emit MinPLSUpdated(_minPLS);
    }

    function setMaxPLSToSwap(uint256 _maxPLS) external onlyOwner {
        maxPLSToSwap = _maxPLS;
        emit MaxPLSUpdated(_maxPLS);
    }

    function setRandomOffsetMax(uint256 _randomOffsetMax) external onlyOwner {
        randomOffsetMax = _randomOffsetMax;
        emit RandomOffsetUpdated(_randomOffsetMax);
    }

    function setMaxGasPrice(uint256 _maxGasPrice) external onlyOwner {
        maxGasPrice = _maxGasPrice;
        emit MaxGasPriceUpdated(_maxGasPrice);
    }

    function setForwardAddress(address _forwardAddress) external onlyOwner {
        forwardAddress = _forwardAddress;
        emit ForwardAddressUpdated(_forwardAddress);
    }

    function setAutoForwardEnabled(bool _enabled) external onlyOwner {
        autoForwardEnabled = _enabled;
        emit AutoForwardStatusUpdated(_enabled);
    }

    function setSlippageBips(uint256 _slippageBips) external onlyOwner {
        require(_slippageBips <= 5000, "Slippage too high");
        slippageBips = _slippageBips;
        emit SlippageUpdated(_slippageBips);
    }

    function executeTrade() public {
        require(tx.gasprice <= maxGasPrice, "Gas price too high");
        require(block.timestamp >= lastExecutionTime + interval, "Too soon");

        address[] memory path = new address[](2);
        path[0] = address(wpls);
        path[1] = address(targetToken);

        _determineAndExecuteTrade(path);
    }

    function _buy(address[] memory path) internal {
        uint256 balance = address(this).balance;
        if (balance < minPLSToSwap) return;

        uint256 randomness = uint256(keccak256(abi.encodePacked(block.timestamp, block.prevrandao, block.number))) % randomOffsetMax;
        uint256 adjustedMax = maxPLSToSwap > randomness ? maxPLSToSwap - randomness : maxPLSToSwap;
        uint256 amountIn = balance > adjustedMax ? adjustedMax : balance;

        uint256[] memory amountsOut = dexRouter.getAmountsOut(amountIn, path);
        uint256 minTokensOut = (amountsOut[1] * (10_000 - slippageBips)) / 10_000;
        uint256 tokenBefore = targetToken.balanceOf(address(this));

        dexRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountIn}(
            minTokensOut,
            path,
            address(this),
            block.timestamp + 300
        );

        uint256 tokenAfter = targetToken.balanceOf(address(this));
        uint256 received = tokenAfter - tokenBefore;
        emit TokenPurchased(amountIn, received);

        if (autoForwardEnabled && forwardAddress != address(0)) {
            targetToken.safeTransfer(forwardAddress, received);
            emit Forwarded(forwardAddress, received);
        }

        lastExecutionTime = block.timestamp;
    }

    function _sell() internal {
        uint256 balance = targetToken.balanceOf(address(this));
        if (balance == 0) return;

        targetToken.approve(address(dexRouter), 0);
        targetToken.approve(address(dexRouter), balance);

        address[] memory reversePath = new address[](2);
        reversePath[0] = address(targetToken);
        reversePath[1] = address(wpls);

        uint256[] memory amountsOut = dexRouter.getAmountsOut(balance, reversePath);
        uint256 minPLSOut = (amountsOut[1] * (10_000 - slippageBips)) / 10_000;
        uint256 plsBefore = address(this).balance;

        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balance,
            minPLSOut,
            reversePath,
            address(this),
            block.timestamp + 300
        );

        uint256 plsAfter = address(this).balance;
        uint256 received = plsAfter - plsBefore;
        emit TokenSold(balance, received);

        lastExecutionTime = block.timestamp;
    }

    function withdrawNative() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        require(balance > 0, "No PLS to withdraw");
        payable(owner()).transfer(balance);
    }

    function withdrawToken(address token) external onlyOwner nonReentrant {
        IERC20 erc20 = IERC20(token);
        uint256 balance = erc20.balanceOf(address(this));
        require(balance > 0, "No tokens to withdraw");
        erc20.safeTransfer(owner(), balance);
    }

    receive() external payable {
        executeTrade();
    }

    fallback() external payable {
        executeTrade();
    }

        function _determineAndExecuteTrade(address[] memory path) internal {
        uint256 priceInPLSPerTarget = _getPrice(path);

        if (smartPricingEnabled && autoDirectionEnabled) {
            if (priceInPLSPerTarget <= maxPriceInPLSPerTargetToken) {
                _buy(path);
            } else if (priceInPLSPerTarget >= minPriceInPLSPerTargetToken) {
                _sell();
            }
        } else {
            _buy(path);
        }
    }

    function _getPrice(address[] memory path) internal view returns (uint256 priceInPLSPerTarget) {
        uint256[] memory quote = dexRouter.getAmountsOut(1 ether, path);
        require(quote[1] > 0, "Invalid quote");
        return (1 ether * 1 ether) / quote[1];
    }

    }
        

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}
          

/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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);
}
          

/IERC165.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../token/ERC20/IERC20.sol";
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}
          

/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}
          

/utils/SafeERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 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 {
    /**
     * @dev An operation with an ERC-20 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.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    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.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    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.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    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 Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            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 {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 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).
     *
     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}
          

/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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;
}
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":false},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"shanghai","compilationTarget":{"printersDeployed/Actuator/Fast_HTT_6666.sol":"CrispyAutoTrader"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_dexRouter","internalType":"address"},{"type":"address","name":"_wpls","internalType":"address"},{"type":"address","name":"_targetToken","internalType":"address"},{"type":"uint256","name":"_interval","internalType":"uint256"}]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"error","name":"SafeERC20FailedOperation","inputs":[{"type":"address","name":"token","internalType":"address"}]},{"type":"event","name":"AutoDirectionStatusUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"AutoForwardStatusUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"DexRouterUpdated","inputs":[{"type":"address","name":"newDexRouter","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"ForwardAddressUpdated","inputs":[{"type":"address","name":"newForwardAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Forwarded","inputs":[{"type":"address","name":"to","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"IntervalUpdated","inputs":[{"type":"uint256","name":"newInterval","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MaxGasPriceUpdated","inputs":[{"type":"uint256","name":"newMaxGasPrice","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MaxPLSUpdated","inputs":[{"type":"uint256","name":"newMaxPLS","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MaxPriceUpdated","inputs":[{"type":"uint256","name":"maxPrice","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MinPLSUpdated","inputs":[{"type":"uint256","name":"newMinPLS","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MinPriceUpdated","inputs":[{"type":"uint256","name":"minPrice","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RandomOffsetUpdated","inputs":[{"type":"uint256","name":"newRandomOffsetMax","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SlippageUpdated","inputs":[{"type":"uint256","name":"newSlippageBips","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SmartPricingStatusUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"TargetTokenUpdated","inputs":[{"type":"address","name":"oldToken","internalType":"address","indexed":true},{"type":"address","name":"newToken","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"TokenPurchased","inputs":[{"type":"uint256","name":"plsSpent","internalType":"uint256","indexed":false},{"type":"uint256","name":"tokensReceived","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TokenSold","inputs":[{"type":"uint256","name":"tokensSold","internalType":"uint256","indexed":false},{"type":"uint256","name":"plsReceived","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"fallback","stateMutability":"payable"},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"autoDirectionEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"autoForwardEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"dexRouter","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"executeTrade","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"forwardAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"interval","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastExecutionTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxGasPrice","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxPLSToSwap","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxPriceInPLSPerTargetToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minPLSToSwap","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minPriceInPLSPerTargetToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"randomOffsetMax","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAutoDirectionEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAutoForwardEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setForwardAddress","inputs":[{"type":"address","name":"_forwardAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setInterval","inputs":[{"type":"uint256","name":"_interval","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxGasPrice","inputs":[{"type":"uint256","name":"_maxGasPrice","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxPLSToSwap","inputs":[{"type":"uint256","name":"_maxPLS","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxPrice","inputs":[{"type":"uint256","name":"_price","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinPLSToSwap","inputs":[{"type":"uint256","name":"_minPLS","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinPrice","inputs":[{"type":"uint256","name":"_price","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setRandomOffsetMax","inputs":[{"type":"uint256","name":"_randomOffsetMax","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSlippageBips","inputs":[{"type":"uint256","name":"_slippageBips","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSmartPricingEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTargetToken","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"slippageBips","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"smartPricingEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"targetToken","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateDexRouter","inputs":[{"type":"address","name":"_newRouter","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawNative","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawToken","inputs":[{"type":"address","name":"token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"wpls","inputs":[]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x60a0604052683635c9adc5dea0000060065568bdbc41e0348b30000060075568120d4da7b0bd14000060085568056bc75e2d631000006009556101f4600a555f600b60156101000a81548160ff0219169083151502179055505f600b60166101000a81548160ff0219169083151502179055503480156200007e575f80fd5b5060405162003299380380620032998339818101604052810190620000a4919062000379565b335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000118575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010f9190620003f9565b60405180910390fd5b62000129816200021b60201b60201c565b50600180819055508360025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508160035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806004819055506a01a784379d99db42000000600c8190555062401640600d819055506101f4600a819055505050505062000414565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200030b82620002e0565b9050919050565b6200031d81620002ff565b811462000328575f80fd5b50565b5f815190506200033b8162000312565b92915050565b5f819050919050565b620003558162000341565b811462000360575f80fd5b50565b5f8151905062000373816200034a565b92915050565b5f805f8060808587031215620003945762000393620002dc565b5b5f620003a3878288016200032b565b9450506020620003b6878288016200032b565b9350506040620003c9878288016200032b565b9250506060620003dc8782880162000363565b91505092959194509250565b620003f381620002ff565b82525050565b5f6020820190506200040e5f830184620003e8565b92915050565b608051612e5e6200043b5f395f818161089d0152818161108e0152611e690152612e5e5ff3fe608060405260043610610212575f3560e01c80636523e1aa1161011757806394b8fbff1161009f578063d916c6dc1161006e578063d916c6dc146106ff578063e0c70b6614610729578063f2fde38b1461073f578063f43952e314610767578063f6ce6b451461078f57610221565b806394b8fbff1461065d578063a2ea947114610685578063c1b39814146106ad578063d2fa635e146106d757610221565b806373b379bd116100e657806373b379bd1461058d57806389476069146105b75780638da5cb5b146105df578063927ef7fa14610609578063947a36fb1461063357610221565b80636523e1aa146104fb5780636df1879014610525578063714f75e01461054f578063715018a61461057757610221565b806326449b321161019a578063374d50bd11610169578063374d50bd146104415780633de39c111461046b57806350431ce414610495578063515164aa146104ab5780635ea8cd12146104d357610221565b806326449b321461039b57806328b14eda146103c3578063327107f7146103ed578063327370341461041757610221565b806315626056116101e157806315626056146102d15780631b66cb00146102f957806321507b4e1461032157806322a900821461034b578063232ecb681461037357610221565b80630729a2b21461022b5780630758d924146102535780630b84c2321461027d5780631014b6d0146102a757610221565b366102215761021f6107b7565b005b6102296107b7565b005b348015610236575f80fd5b50610251600480360381019061024c91906121a0565b610985565b005b34801561025e575f80fd5b50610267610a13565b6040516102749190612245565b60405180910390f35b348015610288575f80fd5b50610291610a38565b60405161029e9190612278565b60405180910390f35b3480156102b2575f80fd5b506102bb610a4b565b6040516102c891906122a0565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f291906122e3565b610a51565b005b348015610304575f80fd5b5061031f600480360381019061031a9190612349565b610aad565b005b34801561032c575f80fd5b50610335610b66565b6040516103429190612383565b60405180910390f35b348015610356575f80fd5b50610371600480360381019061036c91906121a0565b610b8b565b005b34801561037e575f80fd5b50610399600480360381019061039491906121a0565b610bd4565b005b3480156103a6575f80fd5b506103c160048036038101906103bc9190612349565b610c1d565b005b3480156103ce575f80fd5b506103d7610c9f565b6040516103e491906122a0565b60405180910390f35b3480156103f8575f80fd5b50610401610ca5565b60405161040e91906123bc565b60405180910390f35b348015610422575f80fd5b5061042b610cca565b6040516104389190612278565b60405180910390f35b34801561044c575f80fd5b50610455610cdd565b6040516104629190612278565b60405180910390f35b348015610476575f80fd5b5061047f610cf0565b60405161048c91906122a0565b60405180910390f35b3480156104a0575f80fd5b506104a9610cf6565b005b3480156104b6575f80fd5b506104d160048036038101906104cc91906121a0565b610da2565b005b3480156104de575f80fd5b506104f960048036038101906104f491906121a0565b610deb565b005b348015610506575f80fd5b5061050f610e34565b60405161051c91906122a0565b60405180910390f35b348015610530575f80fd5b50610539610e3a565b60405161054691906122a0565b60405180910390f35b34801561055a575f80fd5b5061057560048036038101906105709190612349565b610e40565b005b348015610582575f80fd5b5061058b610f3c565b005b348015610598575f80fd5b506105a1610f4f565b6040516105ae91906122a0565b60405180910390f35b3480156105c2575f80fd5b506105dd60048036038101906105d89190612349565b610f55565b005b3480156105ea575f80fd5b506105f3611065565b6040516106009190612383565b60405180910390f35b348015610614575f80fd5b5061061d61108c565b60405161062a91906123bc565b60405180910390f35b34801561063e575f80fd5b506106476110b0565b60405161065491906122a0565b60405180910390f35b348015610668575f80fd5b50610683600480360381019061067e91906122e3565b6110b6565b005b348015610690575f80fd5b506106ab60048036038101906106a691906121a0565b611112565b005b3480156106b8575f80fd5b506106c161115b565b6040516106ce91906122a0565b60405180910390f35b3480156106e2575f80fd5b506106fd60048036038101906106f891906121a0565b611161565b005b34801561070a575f80fd5b506107136111aa565b60405161072091906122a0565b60405180910390f35b348015610734575f80fd5b5061073d6107b7565b005b34801561074a575f80fd5b5061076560048036038101906107609190612349565b6111b0565b005b348015610772575f80fd5b5061078d600480360381019061078891906121a0565b611234565b005b34801561079a575f80fd5b506107b560048036038101906107b091906122e3565b61127d565b005b6009543a11156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f39061242f565b60405180910390fd5b60045460055461080c919061247a565b42101561084e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610845906124f7565b60405180910390fd5b5f600267ffffffffffffffff81111561086a57610869612515565b5b6040519080825280602002602001820160405280156108985781602001602082028036833780820191505090505b5090507f0000000000000000000000000000000000000000000000000000000000000000815f815181106108cf576108ce612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061093f5761093e612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610982816112d9565b50565b61098d61134f565b6113888111156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c9906125b9565b60405180910390fd5b80600a819055507ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd81604051610a0891906122a0565b60405180910390a150565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60169054906101000a900460ff1681565b60085481565b610a5961134f565b80600b60166101000a81548160ff0219169083151502179055507fa3574512cb55e21452df2c8e786f0c6de802eaaf19b7f3f9a8dd9c88e1de710081604051610aa29190612278565b60405180910390a150565b610ab561134f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90612621565b60405180910390fd5b8060035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b9361134f565b806004819055507fc6f44473d25b86976ee7357c1339328224e349abc5486edc3007ef658a57608a81604051610bc991906122a0565b60405180910390a150565b610bdc61134f565b806007819055507fc0ee04694d374614ce7446fec893f62636a198322cb67905a0aab6540758823681604051610c1291906122a0565b60405180910390a150565b610c2561134f565b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa706c3d6ff18ff7dfc1ee0a34bc34fe432c200d8d475bff3ed963eb31ae1946881604051610c949190612383565b60405180910390a150565b600c5481565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b600b60159054906101000a900460ff1681565b60095481565b610cfe61134f565b610d066113d6565b5f4790505f8111610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390612689565b60405180910390fd5b610d54611065565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610d96573d5f803e3d5ffd5b5050610da0611425565b565b610daa61134f565b806006819055507fd3e73a3551345540b2c2f0cc7eec50ee0f3358cfebf32c896c0c029a7380d2e781604051610de091906122a0565b60405180910390a150565b610df361134f565b80600d819055507f5458182db4020e94853c0d5c5cce048c4e1634ccde3542a2041f7ac4f981020081604051610e2991906122a0565b60405180910390a150565b60075481565b60065481565b610e4861134f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead906126f1565b60405180910390fd5b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f83d45f5c429dba9f97489fcc77d90ff84381e8cef6c75d74f22040053e39e6bb60405160405180910390a250565b610f4461134f565b610f4d5f61142e565b565b60055481565b610f5d61134f565b610f656113d6565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fa39190612383565b602060405180830381865afa158015610fbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe29190612723565b90505f8111611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90612798565b60405180910390fd5b611058611031611065565b828473ffffffffffffffffffffffffffffffffffffffff166114ef9092919063ffffffff16565b5050611062611425565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60045481565b6110be61134f565b80600b60146101000a81548160ff0219169083151502179055507f86bc98ed9f93fb007ed2d1d217b38888077957d119cc162137d2b9895fdb3a77816040516111079190612278565b60405180910390a150565b61111a61134f565b806008819055507f06fb020167a2bb48a4c9a626020098314f548d90dbc8bd8c0886e4e6f43dfd778160405161115091906122a0565b60405180910390a150565b600d5481565b61116961134f565b806009819055507fa7a07f821dfdfca8e4baa9ccc4bbe7b782baac5946918bd19f1c9c761db414108160405161119f91906122a0565b60405180910390a150565b600a5481565b6111b861134f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611228575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161121f9190612383565b60405180910390fd5b6112318161142e565b50565b61123c61134f565b80600c819055507f202e0ba938a78b3edea663296e8a06054c65df48fc652817d1e4231351a4c1e28160405161127291906122a0565b60405180910390a150565b61128561134f565b80600b60156101000a81548160ff0219169083151502179055507fd73af46a4eeb69ecaa18d0f34f6ad6f85a5c56bf4f8bdc3c771cdf7ed039ebc4816040516112ce9190612278565b60405180910390a150565b5f6112e38261156e565b9050600b60159054906101000a900460ff16801561130d5750600b60169054906101000a900460ff165b1561134157600c54811161132957611324826116b3565b61133c565b600d54811061133b5761133a611b86565b5b5b61134b565b61134a826116b3565b5b5050565b6113576120ba565b73ffffffffffffffffffffffffffffffffffffffff16611375611065565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576113986120ba565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113cb9190612383565b60405180910390fd5b565b60026001540361141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290612800565b60405180910390fd5b6002600181905550565b60018081905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611569838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161152292919061281e565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506120c1565b505050565b5f8060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f670de0b6b3a7640000856040518363ffffffff1660e01b81526004016115d4929190612935565b5f60405180830381865afa1580156115ee573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906116169190612a86565b90505f8160018151811061162d5761162c612542565b5b602002602001015111611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612b17565b60405180910390fd5b8060018151811061168957611688612542565b5b60200260200101516ec097ce7bc90715b34b9f10000000006116ab9190612b62565b915050919050565b5f4790506006548110156116c75750611b83565b5f6008544244436040516020016116e093929190612bb2565b604051602081830303815290604052805190602001205f1c6117029190612bee565b90505f816007541161171657600754611725565b816007546117249190612c1e565b5b90505f8184116117355783611737565b815b90505f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f83886040518363ffffffff1660e01b8152600401611796929190612c51565b5f60405180830381865afa1580156117b0573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906117d89190612a86565b90505f612710600a546127106117ee9190612c1e565b8360018151811061180257611801612542565b5b60200260200101516118149190612c7f565b61181e9190612b62565b90505f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161187b9190612383565b602060405180830381865afa158015611896573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ba9190612723565b905060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de9585848b3061012c4261190b919061247a565b6040518663ffffffff1660e01b815260040161192a9493929190612cc0565b5f604051808303818588803b158015611941575f80fd5b505af1158015611953573d5f803e3d5ffd5b50505050505f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119b39190612383565b602060405180830381865afa1580156119ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f29190612723565b90505f8282611a019190612c1e565b90507f8e9ad85f153412974b951156ecd7f4153ae7ae208664792e8a5f8a711786b9388682604051611a34929190612d0a565b60405180910390a1600b60149054906101000a900460ff168015611aa557505f73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b7257611b17600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114ef9092919063ffffffff16565b7f6f1deddfc28100c291fae8f1064e4a91e844f0841993bb8fba9a913c3b801d80600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611b6992919061281e565b60405180910390a15b426005819055505050505050505050505b50565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611be19190612383565b602060405180830381865afa158015611bfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c209190612723565b90505f8103611c2f57506120b8565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f6040518363ffffffff1660e01b8152600401611cac929190612d6a565b6020604051808303815f875af1158015611cc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cec9190612da5565b5060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611d6a92919061281e565b6020604051808303815f875af1158015611d86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611daa9190612da5565b505f600267ffffffffffffffff811115611dc757611dc6612515565b5b604051908082528060200260200182016040528015611df55781602001602082028036833780820191505090505b50905060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16815f81518110611e2d57611e2c612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611e9c57611e9b612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f84846040518363ffffffff1660e01b8152600401611f33929190612c51565b5f60405180830381865afa158015611f4d573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611f759190612a86565b90505f612710600a54612710611f8b9190612c1e565b83600181518110611f9f57611f9e612542565b5b6020026020010151611fb19190612c7f565b611fbb9190612b62565b90505f47905060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478684873061012c42612010919061247a565b6040518663ffffffff1660e01b8152600401612030959493929190612dd0565b5f604051808303815f87803b158015612047575f80fd5b505af1158015612059573d5f803e3d5ffd5b505050505f4790505f828261206e9190612c1e565b90507f5120429c88882edc469993b2f7c2d1f13287fd3ccf3ec20d28f3af207fd6b28187826040516120a1929190612d0a565b60405180910390a142600581905550505050505050505b565b5f33905090565b5f8060205f8451602086015f885af1806120e0576040513d5f823e3d81fd5b3d92505f519150505f82146120f9576001811415612114565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b1561215657836040517f5274afe700000000000000000000000000000000000000000000000000000000815260040161214d9190612383565b60405180910390fd5b50505050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61217f8161216d565b8114612189575f80fd5b50565b5f8135905061219a81612176565b92915050565b5f602082840312156121b5576121b4612165565b5b5f6121c28482850161218c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f819050919050565b5f61220d612208612203846121cb565b6121ea565b6121cb565b9050919050565b5f61221e826121f3565b9050919050565b5f61222f82612214565b9050919050565b61223f81612225565b82525050565b5f6020820190506122585f830184612236565b92915050565b5f8115159050919050565b6122728161225e565b82525050565b5f60208201905061228b5f830184612269565b92915050565b61229a8161216d565b82525050565b5f6020820190506122b35f830184612291565b92915050565b6122c28161225e565b81146122cc575f80fd5b50565b5f813590506122dd816122b9565b92915050565b5f602082840312156122f8576122f7612165565b5b5f612305848285016122cf565b91505092915050565b5f612318826121cb565b9050919050565b6123288161230e565b8114612332575f80fd5b50565b5f813590506123438161231f565b92915050565b5f6020828403121561235e5761235d612165565b5b5f61236b84828501612335565b91505092915050565b61237d8161230e565b82525050565b5f6020820190506123965f830184612374565b92915050565b5f6123a682612214565b9050919050565b6123b68161239c565b82525050565b5f6020820190506123cf5f8301846123ad565b92915050565b5f82825260208201905092915050565b7f47617320707269636520746f6f206869676800000000000000000000000000005f82015250565b5f6124196012836123d5565b9150612424826123e5565b602082019050919050565b5f6020820190508181035f8301526124468161240d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124848261216d565b915061248f8361216d565b92508282019050808211156124a7576124a661244d565b5b92915050565b7f546f6f20736f6f6e0000000000000000000000000000000000000000000000005f82015250565b5f6124e16008836123d5565b91506124ec826124ad565b602082019050919050565b5f6020820190508181035f83015261250e816124d5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f536c69707061676520746f6f20686967680000000000000000000000000000005f82015250565b5f6125a36011836123d5565b91506125ae8261256f565b602082019050919050565b5f6020820190508181035f8301526125d081612597565b9050919050565b7f496e76616c696420746f6b656e000000000000000000000000000000000000005f82015250565b5f61260b600d836123d5565b9150612616826125d7565b602082019050919050565b5f6020820190508181035f830152612638816125ff565b9050919050565b7f4e6f20504c5320746f20776974686472617700000000000000000000000000005f82015250565b5f6126736012836123d5565b915061267e8261263f565b602082019050919050565b5f6020820190508181035f8301526126a081612667565b9050919050565b7f496e76616c696420726f757465722061646472657373000000000000000000005f82015250565b5f6126db6016836123d5565b91506126e6826126a7565b602082019050919050565b5f6020820190508181035f830152612708816126cf565b9050919050565b5f8151905061271d81612176565b92915050565b5f6020828403121561273857612737612165565b5b5f6127458482850161270f565b91505092915050565b7f4e6f20746f6b656e7320746f20776974686472617700000000000000000000005f82015250565b5f6127826015836123d5565b915061278d8261274e565b602082019050919050565b5f6020820190508181035f8301526127af81612776565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6127ea601f836123d5565b91506127f5826127b6565b602082019050919050565b5f6020820190508181035f830152612817816127de565b9050919050565b5f6040820190506128315f830185612374565b61283e6020830184612291565b9392505050565b5f819050919050565b5f61286861286361285e84612845565b6121ea565b61216d565b9050919050565b6128788161284e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6128b08161230e565b82525050565b5f6128c183836128a7565b60208301905092915050565b5f602082019050919050565b5f6128e38261287e565b6128ed8185612888565b93506128f883612898565b805f5b8381101561292857815161290f88826128b6565b975061291a836128cd565b9250506001810190506128fb565b5085935050505092915050565b5f6040820190506129485f83018561286f565b818103602083015261295a81846128d9565b90509392505050565b5f80fd5b5f601f19601f8301169050919050565b61298082612967565b810181811067ffffffffffffffff8211171561299f5761299e612515565b5b80604052505050565b5f6129b161215c565b90506129bd8282612977565b919050565b5f67ffffffffffffffff8211156129dc576129db612515565b5b602082029050602081019050919050565b5f80fd5b5f612a036129fe846129c2565b6129a8565b90508083825260208201905060208402830185811115612a2657612a256129ed565b5b835b81811015612a4f5780612a3b888261270f565b845260208401935050602081019050612a28565b5050509392505050565b5f82601f830112612a6d57612a6c612963565b5b8151612a7d8482602086016129f1565b91505092915050565b5f60208284031215612a9b57612a9a612165565b5b5f82015167ffffffffffffffff811115612ab857612ab7612169565b5b612ac484828501612a59565b91505092915050565b7f496e76616c69642071756f7465000000000000000000000000000000000000005f82015250565b5f612b01600d836123d5565b9150612b0c82612acd565b602082019050919050565b5f6020820190508181035f830152612b2e81612af5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b6c8261216d565b9150612b778361216d565b925082612b8757612b86612b35565b5b828204905092915050565b5f819050919050565b612bac612ba78261216d565b612b92565b82525050565b5f612bbd8286612b9b565b602082019150612bcd8285612b9b565b602082019150612bdd8284612b9b565b602082019150819050949350505050565b5f612bf88261216d565b9150612c038361216d565b925082612c1357612c12612b35565b5b828206905092915050565b5f612c288261216d565b9150612c338361216d565b9250828203905081811115612c4b57612c4a61244d565b5b92915050565b5f604082019050612c645f830185612291565b8181036020830152612c7681846128d9565b90509392505050565b5f612c898261216d565b9150612c948361216d565b9250828202612ca28161216d565b91508282048414831517612cb957612cb861244d565b5b5092915050565b5f608082019050612cd35f830187612291565b8181036020830152612ce581866128d9565b9050612cf46040830185612374565b612d016060830184612291565b95945050505050565b5f604082019050612d1d5f830185612291565b612d2a6020830184612291565b9392505050565b5f819050919050565b5f612d54612d4f612d4a84612d31565b6121ea565b61216d565b9050919050565b612d6481612d3a565b82525050565b5f604082019050612d7d5f830185612374565b612d8a6020830184612d5b565b9392505050565b5f81519050612d9f816122b9565b92915050565b5f60208284031215612dba57612db9612165565b5b5f612dc784828501612d91565b91505092915050565b5f60a082019050612de35f830188612291565b612df06020830187612291565b8181036040830152612e0281866128d9565b9050612e116060830185612374565b612e1e6080830184612291565b969550505050505056fea26469706673582212207dddb511c704dba770afd73c7d0d5c4d04f13dc8d6a059690d1402affb82647a64736f6c63430008150033000000000000000000000000165c3410fc91ef562c50559f7d2289febed552d9000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a2700000000000000000000000007ffb053224a100b95e2dc3faa82bda9fc1b8899000000000000000000000000000000000000000000000000000000000000003c

Deployed ByteCode

0x608060405260043610610212575f3560e01c80636523e1aa1161011757806394b8fbff1161009f578063d916c6dc1161006e578063d916c6dc146106ff578063e0c70b6614610729578063f2fde38b1461073f578063f43952e314610767578063f6ce6b451461078f57610221565b806394b8fbff1461065d578063a2ea947114610685578063c1b39814146106ad578063d2fa635e146106d757610221565b806373b379bd116100e657806373b379bd1461058d57806389476069146105b75780638da5cb5b146105df578063927ef7fa14610609578063947a36fb1461063357610221565b80636523e1aa146104fb5780636df1879014610525578063714f75e01461054f578063715018a61461057757610221565b806326449b321161019a578063374d50bd11610169578063374d50bd146104415780633de39c111461046b57806350431ce414610495578063515164aa146104ab5780635ea8cd12146104d357610221565b806326449b321461039b57806328b14eda146103c3578063327107f7146103ed578063327370341461041757610221565b806315626056116101e157806315626056146102d15780631b66cb00146102f957806321507b4e1461032157806322a900821461034b578063232ecb681461037357610221565b80630729a2b21461022b5780630758d924146102535780630b84c2321461027d5780631014b6d0146102a757610221565b366102215761021f6107b7565b005b6102296107b7565b005b348015610236575f80fd5b50610251600480360381019061024c91906121a0565b610985565b005b34801561025e575f80fd5b50610267610a13565b6040516102749190612245565b60405180910390f35b348015610288575f80fd5b50610291610a38565b60405161029e9190612278565b60405180910390f35b3480156102b2575f80fd5b506102bb610a4b565b6040516102c891906122a0565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f291906122e3565b610a51565b005b348015610304575f80fd5b5061031f600480360381019061031a9190612349565b610aad565b005b34801561032c575f80fd5b50610335610b66565b6040516103429190612383565b60405180910390f35b348015610356575f80fd5b50610371600480360381019061036c91906121a0565b610b8b565b005b34801561037e575f80fd5b50610399600480360381019061039491906121a0565b610bd4565b005b3480156103a6575f80fd5b506103c160048036038101906103bc9190612349565b610c1d565b005b3480156103ce575f80fd5b506103d7610c9f565b6040516103e491906122a0565b60405180910390f35b3480156103f8575f80fd5b50610401610ca5565b60405161040e91906123bc565b60405180910390f35b348015610422575f80fd5b5061042b610cca565b6040516104389190612278565b60405180910390f35b34801561044c575f80fd5b50610455610cdd565b6040516104629190612278565b60405180910390f35b348015610476575f80fd5b5061047f610cf0565b60405161048c91906122a0565b60405180910390f35b3480156104a0575f80fd5b506104a9610cf6565b005b3480156104b6575f80fd5b506104d160048036038101906104cc91906121a0565b610da2565b005b3480156104de575f80fd5b506104f960048036038101906104f491906121a0565b610deb565b005b348015610506575f80fd5b5061050f610e34565b60405161051c91906122a0565b60405180910390f35b348015610530575f80fd5b50610539610e3a565b60405161054691906122a0565b60405180910390f35b34801561055a575f80fd5b5061057560048036038101906105709190612349565b610e40565b005b348015610582575f80fd5b5061058b610f3c565b005b348015610598575f80fd5b506105a1610f4f565b6040516105ae91906122a0565b60405180910390f35b3480156105c2575f80fd5b506105dd60048036038101906105d89190612349565b610f55565b005b3480156105ea575f80fd5b506105f3611065565b6040516106009190612383565b60405180910390f35b348015610614575f80fd5b5061061d61108c565b60405161062a91906123bc565b60405180910390f35b34801561063e575f80fd5b506106476110b0565b60405161065491906122a0565b60405180910390f35b348015610668575f80fd5b50610683600480360381019061067e91906122e3565b6110b6565b005b348015610690575f80fd5b506106ab60048036038101906106a691906121a0565b611112565b005b3480156106b8575f80fd5b506106c161115b565b6040516106ce91906122a0565b60405180910390f35b3480156106e2575f80fd5b506106fd60048036038101906106f891906121a0565b611161565b005b34801561070a575f80fd5b506107136111aa565b60405161072091906122a0565b60405180910390f35b348015610734575f80fd5b5061073d6107b7565b005b34801561074a575f80fd5b5061076560048036038101906107609190612349565b6111b0565b005b348015610772575f80fd5b5061078d600480360381019061078891906121a0565b611234565b005b34801561079a575f80fd5b506107b560048036038101906107b091906122e3565b61127d565b005b6009543a11156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f39061242f565b60405180910390fd5b60045460055461080c919061247a565b42101561084e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610845906124f7565b60405180910390fd5b5f600267ffffffffffffffff81111561086a57610869612515565b5b6040519080825280602002602001820160405280156108985781602001602082028036833780820191505090505b5090507f000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a27815f815181106108cf576108ce612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061093f5761093e612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610982816112d9565b50565b61098d61134f565b6113888111156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c9906125b9565b60405180910390fd5b80600a819055507ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd81604051610a0891906122a0565b60405180910390a150565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60169054906101000a900460ff1681565b60085481565b610a5961134f565b80600b60166101000a81548160ff0219169083151502179055507fa3574512cb55e21452df2c8e786f0c6de802eaaf19b7f3f9a8dd9c88e1de710081604051610aa29190612278565b60405180910390a150565b610ab561134f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90612621565b60405180910390fd5b8060035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b9361134f565b806004819055507fc6f44473d25b86976ee7357c1339328224e349abc5486edc3007ef658a57608a81604051610bc991906122a0565b60405180910390a150565b610bdc61134f565b806007819055507fc0ee04694d374614ce7446fec893f62636a198322cb67905a0aab6540758823681604051610c1291906122a0565b60405180910390a150565b610c2561134f565b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa706c3d6ff18ff7dfc1ee0a34bc34fe432c200d8d475bff3ed963eb31ae1946881604051610c949190612383565b60405180910390a150565b600c5481565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b600b60159054906101000a900460ff1681565b60095481565b610cfe61134f565b610d066113d6565b5f4790505f8111610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390612689565b60405180910390fd5b610d54611065565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610d96573d5f803e3d5ffd5b5050610da0611425565b565b610daa61134f565b806006819055507fd3e73a3551345540b2c2f0cc7eec50ee0f3358cfebf32c896c0c029a7380d2e781604051610de091906122a0565b60405180910390a150565b610df361134f565b80600d819055507f5458182db4020e94853c0d5c5cce048c4e1634ccde3542a2041f7ac4f981020081604051610e2991906122a0565b60405180910390a150565b60075481565b60065481565b610e4861134f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead906126f1565b60405180910390fd5b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f83d45f5c429dba9f97489fcc77d90ff84381e8cef6c75d74f22040053e39e6bb60405160405180910390a250565b610f4461134f565b610f4d5f61142e565b565b60055481565b610f5d61134f565b610f656113d6565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fa39190612383565b602060405180830381865afa158015610fbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe29190612723565b90505f8111611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90612798565b60405180910390fd5b611058611031611065565b828473ffffffffffffffffffffffffffffffffffffffff166114ef9092919063ffffffff16565b5050611062611425565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a2781565b60045481565b6110be61134f565b80600b60146101000a81548160ff0219169083151502179055507f86bc98ed9f93fb007ed2d1d217b38888077957d119cc162137d2b9895fdb3a77816040516111079190612278565b60405180910390a150565b61111a61134f565b806008819055507f06fb020167a2bb48a4c9a626020098314f548d90dbc8bd8c0886e4e6f43dfd778160405161115091906122a0565b60405180910390a150565b600d5481565b61116961134f565b806009819055507fa7a07f821dfdfca8e4baa9ccc4bbe7b782baac5946918bd19f1c9c761db414108160405161119f91906122a0565b60405180910390a150565b600a5481565b6111b861134f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611228575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161121f9190612383565b60405180910390fd5b6112318161142e565b50565b61123c61134f565b80600c819055507f202e0ba938a78b3edea663296e8a06054c65df48fc652817d1e4231351a4c1e28160405161127291906122a0565b60405180910390a150565b61128561134f565b80600b60156101000a81548160ff0219169083151502179055507fd73af46a4eeb69ecaa18d0f34f6ad6f85a5c56bf4f8bdc3c771cdf7ed039ebc4816040516112ce9190612278565b60405180910390a150565b5f6112e38261156e565b9050600b60159054906101000a900460ff16801561130d5750600b60169054906101000a900460ff165b1561134157600c54811161132957611324826116b3565b61133c565b600d54811061133b5761133a611b86565b5b5b61134b565b61134a826116b3565b5b5050565b6113576120ba565b73ffffffffffffffffffffffffffffffffffffffff16611375611065565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576113986120ba565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113cb9190612383565b60405180910390fd5b565b60026001540361141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290612800565b60405180910390fd5b6002600181905550565b60018081905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611569838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161152292919061281e565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506120c1565b505050565b5f8060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f670de0b6b3a7640000856040518363ffffffff1660e01b81526004016115d4929190612935565b5f60405180830381865afa1580156115ee573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906116169190612a86565b90505f8160018151811061162d5761162c612542565b5b602002602001015111611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612b17565b60405180910390fd5b8060018151811061168957611688612542565b5b60200260200101516ec097ce7bc90715b34b9f10000000006116ab9190612b62565b915050919050565b5f4790506006548110156116c75750611b83565b5f6008544244436040516020016116e093929190612bb2565b604051602081830303815290604052805190602001205f1c6117029190612bee565b90505f816007541161171657600754611725565b816007546117249190612c1e565b5b90505f8184116117355783611737565b815b90505f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f83886040518363ffffffff1660e01b8152600401611796929190612c51565b5f60405180830381865afa1580156117b0573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906117d89190612a86565b90505f612710600a546127106117ee9190612c1e565b8360018151811061180257611801612542565b5b60200260200101516118149190612c7f565b61181e9190612b62565b90505f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161187b9190612383565b602060405180830381865afa158015611896573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ba9190612723565b905060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de9585848b3061012c4261190b919061247a565b6040518663ffffffff1660e01b815260040161192a9493929190612cc0565b5f604051808303818588803b158015611941575f80fd5b505af1158015611953573d5f803e3d5ffd5b50505050505f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119b39190612383565b602060405180830381865afa1580156119ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f29190612723565b90505f8282611a019190612c1e565b90507f8e9ad85f153412974b951156ecd7f4153ae7ae208664792e8a5f8a711786b9388682604051611a34929190612d0a565b60405180910390a1600b60149054906101000a900460ff168015611aa557505f73ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b7257611b17600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114ef9092919063ffffffff16565b7f6f1deddfc28100c291fae8f1064e4a91e844f0841993bb8fba9a913c3b801d80600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611b6992919061281e565b60405180910390a15b426005819055505050505050505050505b50565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611be19190612383565b602060405180830381865afa158015611bfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c209190612723565b90505f8103611c2f57506120b8565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f6040518363ffffffff1660e01b8152600401611cac929190612d6a565b6020604051808303815f875af1158015611cc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cec9190612da5565b5060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611d6a92919061281e565b6020604051808303815f875af1158015611d86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611daa9190612da5565b505f600267ffffffffffffffff811115611dc757611dc6612515565b5b604051908082528060200260200182016040528015611df55781602001602082028036833780820191505090505b50905060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16815f81518110611e2d57611e2c612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a2781600181518110611e9c57611e9b612542565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f84846040518363ffffffff1660e01b8152600401611f33929190612c51565b5f60405180830381865afa158015611f4d573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611f759190612a86565b90505f612710600a54612710611f8b9190612c1e565b83600181518110611f9f57611f9e612542565b5b6020026020010151611fb19190612c7f565b611fbb9190612b62565b90505f47905060025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478684873061012c42612010919061247a565b6040518663ffffffff1660e01b8152600401612030959493929190612dd0565b5f604051808303815f87803b158015612047575f80fd5b505af1158015612059573d5f803e3d5ffd5b505050505f4790505f828261206e9190612c1e565b90507f5120429c88882edc469993b2f7c2d1f13287fd3ccf3ec20d28f3af207fd6b28187826040516120a1929190612d0a565b60405180910390a142600581905550505050505050505b565b5f33905090565b5f8060205f8451602086015f885af1806120e0576040513d5f823e3d81fd5b3d92505f519150505f82146120f9576001811415612114565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b1561215657836040517f5274afe700000000000000000000000000000000000000000000000000000000815260040161214d9190612383565b60405180910390fd5b50505050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61217f8161216d565b8114612189575f80fd5b50565b5f8135905061219a81612176565b92915050565b5f602082840312156121b5576121b4612165565b5b5f6121c28482850161218c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f819050919050565b5f61220d612208612203846121cb565b6121ea565b6121cb565b9050919050565b5f61221e826121f3565b9050919050565b5f61222f82612214565b9050919050565b61223f81612225565b82525050565b5f6020820190506122585f830184612236565b92915050565b5f8115159050919050565b6122728161225e565b82525050565b5f60208201905061228b5f830184612269565b92915050565b61229a8161216d565b82525050565b5f6020820190506122b35f830184612291565b92915050565b6122c28161225e565b81146122cc575f80fd5b50565b5f813590506122dd816122b9565b92915050565b5f602082840312156122f8576122f7612165565b5b5f612305848285016122cf565b91505092915050565b5f612318826121cb565b9050919050565b6123288161230e565b8114612332575f80fd5b50565b5f813590506123438161231f565b92915050565b5f6020828403121561235e5761235d612165565b5b5f61236b84828501612335565b91505092915050565b61237d8161230e565b82525050565b5f6020820190506123965f830184612374565b92915050565b5f6123a682612214565b9050919050565b6123b68161239c565b82525050565b5f6020820190506123cf5f8301846123ad565b92915050565b5f82825260208201905092915050565b7f47617320707269636520746f6f206869676800000000000000000000000000005f82015250565b5f6124196012836123d5565b9150612424826123e5565b602082019050919050565b5f6020820190508181035f8301526124468161240d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124848261216d565b915061248f8361216d565b92508282019050808211156124a7576124a661244d565b5b92915050565b7f546f6f20736f6f6e0000000000000000000000000000000000000000000000005f82015250565b5f6124e16008836123d5565b91506124ec826124ad565b602082019050919050565b5f6020820190508181035f83015261250e816124d5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f536c69707061676520746f6f20686967680000000000000000000000000000005f82015250565b5f6125a36011836123d5565b91506125ae8261256f565b602082019050919050565b5f6020820190508181035f8301526125d081612597565b9050919050565b7f496e76616c696420746f6b656e000000000000000000000000000000000000005f82015250565b5f61260b600d836123d5565b9150612616826125d7565b602082019050919050565b5f6020820190508181035f830152612638816125ff565b9050919050565b7f4e6f20504c5320746f20776974686472617700000000000000000000000000005f82015250565b5f6126736012836123d5565b915061267e8261263f565b602082019050919050565b5f6020820190508181035f8301526126a081612667565b9050919050565b7f496e76616c696420726f757465722061646472657373000000000000000000005f82015250565b5f6126db6016836123d5565b91506126e6826126a7565b602082019050919050565b5f6020820190508181035f830152612708816126cf565b9050919050565b5f8151905061271d81612176565b92915050565b5f6020828403121561273857612737612165565b5b5f6127458482850161270f565b91505092915050565b7f4e6f20746f6b656e7320746f20776974686472617700000000000000000000005f82015250565b5f6127826015836123d5565b915061278d8261274e565b602082019050919050565b5f6020820190508181035f8301526127af81612776565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6127ea601f836123d5565b91506127f5826127b6565b602082019050919050565b5f6020820190508181035f830152612817816127de565b9050919050565b5f6040820190506128315f830185612374565b61283e6020830184612291565b9392505050565b5f819050919050565b5f61286861286361285e84612845565b6121ea565b61216d565b9050919050565b6128788161284e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6128b08161230e565b82525050565b5f6128c183836128a7565b60208301905092915050565b5f602082019050919050565b5f6128e38261287e565b6128ed8185612888565b93506128f883612898565b805f5b8381101561292857815161290f88826128b6565b975061291a836128cd565b9250506001810190506128fb565b5085935050505092915050565b5f6040820190506129485f83018561286f565b818103602083015261295a81846128d9565b90509392505050565b5f80fd5b5f601f19601f8301169050919050565b61298082612967565b810181811067ffffffffffffffff8211171561299f5761299e612515565b5b80604052505050565b5f6129b161215c565b90506129bd8282612977565b919050565b5f67ffffffffffffffff8211156129dc576129db612515565b5b602082029050602081019050919050565b5f80fd5b5f612a036129fe846129c2565b6129a8565b90508083825260208201905060208402830185811115612a2657612a256129ed565b5b835b81811015612a4f5780612a3b888261270f565b845260208401935050602081019050612a28565b5050509392505050565b5f82601f830112612a6d57612a6c612963565b5b8151612a7d8482602086016129f1565b91505092915050565b5f60208284031215612a9b57612a9a612165565b5b5f82015167ffffffffffffffff811115612ab857612ab7612169565b5b612ac484828501612a59565b91505092915050565b7f496e76616c69642071756f7465000000000000000000000000000000000000005f82015250565b5f612b01600d836123d5565b9150612b0c82612acd565b602082019050919050565b5f6020820190508181035f830152612b2e81612af5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b6c8261216d565b9150612b778361216d565b925082612b8757612b86612b35565b5b828204905092915050565b5f819050919050565b612bac612ba78261216d565b612b92565b82525050565b5f612bbd8286612b9b565b602082019150612bcd8285612b9b565b602082019150612bdd8284612b9b565b602082019150819050949350505050565b5f612bf88261216d565b9150612c038361216d565b925082612c1357612c12612b35565b5b828206905092915050565b5f612c288261216d565b9150612c338361216d565b9250828203905081811115612c4b57612c4a61244d565b5b92915050565b5f604082019050612c645f830185612291565b8181036020830152612c7681846128d9565b90509392505050565b5f612c898261216d565b9150612c948361216d565b9250828202612ca28161216d565b91508282048414831517612cb957612cb861244d565b5b5092915050565b5f608082019050612cd35f830187612291565b8181036020830152612ce581866128d9565b9050612cf46040830185612374565b612d016060830184612291565b95945050505050565b5f604082019050612d1d5f830185612291565b612d2a6020830184612291565b9392505050565b5f819050919050565b5f612d54612d4f612d4a84612d31565b6121ea565b61216d565b9050919050565b612d6481612d3a565b82525050565b5f604082019050612d7d5f830185612374565b612d8a6020830184612d5b565b9392505050565b5f81519050612d9f816122b9565b92915050565b5f60208284031215612dba57612db9612165565b5b5f612dc784828501612d91565b91505092915050565b5f60a082019050612de35f830188612291565b612df06020830187612291565b8181036040830152612e0281866128d9565b9050612e116060830185612374565b612e1e6080830184612291565b969550505050505056fea26469706673582212207dddb511c704dba770afd73c7d0d5c4d04f13dc8d6a059690d1402affb82647a64736f6c63430008150033