false
true
0

Contract Address Details

0x54F8cd665D53405637F995afF986fcd8fe5D4d56

Contract Name
ProcessorV2
Creator
0xd00d56–87ac3c at 0x86921b–7a972b
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
4 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26330627
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
ProcessorV2




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




Optimization runs
1000
EVM Version
default




Verified at
2025-12-26T10:41:06.130340Z

Constructor Arguments

0x000000000000000000000000d7ba719d28079253e96b57a6518c41eea2be048d0000000000000000000000005cca59d561bd5b738e8fcc349bf4c606460ae843000000000000000000000000d00d56df5e7b67b8378d5712571495f0dc87ac3c0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000004563918244f400000

Arg [0] (address) : 0xd7ba719d28079253e96b57a6518c41eea2be048d
Arg [1] (address) : 0x5cca59d561bd5b738e8fcc349bf4c606460ae843
Arg [2] (address) : 0xd00d56df5e7b67b8378d5712571495f0dc87ac3c
Arg [3] (uint256) : 3000
Arg [4] (uint256) : 80000000000000000000

              

Contract source code

// Sources flattened with hardhat v2.16.1 https://hardhat.org

// File @openzeppelin/contracts/utils/Context.sol@v4.9.2

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/Ownable.sol@v4.9.2


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.9.2


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}


// File @openzeppelin/contracts/interfaces/IERC20.sol@v4.9.2


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

pragma solidity ^0.8.0;


// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol@v4.9.2


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/Address.sol@v4.9.2


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol@v4.9.2


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



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

    /**
     * @dev 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.encodeWithSelector(token.transfer.selector, 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.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

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

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

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

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

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

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

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

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

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


// File contracts/interfaces/IIMPLS.sol



pragma solidity ^0.8.19;

interface IIMPLS {
    function authorize(uint256 amount) external;
    function impls(uint256 amountIn) external;
    function setDistributor(address _Distributor) external;
    function setScalingFactor(uint256 _scalingFactor) external;
}


// File contracts/interfaces/IStakingRewards.sol



pragma solidity ^0.8.19;


interface IStakingRewards {
    // Views
    function lastTimeRewardApplicable() external view returns (uint256);
    function rewardPerToken() external view returns (uint256);
    function earned(address account) external view returns (uint256);
    function getRewardForDuration() external view returns (uint256);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function stakingToken() external view returns (address);
    
    // Mutative
    function stake(uint256 amount) external;
    function withdraw(uint256 amount) external;
    function getReward() external;
    function exit() external;
    function notifyRewardAmount(uint256 reward) external;
}


// File contracts/interfaces/IWPLS.sol



pragma solidity ^0.8.19;

interface IWPLS {
    function approve(address spender, uint amount) external returns (bool);
    function balanceOf(address) external view returns (uint256);
    function transferFrom(address src, address dst, uint wad) external returns (bool);
    function deposit() external payable;
    function withdraw(uint wad) external;
}


// File contracts/ProcessorV2.sol



pragma solidity ^0.8.19;





/**
 * @title Processor
 * @dev Transfer to PLS rewards, team and control daily emission
 */
contract ProcessorV2 is Ownable {
    using SafeERC20 for IERC20;

    address public constant IMPLS = address(0x5f63BC3d5bd234946f18d24e98C324f629D9d60e);
    address public constant WPLS = address(0xA1077a294dDE1B09bB078844df40758a5D0f9a27);
    uint256 public constant BP_DIV = 10000;

    address public PLSRewards;
    address public Proxy;
    address public Team;
    uint256 public teamBP;
    uint256 public emission;

    event RewardsProcessed(uint256 amountIMPLS);
    event PLSRewardsUpdated(address PLSRewards);
    event ProxyUpdated(address Proxy);
    event TeamUpdated(address Team);
    event TeamBPUpdated(uint256 teamBP);
    event EmissionUpdated(uint256 newEmission);

    constructor(
        address _PLSRewards,
        address _Proxy,
        address _Team,
        uint256 _teamBP,
        uint256 _emission
    ) {
        PLSRewards = _PLSRewards;
        Proxy = _Proxy;
        Team = _Team;
        teamBP = _teamBP;
        emission = _emission;
    }

    receive() external payable {}

    modifier onlyProxy() {
        require(msg.sender == Proxy, "Processor: Caller must be the Proxy");
        _;
    }

    /**
     * @dev Owner Controls
     */
    function setEmission(uint256 newEmission) external onlyOwner {
        emission = newEmission;
        emit EmissionUpdated(newEmission);
    }

    function setPLSRewards(address _PLSRewards) external onlyOwner {
        PLSRewards = _PLSRewards;
        emit PLSRewardsUpdated(PLSRewards);
    }

    function setProxy(address _Proxy) external onlyOwner {
        Proxy = _Proxy;
        emit ProxyUpdated(Proxy);
    }

    function setTeam(address _Team) external onlyOwner {
        Team = _Team;
        emit TeamUpdated(Team);
    }

    function setTeamBP(uint256 _teamBP) external onlyOwner {
        teamBP = _teamBP;
        emit TeamBPUpdated(teamBP);
    }

    // In case rewards need to be cleared for update
    function clearRewards() external onlyOwner {
        IERC20(IMPLS).safeTransfer(msg.sender, balanceIMPLS());
    }

    function balanceWPLS() public view returns (uint256) {
        return IERC20(WPLS).balanceOf(address(this));
    }

    function balanceIMPLS() public view returns (uint256) {
        return IERC20(IMPLS).balanceOf(address(this));
    }

    function process() external onlyProxy {
        uint256 balancePLS = address(this).balance;
        if (balancePLS > 0) {
            IWPLS(WPLS).deposit{value: balancePLS}();
        }

        uint256 balWPLS = balanceWPLS();
        uint256 teamFee = (balWPLS * teamBP) / BP_DIV;
        IERC20(WPLS).safeTransfer(Team, teamFee);
        uint256 rewardAmount = balanceWPLS();
        IERC20(WPLS).safeTransfer(PLSRewards, rewardAmount);
        IStakingRewards(PLSRewards).notifyRewardAmount(rewardAmount);

        emit RewardsProcessed(rewardAmount);
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_PLSRewards","internalType":"address"},{"type":"address","name":"_Proxy","internalType":"address"},{"type":"address","name":"_Team","internalType":"address"},{"type":"uint256","name":"_teamBP","internalType":"uint256"},{"type":"uint256","name":"_emission","internalType":"uint256"}]},{"type":"event","name":"EmissionUpdated","inputs":[{"type":"uint256","name":"newEmission","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":"PLSRewardsUpdated","inputs":[{"type":"address","name":"PLSRewards","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ProxyUpdated","inputs":[{"type":"address","name":"Proxy","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"RewardsProcessed","inputs":[{"type":"uint256","name":"amountIMPLS","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TeamBPUpdated","inputs":[{"type":"uint256","name":"teamBP","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TeamUpdated","inputs":[{"type":"address","name":"Team","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"BP_DIV","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"IMPLS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"PLSRewards","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"Proxy","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"Team","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"WPLS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceIMPLS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceWPLS","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"clearRewards","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"emission","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"process","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEmission","inputs":[{"type":"uint256","name":"newEmission","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPLSRewards","inputs":[{"type":"address","name":"_PLSRewards","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setProxy","inputs":[{"type":"address","name":"_Proxy","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTeam","inputs":[{"type":"address","name":"_Team","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTeamBP","inputs":[{"type":"uint256","name":"_teamBP","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"teamBP","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

Verify & Publish
0x608060405234801561001057600080fd5b50604051610fdf380380610fdf83398101604081905261002f916100f0565b61003833610084565b600180546001600160a01b03199081166001600160a01b039788161790915560028054821695871695909517909455600380549094169290941691909117909155600455600555610146565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146100eb57600080fd5b919050565b600080600080600060a0868803121561010857600080fd5b610111866100d4565b945061011f602087016100d4565b935061012d604087016100d4565b6060870151608090970151959894975095949392505050565b610e8a806101556000396000f3fe6080604052600436106101635760003560e01c80638da5cb5b116100c0578063e22223d511610074578063f2fde38b11610059578063f2fde38b1461037f578063f756c10a1461039f578063fd782de5146103b557600080fd5b8063e22223d514610342578063ef8ef56f1461035757600080fd5b80639b690d7d116100a55780639b690d7d146102f8578063c33fb8771461030d578063ddce102f1461032257600080fd5b80638da5cb5b146102ba57806397107d6d146102d857600080fd5b8063639e01dd11610117578063715018a6116100fc578063715018a61461027a578063827c049e1461028f5780638790769b146102a557600080fd5b8063639e01dd1461023257806366066d001461025257600080fd5b8063095cf5c611610148578063095cf5c6146101ba578063349d3b42146101da57806361223666146101fa57600080fd5b806302767a491461016f578063078126471461019857600080fd5b3661016a57005b600080fd5b34801561017b57600080fd5b5061018560045481565b6040519081526020015b60405180910390f35b3480156101a457600080fd5b506101b86101b3366004610d10565b6103d5565b005b3480156101c657600080fd5b506101b86101d5366004610d29565b610419565b3480156101e657600080fd5b506101b86101f5366004610d29565b61047c565b34801561020657600080fd5b5060015461021a906001600160a01b031681565b6040516001600160a01b03909116815260200161018f565b34801561023e57600080fd5b5060035461021a906001600160a01b031681565b34801561025e57600080fd5b5061021a735f63bc3d5bd234946f18d24e98c324f629d9d60e81565b34801561028657600080fd5b506101b86104df565b34801561029b57600080fd5b5061018560055481565b3480156102b157600080fd5b506101856104f3565b3480156102c657600080fd5b506000546001600160a01b031661021a565b3480156102e457600080fd5b506101b86102f3366004610d29565b61056f565b34801561030457600080fd5b506101856105d2565b34801561031957600080fd5b506101b861060c565b34801561032e57600080fd5b506101b861033d366004610d10565b610848565b34801561034e57600080fd5b506101b8610885565b34801561036357600080fd5b5061021a73a1077a294dde1b09bb078844df40758a5d0f9a2781565b34801561038b57600080fd5b506101b861039a366004610d29565b6108b5565b3480156103ab57600080fd5b5061018561271081565b3480156103c157600080fd5b5060025461021a906001600160a01b031681565b6103dd610945565b60048190556040518181527fd1faaf1dd58a0a34505600bc08960f84260170f89755c3850ee1493fe21b6cb0906020015b60405180910390a150565b610421610945565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f6123f717363f8c044cbe4fa59229536a58de97552d1ba6ba8ad4d347e836da549060200161040e565b610484610945565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527ffa34e0364cccc3c54468281751bd82bc4946e6ad0f4959ef47c185433deb93e99060200161040e565b6104e7610945565b6104f1600061099f565b565b6040516370a0823160e01b8152306004820152600090735f63bc3d5bd234946f18d24e98c324f629d9d60e906370a08231906024015b602060405180830381865afa158015610546573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056a9190610d59565b905090565b610577610945565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527ffc80377ca9c49cc11ae6982f390a42db976d5530af7c43889264b13fbbd7c57e9060200161040e565b6040516370a0823160e01b815230600482015260009073a1077a294dde1b09bb078844df40758a5d0f9a27906370a0823190602401610529565b6002546001600160a01b031633146106915760405162461bcd60e51b815260206004820152602360248201527f50726f636573736f723a2043616c6c6572206d7573742062652074686520507260448201527f6f7879000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b4780156107015773a1077a294dde1b09bb078844df40758a5d0f9a276001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156106e757600080fd5b505af11580156106fb573d6000803e3d6000fd5b50505050505b600061070b6105d2565b90506000612710600454836107209190610d72565b61072a9190610d9d565b6003549091506107599073a1077a294dde1b09bb078844df40758a5d0f9a27906001600160a01b0316836109fc565b60006107636105d2565b6001549091506107929073a1077a294dde1b09bb078844df40758a5d0f9a27906001600160a01b0316836109fc565b6001546040517f3c6b16ab000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b0390911690633c6b16ab90602401600060405180830381600087803b1580156107f157600080fd5b505af1158015610805573d6000803e3d6000fd5b505050507fcbb46d9b69e77a6b5011c11cd2bf9be0461c9a1920e9f42678661cec154cd2a88160405161083a91815260200190565b60405180910390a150505050565b610850610945565b60058190556040518181527fb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d49060200161040e565b61088d610945565b6104f1336108996104f3565b735f63bc3d5bd234946f18d24e98c324f629d9d60e91906109fc565b6108bd610945565b6001600160a01b0381166109395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610688565b6109428161099f565b50565b6000546001600160a01b031633146104f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610688565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a7c908490610a81565b505050565b6000610ad6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b699092919063ffffffff16565b9050805160001480610af7575080806020019051810190610af79190610dbf565b610a7c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610688565b6060610b788484600085610b80565b949350505050565b606082471015610bf85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610688565b600080866001600160a01b03168587604051610c149190610e05565b60006040518083038185875af1925050503d8060008114610c51576040519150601f19603f3d011682016040523d82523d6000602084013e610c56565b606091505b5091509150610c6787838387610c72565b979650505050505050565b60608315610ce1578251600003610cda576001600160a01b0385163b610cda5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610688565b5081610b78565b610b788383815115610cf65781518083602001fd5b8060405162461bcd60e51b81526004016106889190610e21565b600060208284031215610d2257600080fd5b5035919050565b600060208284031215610d3b57600080fd5b81356001600160a01b0381168114610d5257600080fd5b9392505050565b600060208284031215610d6b57600080fd5b5051919050565b8082028115828204841417610d9757634e487b7160e01b600052601160045260246000fd5b92915050565b600082610dba57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610dd157600080fd5b81518015158114610d5257600080fd5b60005b83811015610dfc578181015183820152602001610de4565b50506000910152565b60008251610e17818460208701610de1565b9190910192915050565b6020815260008251806020840152610e40816040850160208701610de1565b601f01601f1916919091016040019291505056fea2646970667358221220a485f0a17b39226e9eb9839c450fd557153eb0c52903356499791865eadaaf9a64736f6c63430008130033000000000000000000000000d7ba719d28079253e96b57a6518c41eea2be048d0000000000000000000000005cca59d561bd5b738e8fcc349bf4c606460ae843000000000000000000000000d00d56df5e7b67b8378d5712571495f0dc87ac3c0000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000004563918244f400000

Deployed ByteCode

0x6080604052600436106101635760003560e01c80638da5cb5b116100c0578063e22223d511610074578063f2fde38b11610059578063f2fde38b1461037f578063f756c10a1461039f578063fd782de5146103b557600080fd5b8063e22223d514610342578063ef8ef56f1461035757600080fd5b80639b690d7d116100a55780639b690d7d146102f8578063c33fb8771461030d578063ddce102f1461032257600080fd5b80638da5cb5b146102ba57806397107d6d146102d857600080fd5b8063639e01dd11610117578063715018a6116100fc578063715018a61461027a578063827c049e1461028f5780638790769b146102a557600080fd5b8063639e01dd1461023257806366066d001461025257600080fd5b8063095cf5c611610148578063095cf5c6146101ba578063349d3b42146101da57806361223666146101fa57600080fd5b806302767a491461016f578063078126471461019857600080fd5b3661016a57005b600080fd5b34801561017b57600080fd5b5061018560045481565b6040519081526020015b60405180910390f35b3480156101a457600080fd5b506101b86101b3366004610d10565b6103d5565b005b3480156101c657600080fd5b506101b86101d5366004610d29565b610419565b3480156101e657600080fd5b506101b86101f5366004610d29565b61047c565b34801561020657600080fd5b5060015461021a906001600160a01b031681565b6040516001600160a01b03909116815260200161018f565b34801561023e57600080fd5b5060035461021a906001600160a01b031681565b34801561025e57600080fd5b5061021a735f63bc3d5bd234946f18d24e98c324f629d9d60e81565b34801561028657600080fd5b506101b86104df565b34801561029b57600080fd5b5061018560055481565b3480156102b157600080fd5b506101856104f3565b3480156102c657600080fd5b506000546001600160a01b031661021a565b3480156102e457600080fd5b506101b86102f3366004610d29565b61056f565b34801561030457600080fd5b506101856105d2565b34801561031957600080fd5b506101b861060c565b34801561032e57600080fd5b506101b861033d366004610d10565b610848565b34801561034e57600080fd5b506101b8610885565b34801561036357600080fd5b5061021a73a1077a294dde1b09bb078844df40758a5d0f9a2781565b34801561038b57600080fd5b506101b861039a366004610d29565b6108b5565b3480156103ab57600080fd5b5061018561271081565b3480156103c157600080fd5b5060025461021a906001600160a01b031681565b6103dd610945565b60048190556040518181527fd1faaf1dd58a0a34505600bc08960f84260170f89755c3850ee1493fe21b6cb0906020015b60405180910390a150565b610421610945565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f6123f717363f8c044cbe4fa59229536a58de97552d1ba6ba8ad4d347e836da549060200161040e565b610484610945565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527ffa34e0364cccc3c54468281751bd82bc4946e6ad0f4959ef47c185433deb93e99060200161040e565b6104e7610945565b6104f1600061099f565b565b6040516370a0823160e01b8152306004820152600090735f63bc3d5bd234946f18d24e98c324f629d9d60e906370a08231906024015b602060405180830381865afa158015610546573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056a9190610d59565b905090565b610577610945565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527ffc80377ca9c49cc11ae6982f390a42db976d5530af7c43889264b13fbbd7c57e9060200161040e565b6040516370a0823160e01b815230600482015260009073a1077a294dde1b09bb078844df40758a5d0f9a27906370a0823190602401610529565b6002546001600160a01b031633146106915760405162461bcd60e51b815260206004820152602360248201527f50726f636573736f723a2043616c6c6572206d7573742062652074686520507260448201527f6f7879000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b4780156107015773a1077a294dde1b09bb078844df40758a5d0f9a276001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156106e757600080fd5b505af11580156106fb573d6000803e3d6000fd5b50505050505b600061070b6105d2565b90506000612710600454836107209190610d72565b61072a9190610d9d565b6003549091506107599073a1077a294dde1b09bb078844df40758a5d0f9a27906001600160a01b0316836109fc565b60006107636105d2565b6001549091506107929073a1077a294dde1b09bb078844df40758a5d0f9a27906001600160a01b0316836109fc565b6001546040517f3c6b16ab000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b0390911690633c6b16ab90602401600060405180830381600087803b1580156107f157600080fd5b505af1158015610805573d6000803e3d6000fd5b505050507fcbb46d9b69e77a6b5011c11cd2bf9be0461c9a1920e9f42678661cec154cd2a88160405161083a91815260200190565b60405180910390a150505050565b610850610945565b60058190556040518181527fb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d49060200161040e565b61088d610945565b6104f1336108996104f3565b735f63bc3d5bd234946f18d24e98c324f629d9d60e91906109fc565b6108bd610945565b6001600160a01b0381166109395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610688565b6109428161099f565b50565b6000546001600160a01b031633146104f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610688565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a7c908490610a81565b505050565b6000610ad6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b699092919063ffffffff16565b9050805160001480610af7575080806020019051810190610af79190610dbf565b610a7c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610688565b6060610b788484600085610b80565b949350505050565b606082471015610bf85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610688565b600080866001600160a01b03168587604051610c149190610e05565b60006040518083038185875af1925050503d8060008114610c51576040519150601f19603f3d011682016040523d82523d6000602084013e610c56565b606091505b5091509150610c6787838387610c72565b979650505050505050565b60608315610ce1578251600003610cda576001600160a01b0385163b610cda5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610688565b5081610b78565b610b788383815115610cf65781518083602001fd5b8060405162461bcd60e51b81526004016106889190610e21565b600060208284031215610d2257600080fd5b5035919050565b600060208284031215610d3b57600080fd5b81356001600160a01b0381168114610d5257600080fd5b9392505050565b600060208284031215610d6b57600080fd5b5051919050565b8082028115828204841417610d9757634e487b7160e01b600052601160045260246000fd5b92915050565b600082610dba57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610dd157600080fd5b81518015158114610d5257600080fd5b60005b83811015610dfc578181015183820152602001610de4565b50506000910152565b60008251610e17818460208701610de1565b9190910192915050565b6020815260008251806020840152610e40816040850160208701610de1565b601f01601f1916919091016040019291505056fea2646970667358221220a485f0a17b39226e9eb9839c450fd557153eb0c52903356499791865eadaaf9a64736f6c63430008130033