ETH Price: $3,457.93 (+5.09%)

Contract

0xE09c8a88982A85C5B76b1756ec6172d4ad2549D6
 
Transaction Hash
Method
Block
From
To
Unstake212420642024-11-22 8:25:3529 hrs ago1732263935IN
0xE09c8a88...4ad2549D6
0 ETH0.000641758.37241257
Claim212420562024-11-22 8:23:5929 hrs ago1732263839IN
0xE09c8a88...4ad2549D6
0 ETH0.011510218.08327381
Unstake212349832024-11-21 8:42:472 days ago1732178567IN
0xE09c8a88...4ad2549D6
0 ETH0.000745569.72678203
Claim212349792024-11-21 8:41:592 days ago1732178519IN
0xE09c8a88...4ad2549D6
0 ETH0.0143106510.04994267
Claim212278382024-11-20 8:44:473 days ago1732092287IN
0xE09c8a88...4ad2549D6
0 ETH0.008226598.91528317
Unstake212278242024-11-20 8:41:593 days ago1732092119IN
0xE09c8a88...4ad2549D6
0 ETH0.007497379.71002864
Unstake212268212024-11-20 5:20:113 days ago1732080011IN
0xE09c8a88...4ad2549D6
0 ETH0.000755689.85882408
Claim212268162024-11-20 5:19:113 days ago1732079951IN
0xE09c8a88...4ad2549D6
0 ETH0.010982629.98863089
Unstake212266402024-11-20 4:43:473 days ago1732077827IN
0xE09c8a88...4ad2549D6
0 ETH0.000758279.89259645
Claim212266312024-11-20 4:41:593 days ago1732077719IN
0xE09c8a88...4ad2549D6
0 ETH0.010542199.73953191
Unstake212213372024-11-19 10:59:474 days ago1732013987IN
0xE09c8a88...4ad2549D6
0 ETH0.0008571711.18280939
Claim212213352024-11-19 10:59:234 days ago1732013963IN
0xE09c8a88...4ad2549D6
0 ETH0.0055711712.08442272
Claim212198312024-11-19 5:57:474 days ago1731995867IN
0xE09c8a88...4ad2549D6
0 ETH0.0120293313.11167873
Unstake212157962024-11-18 16:28:114 days ago1731947291IN
0xE09c8a88...4ad2549D6
0 ETH0.012121426.30211314
Unstake212138052024-11-18 9:48:235 days ago1731923303IN
0xE09c8a88...4ad2549D6
0 ETH0.0008402410.96197512
Claim212138032024-11-18 9:47:595 days ago1731923279IN
0xE09c8a88...4ad2549D6
0 ETH0.0134775211.63284617
Unstake212048302024-11-17 3:46:236 days ago1731815183IN
0xE09c8a88...4ad2549D6
0 ETH0.003547299.93371314
Unstake212029932024-11-16 21:37:236 days ago1731793043IN
0xE09c8a88...4ad2549D6
0 ETH0.0007832710.21872471
Claim212029802024-11-16 21:34:476 days ago1731792887IN
0xE09c8a88...4ad2549D6
0 ETH0.0145862610.24349646
Unstake212027442024-11-16 20:47:356 days ago1731790055IN
0xE09c8a88...4ad2549D6
0 ETH0.0009308212.1436407
Claim212027342024-11-16 20:45:356 days ago1731789935IN
0xE09c8a88...4ad2549D6
0 ETH0.0076366710.94662799
Unstake211970922024-11-16 1:52:477 days ago1731721967IN
0xE09c8a88...4ad2549D6
0 ETH0.0012056215.72875669
Claim211970902024-11-16 1:52:237 days ago1731721943IN
0xE09c8a88...4ad2549D6
0 ETH0.021644115.2
Unstake211840342024-11-14 6:06:119 days ago1731564371IN
0xE09c8a88...4ad2549D6
0 ETH0.002833936.97147547
Claim211840322024-11-14 6:05:479 days ago1731564347IN
0xE09c8a88...4ad2549D6
0 ETH0.014243737.43468151
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PDTStaking

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : PDTStaking.sol
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

/// @title   PDT Staking
/// @notice  Contract that allows users to stake PDT
/// @author  JeffX
contract PDTStaking is ReentrancyGuard {
    using SafeERC20 for IERC20;

    /// EVENTS ///

    /// @notice            Emitted if epoch 0 is pushed back
    /// @param newEndTime  New end time of epoch 0
    event Epoch0PushedBack(uint256 indexed newEndTime);

    /// @notice                     Emitted if epoch length is updated
    /// @param previousEpochLength  Previous length of epochs
    /// @param newEpochLength       New length of epochs
    event EpochLengthUpdated(uint256 indexed previousEpochLength, uint256 indexed newEpochLength);

    /// @notice                 Emitted upon address staking
    /// @param to               Address of who is receiving credit of stake
    /// @param newStakeAmount   New stake amount of `to`
    /// @param newWeightAmount  New weight amount of `to`
    event Staked(address to, uint256 indexed newStakeAmount, uint256 indexed newWeightAmount);

    /// @notice                Emitted upon user unstaking
    /// @param staker          Address of who is unstaking
    /// @param amountUnstaked  Amount `staker` unstaked
    event Unstaked(address staker, uint256 indexed amountUnstaked);

    /// @notice               Emitted upon staker claiming
    /// @param staker         Address of who claimed rewards
    /// @param epochsClaimed  Array of epochs claimed
    /// @param claimed        Amount claimed
    event Claimed(address staker, uint256[] indexed epochsClaimed, uint256 indexed claimed);

    /// ERRORS ///

    /// @notice Error for if epoch is invalid
    error InvalidEpoch();
    /// @notice Error for if user has already claimed up to current epoch
    error ClaimedUpToEpoch();
    /// @notice Error for if staking more than balance
    error MoreThanBalance();
    /// @notice Error for if unstaking when nothing is staked
    error NothingStaked();
    /// @notice Error for if not owner
    error NotOwner();
    /// @notice Error for if zero address
    error ZeroAddress();
    /// @notice Error for if after epoch 0
    error AfterEpoch0();

    /// STRUCTS ///

    /// @notice                    Details for epoch
    /// @param totalToDistribute   Total amount of token to distribute for epoch
    /// @param totalClaimed        Total amount of tokens claimed from epoch
    /// @param startTime           Timestamp epoch started
    /// @param endTime             Timestamp epoch ends
    /// @param weightAtEnd         Weight of staked tokens at end of epoch
    struct Epoch {
        uint256 totalToDistribute;
        uint256 totalClaimed;
        uint256 startTime;
        uint256 endTime;
        uint256 weightAtEnd;
    }

    /// @notice                         Stake details for user
    /// @param amountStaked             Amount user has staked
    /// @param lastInteraction          Last timestamp user interacted
    /// @param weightAtLastInteraction  Weight of stake at last interaction
    struct Stake {
        uint256 amountStaked;
        uint256 lastInteraction;
        uint256 weightAtLastInteraction;
    }

    /// STATE VARIABLES ///

    /// @notice Time to double weight
    uint256 public immutable timeToDouble;
    /// @notice Epoch id
    uint256 public epochId;
    /// @notice Length of epoch
    uint256 public epochLength;
    /// @notice Last interaction with contract
    uint256 public lastInteraction;
    /// @notice Total amount of PDT staked
    uint256 public totalStaked;

    /// @notice Total amount of weight within contract
    uint256 internal _contractWeight;
    /// @notice Amount of unclaimed rewards
    uint256 public unclaimedRewards;

    /// @notice Current epoch
    Epoch public currentEpoch;

    /// @notice Address of PDT
    address public immutable pdt;
    /// @notice Address of prime
    address public immutable prime;
    /// @notice Address of owner
    address public owner;

    /// @notice If user has claimed for certain epoch
    mapping(address => mapping(uint256 => bool)) public userClaimedEpoch;
    /// @notice User's weight at an epoch
    mapping(address => mapping(uint256 => uint256)) internal _userWeightAtEpoch;
    /// @notice Epoch user has last interacted
    mapping(address => uint256) public epochLeftOff;
    /// @notice Epoch user has last claimed
    mapping(address => uint256) public claimLeftOff;
    /// @notice Id to epoch details
    mapping(uint256 => Epoch) public epoch;
    /// @notice Stake details of user
    mapping(address => Stake) public stakeDetails;

    /// CONSTRUCTOR ///

    /// @param _timeToDouble       Time for weight to double
    /// @param _epochLength        Length of epoch
    /// @param _firstEpochStartIn  Amount of time first epoch will start in
    /// @param _pdt                PDT token address
    /// @param _prime              Address of reward token
    /// @param _owner              Address of owner
    constructor(
        uint256 _timeToDouble,
        uint256 _epochLength,
        uint256 _firstEpochStartIn,
        address _pdt,
        address _prime,
        address _owner
    ) {
        timeToDouble = _timeToDouble;
        epochLength = _epochLength;
        currentEpoch.endTime = block.timestamp + _firstEpochStartIn;
        epoch[0].endTime = block.timestamp + _firstEpochStartIn;
        currentEpoch.startTime = block.timestamp;
        epoch[0].startTime = block.timestamp;
        require(_pdt != address(0), "Zero Addresss: PDT");
        pdt = _pdt;
        require(_prime != address(0), "Zero Addresss: PRIME");
        prime = _prime;
        require(_owner != address(0), "Zero Addresss: Owner");
        owner = _owner;
    }

    /// OWNER FUNCTION ///

    /// @notice                 Push back epoch 0, used in case PRIME can not be transferred at current end time
    /// @param _timeToPushBack  Amount of time to push epoch 0 back by
    function pushBackEpoch0(uint256 _timeToPushBack) external {
        if (msg.sender != owner) revert NotOwner();
        if (epochId != 0) revert AfterEpoch0();

        currentEpoch.endTime += _timeToPushBack;
        epoch[0].endTime += _timeToPushBack;

        emit Epoch0PushedBack(currentEpoch.endTime);
    }

    /// @notice              Update epoch length of contract
    /// @param _epochLength  New epoch length
    function updateEpochLength(uint256 _epochLength) external {
        if (msg.sender != owner) revert NotOwner();
        uint256 previousEpochLength_ = epochLength;
        epochLength = _epochLength;

        emit EpochLengthUpdated(previousEpochLength_, _epochLength);
    }

    /// @notice           Changing owner of contract to `newOwner_`
    /// @param _newOwner  Address of who will be the new owner of contract
    function transferOwnership(address _newOwner) external {
        if (msg.sender != owner) revert NotOwner();
        if (_newOwner == address(0)) revert ZeroAddress();
        owner = _newOwner;
    }

    /// PUBLIC FUNCTIONS ///

    /// @notice  Update epoch details if time
    function distribute() external nonReentrant {
        _distribute();
    }

    /// @notice         Stake PDT
    /// @param _to      Address that will receive credit for stake
    /// @param _amount  Amount of PDT to stake
    function stake(address _to, uint256 _amount) external nonReentrant {
        if (IERC20(pdt).balanceOf(msg.sender) < _amount) revert MoreThanBalance();
        IERC20(pdt).safeTransferFrom(msg.sender, address(this), _amount);

        _distribute();
        _setUserWeightAtEpoch(_to);
        _adjustContractWeight(true, _amount);

        totalStaked += _amount;

        Stake memory _stake = stakeDetails[_to];

        if (_stake.amountStaked > 0) {
            uint256 _additionalWeight = _weightIncreaseSinceInteraction(
                block.timestamp,
                _stake.lastInteraction,
                _stake.amountStaked
            );
            _stake.weightAtLastInteraction += (_additionalWeight + _amount);
        } else {
            _stake.weightAtLastInteraction = _amount;
        }

        _stake.amountStaked += _amount;
        _stake.lastInteraction = block.timestamp;

        stakeDetails[_to] = _stake;

        emit Staked(_to, _stake.amountStaked, _stake.weightAtLastInteraction);
    }

    /// @notice     Unstake PDT
    /// @param _to  Address that will receive PDT unstaked
    function unstake(address _to) external nonReentrant {
        Stake memory _stake = stakeDetails[msg.sender];

        uint256 _stakedAmount = _stake.amountStaked;

        if (_stakedAmount == 0) revert NothingStaked();

        _distribute();
        _setUserWeightAtEpoch(msg.sender);
        _adjustContractWeight(false, _stakedAmount);

        totalStaked -= _stakedAmount;

        _stake.amountStaked = 0;
        _stake.lastInteraction = block.timestamp;
        _stake.weightAtLastInteraction = 0;

        stakeDetails[msg.sender] = _stake;

        IERC20(pdt).safeTransfer(_to, _stakedAmount);

        emit Unstaked(msg.sender, _stakedAmount);
    }

    /// @notice     Claims all pending rewards tokens for msg.sender
    /// @param _to  Address to send rewards to
    function claim(address _to) external nonReentrant {
        _setUserWeightAtEpoch(msg.sender);

        uint256 _pendingRewards;
        uint256 _claimLeftOff = claimLeftOff[msg.sender];

        if (_claimLeftOff == epochId) revert ClaimedUpToEpoch();

        for (_claimLeftOff; _claimLeftOff < epochId; ++_claimLeftOff) {
            if (!userClaimedEpoch[msg.sender][_claimLeftOff] && contractWeightAtEpoch(_claimLeftOff) > 0) {
                userClaimedEpoch[msg.sender][_claimLeftOff] = true;
                Epoch memory _epoch = epoch[_claimLeftOff];
                uint256 _weightAtEpoch = _userWeightAtEpoch[msg.sender][_claimLeftOff];

                uint256 _epochRewards = (_epoch.totalToDistribute * _weightAtEpoch) /
                    contractWeightAtEpoch(_claimLeftOff);
                if (_epoch.totalClaimed + _epochRewards > _epoch.totalToDistribute) {
                    _epochRewards = _epoch.totalToDistribute - _epoch.totalClaimed;
                }

                _pendingRewards += _epochRewards;
                epoch[_claimLeftOff].totalClaimed += _epochRewards;
            }
        }

        claimLeftOff[msg.sender] = epochId;
        unclaimedRewards -= _pendingRewards;
        IERC20(prime).safeTransfer(_to, _pendingRewards);
    }

    /// VIEW FUNCTIONS ///

    /// @notice                  Returns current pending rewards for next epoch
    /// @return pendingRewards_  Current pending rewards for next epoch
    function pendingRewards() external view returns (uint256 pendingRewards_) {
        return IERC20(prime).balanceOf(address(this)) - unclaimedRewards;
    }

    /// @notice              Returns total weight `_user` has currently
    /// @param _user         Address to calculate `userWeight_` of
    /// @return userWeight_  Weight of `_user`
    function userTotalWeight(address _user) public view returns (uint256 userWeight_) {
        Stake memory _stake = stakeDetails[_user];
        uint256 _additionalWeight = _weightIncreaseSinceInteraction(
            block.timestamp,
            _stake.lastInteraction,
            _stake.amountStaked
        );
        userWeight_ = _additionalWeight + _stake.weightAtLastInteraction;
    }

    /// @notice                  Returns total weight of contract at `_epochId`
    /// @param _epochId          Epoch to return total weight of contract for
    /// @return contractWeight_  Weight of contract at end of `_epochId`
    function contractWeightAtEpoch(uint256 _epochId) public view returns (uint256 contractWeight_) {
        if (epochId <= _epochId) revert InvalidEpoch();
        return epoch[_epochId].weightAtEnd;
    }

    /// @notice             Returns amount `_user` has claimable for `_epochId`
    /// @param _user        Address to see `claimable_` for `_epochId`
    /// @param _epochId     Id of epoch wanting to get `claimable_` for
    /// @return claimable_  Amount claimable
    function claimAmountForEpoch(address _user, uint256 _epochId) external view returns (uint256 claimable_) {
        if (epochId <= _epochId) revert InvalidEpoch();
        if (userClaimedEpoch[_user][_epochId] || contractWeightAtEpoch(_epochId) == 0) return 0;

        Epoch memory _epoch = epoch[_epochId];

        claimable_ = (_epoch.totalToDistribute * userWeightAtEpoch(_user, _epochId)) / contractWeightAtEpoch(_epochId);
    }

    /// @notice              Returns total weight of `_user` at `_epochId`
    /// @param _user         Address to calculate `userWeight_` of for `_epochId`
    /// @param _epochId      Epoch id to calculate weight of `_user`
    /// @return userWeight_  Weight of `_user` for `_epochId`
    function userWeightAtEpoch(address _user, uint256 _epochId) public view returns (uint256 userWeight_) {
        if (epochId <= _epochId) revert InvalidEpoch();
        uint256 _epochLeftOff = epochLeftOff[_user];
        Stake memory _stake = stakeDetails[_user];

        if (_epochLeftOff > _epochId) userWeight_ = _userWeightAtEpoch[_user][_epochId];
        else {
            Epoch memory _epoch = epoch[_epochId];
            if (_stake.amountStaked > 0) {
                uint256 _additionalWeight = _weightIncreaseSinceInteraction(
                    _epoch.endTime,
                    _stake.lastInteraction,
                    _stake.amountStaked
                );
                userWeight_ = _additionalWeight + _stake.weightAtLastInteraction;
            }
        }
    }

    /// @notice                  Returns current total weight of contract
    /// @return contractWeight_  Total current weight of contract
    function contractWeight() external view returns (uint256 contractWeight_) {
        uint256 _weightIncrease = _weightIncreaseSinceInteraction(block.timestamp, lastInteraction, totalStaked);
        contractWeight_ = _weightIncrease + _contractWeight;
    }

    /// INTERNAL VIEW FUNCTION ///

    /// @notice                    Returns additional weight since `_lastInteraction` at `_timestamp`
    /// @param _timestamp          Timestamp calculating on
    /// @param _lastInteraction    Last interaction time
    /// @param _baseAmount         Base amount of PDT to account for
    /// @return additionalWeight_  Additional weight since `_lastinteraction` at `_timestamp`
    function _weightIncreaseSinceInteraction(
        uint256 _timestamp,
        uint256 _lastInteraction,
        uint256 _baseAmount
    ) internal view returns (uint256 additionalWeight_) {
        uint256 _timePassed = _timestamp - _lastInteraction;
        uint256 _multiplierReceived = (1e18 * _timePassed) / timeToDouble;
        additionalWeight_ = (_baseAmount * _multiplierReceived) / 1e18;
    }

    /// INTERNAL FUNCTIONS ///

    /// @notice         Adjust contract weight since last interaction
    /// @param _stake   Bool if `_amount` is being staked or withdrawn
    /// @param _amount  Amount of PDT being staked or withdrawn
    function _adjustContractWeight(bool _stake, uint256 _amount) internal {
        uint256 _weightReceivedSinceInteraction = _weightIncreaseSinceInteraction(
            block.timestamp,
            lastInteraction,
            totalStaked
        );
        _contractWeight += _weightReceivedSinceInteraction;

        if (_stake) {
            _contractWeight += _amount;
        } else {
            if (userTotalWeight(msg.sender) > _contractWeight) _contractWeight = 0;
            else _contractWeight -= userTotalWeight(msg.sender);
        }

        lastInteraction = block.timestamp;
    }

    /// @notice        Set epochs of `_user` that they left off on
    /// @param _user   Address of user being updated
    function _setUserWeightAtEpoch(address _user) internal {
        uint256 _epochLeftOff = epochLeftOff[_user];

        if (_epochLeftOff != epochId) {
            Stake memory _stake = stakeDetails[_user];
            if (_stake.amountStaked > 0) {
                for (_epochLeftOff; _epochLeftOff < epochId; ++_epochLeftOff) {
                    Epoch memory _epoch = epoch[_epochLeftOff];
                    uint256 _additionalWeight = _weightIncreaseSinceInteraction(
                        _epoch.endTime,
                        _stake.lastInteraction,
                        _stake.amountStaked
                    );
                    _userWeightAtEpoch[_user][_epochLeftOff] = _additionalWeight + _stake.weightAtLastInteraction;
                }
            }

            epochLeftOff[_user] = epochId;
        }
    }

    /// @notice  Update epoch details if time
    function _distribute() internal {
        if (block.timestamp >= currentEpoch.endTime) {
            uint256 _additionalWeight = _weightIncreaseSinceInteraction(
                currentEpoch.endTime,
                lastInteraction,
                totalStaked
            );
            epoch[epochId].weightAtEnd = _additionalWeight + _contractWeight;

            ++epochId;

            Epoch memory _epoch;
            _epoch.totalToDistribute = IERC20(prime).balanceOf(address(this)) - unclaimedRewards;
            _epoch.startTime = block.timestamp;
            _epoch.endTime = block.timestamp + epochLength;

            currentEpoch = _epoch;
            epoch[epochId] = _epoch;

            unclaimedRewards += _epoch.totalToDistribute;
        }
    }
}

File 2 of 5 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 3 of 5 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

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

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

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

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    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");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @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");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 5 of 5 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_timeToDouble","type":"uint256"},{"internalType":"uint256","name":"_epochLength","type":"uint256"},{"internalType":"uint256","name":"_firstEpochStartIn","type":"uint256"},{"internalType":"address","name":"_pdt","type":"address"},{"internalType":"address","name":"_prime","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AfterEpoch0","type":"error"},{"inputs":[],"name":"ClaimedUpToEpoch","type":"error"},{"inputs":[],"name":"InvalidEpoch","type":"error"},{"inputs":[],"name":"MoreThanBalance","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[],"name":"NothingStaked","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"staker","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"epochsClaimed","type":"uint256[]"},{"indexed":true,"internalType":"uint256","name":"claimed","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"Epoch0PushedBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"previousEpochLength","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newEpochLength","type":"uint256"}],"name":"EpochLengthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"newStakeAmount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newWeightAmount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"staker","type":"address"},{"indexed":true,"internalType":"uint256","name":"amountUnstaked","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_epochId","type":"uint256"}],"name":"claimAmountForEpoch","outputs":[{"internalType":"uint256","name":"claimable_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimLeftOff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractWeight","outputs":[{"internalType":"uint256","name":"contractWeight_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_epochId","type":"uint256"}],"name":"contractWeightAtEpoch","outputs":[{"internalType":"uint256","name":"contractWeight_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint256","name":"totalToDistribute","type":"uint256"},{"internalType":"uint256","name":"totalClaimed","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"weightAtEnd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"epoch","outputs":[{"internalType":"uint256","name":"totalToDistribute","type":"uint256"},{"internalType":"uint256","name":"totalClaimed","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"weightAtEnd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"epochLeftOff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastInteraction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"pendingRewards_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeToPushBack","type":"uint256"}],"name":"pushBackEpoch0","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakeDetails","outputs":[{"internalType":"uint256","name":"amountStaked","type":"uint256"},{"internalType":"uint256","name":"lastInteraction","type":"uint256"},{"internalType":"uint256","name":"weightAtLastInteraction","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeToDouble","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_epochLength","type":"uint256"}],"name":"updateEpochLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userClaimedEpoch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"userTotalWeight","outputs":[{"internalType":"uint256","name":"userWeight_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_epochId","type":"uint256"}],"name":"userWeightAtEpoch","outputs":[{"internalType":"uint256","name":"userWeight_","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e06040523480156200001157600080fd5b50604051620030a4380380620030a48339818101604052810190620000379190620002f4565b600160008190555085608081815250508460028190555083426200005c91906200047c565b60076003018190555083426200007391906200047c565b601160008081526020019081526020016000206003018190555042600760020181905550426011600080815260200190815260200160002060020181905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c9062000449565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c69062000427565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002709062000405565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050620005fa565b600081519050620002d781620005c6565b92915050565b600081519050620002ee81620005e0565b92915050565b60008060008060008060c0878903121562000314576200031362000546565b5b60006200032489828a01620002dd565b96505060206200033789828a01620002dd565b95505060406200034a89828a01620002dd565b94505060606200035d89828a01620002c6565b93505060806200037089828a01620002c6565b92505060a06200038389828a01620002c6565b9150509295509295509295565b60006200039f6014836200046b565b9150620003ac826200054b565b602082019050919050565b6000620003c66014836200046b565b9150620003d38262000574565b602082019050919050565b6000620003ed6012836200046b565b9150620003fa826200059d565b602082019050919050565b60006020820190508181036000830152620004208162000390565b9050919050565b600060208201905081810360008301526200044281620003b7565b9050919050565b600060208201905081810360008301526200046481620003de565b9050919050565b600082825260208201905092915050565b600062000489826200050d565b915062000496836200050d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ce57620004cd62000517565b5b828201905092915050565b6000620004e682620004ed565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b7f5a65726f2041646472657373733a204f776e6572000000000000000000000000600082015250565b7f5a65726f2041646472657373733a205052494d45000000000000000000000000600082015250565b7f5a65726f2041646472657373733a205044540000000000000000000000000000600082015250565b620005d181620004d9565b8114620005dd57600080fd5b50565b620005eb816200050d565b8114620005f757600080fd5b50565b60805160a05160601c60c05160601c612a436200066160003960008181610bb5015281816112df015281816114ae0152611d30015260008181610f660152818161104d01528181611260015261174301526000818161156601526119430152612a436000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063a7ed8de7116100f9578063e5085c9511610097578063f2888dbb11610071578063f2888dbb14610515578063f2fde38b14610531578063f85f91b41461054d578063fa2a9da91461056b576101c4565b8063e5085c95146104a9578063eded3fda146104d9578063ee5508f9146104f7576101c4565b8063b2b3fd35116100d3578063b2b3fd3514610433578063baf043f614610451578063c7ee005e14610481578063e4fc6b6d1461049f576101c4565b8063a7ed8de7146103dd578063aa9bbc0c146103f9578063adc9772e14610417576101c4565b806357d775f8116101665780638da5cb5b116101405780638da5cb5b146103555780638f71a265146103735780639a5bfa2c146103915780639f34135f146103ad576101c4565b806357d775f8146102f75780637667180814610315578063817b1cd214610337576101c4565b80631e83409a116101a25780631e83409a146102595780632a745dd01461027557806350f6402e146102935780635487c577146102c3576101c4565b806309639761146101c9578063165e3371146101f957806319beb24914610229575b600080fd5b6101e360048036038101906101de919061224e565b61059d565b6040516101f091906125b4565b60405180910390f35b610213600480360381019061020e919061227b565b6105b5565b60405161022091906125b4565b60405180910390f35b610243600480360381019061023e919061224e565b61079c565b60405161025091906125b4565b60405180910390f35b610273600480360381019061026e919061224e565b610839565b005b61027d610c06565b60405161028a91906125b4565b60405180910390f35b6102ad60048036038101906102a8919061227b565b610c2e565b6040516102ba91906124f7565b60405180910390f35b6102dd60048036038101906102d891906122e8565b610c5d565b6040516102ee959493929190612606565b60405180910390f35b6102ff610c93565b60405161030c91906125b4565b60405180910390f35b61031d610c99565b60405161032e959493929190612606565b60405180910390f35b61033f610cbd565b60405161034c91906125b4565b60405180910390f35b61035d610cc3565b60405161036a919061247c565b60405180910390f35b61037b610ce9565b60405161038891906125b4565b60405180910390f35b6103ab60048036038101906103a691906122e8565b610cef565b005b6103c760048036038101906103c2919061224e565b610db6565b6040516103d491906125b4565b60405180910390f35b6103f760048036038101906103f291906122e8565b610dce565b005b610401610f0f565b60405161040e91906125b4565b60405180910390f35b610431600480360381019061042c919061227b565b610f15565b005b61043b61125e565b604051610448919061247c565b60405180910390f35b61046b600480360381019061046691906122e8565b611282565b60405161047891906125b4565b60405180910390f35b6104896112dd565b604051610496919061247c565b60405180910390f35b6104a7611301565b005b6104c360048036038101906104be919061227b565b611361565b6040516104d091906125b4565b60405180910390f35b6104e16114a7565b6040516104ee91906125b4565b60405180910390f35b6104ff611564565b60405161050c91906125b4565b60405180910390f35b61052f600480360381019061052a919061224e565b611588565b005b61054b6004803603810190610546919061224e565b6117cc565b005b6105556118fe565b60405161056291906125b4565b60405180910390f35b6105856004803603810190610580919061224e565b611904565b604051610594939291906125cf565b60405180910390f35b60106020528060005260406000206000915090505481565b600081600154116105f2576040517fd5b25b6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090508382111561070257600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020549250610794565b6000601160008681526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050905060008260000151111561079257600061077c82606001518460200151856000015161192e565b905082604001518161078e919061268b565b9450505b505b505092915050565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050600061081e428360200151846000015161192e565b9050816040015181610830919061268b565b92505050919050565b6002600054141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612594565b60405180910390fd5b6002600081905550610890336119ac565b600080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600154811415610911576040517fed63e8f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600154811015610b4f57600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615801561098f5750600061098d82611282565b115b15610b3e576001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601160008381526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000205490506000610ab184611282565b828460000151610ac19190612712565b610acb91906126e1565b90508260000151818460200151610ae2919061268b565b1115610aff5782602001518360000151610afc919061276c565b90505b8085610b0b919061268b565b945080601160008681526020019081526020016000206001016000828254610b33919061268b565b925050819055505050505b80610b489061281b565b9050610912565b600154601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160066000828254610ba7919061276c565b92505081905550610bf983837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611bb09092919063ffffffff16565b5050600160008190555050565b600080610c184260035460045461192e565b905060055481610c28919061268b565b91505090565b600d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60116020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b60025481565b60078060000154908060010154908060020154908060030154908060040154905085565b60045481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060025490508160028190555081817fabee49ad51dbf535eeac70f628afec9ee59d67dc4cb03cc434b0675f57be11c460405160405180910390a35050565b600f6020528060005260406000206000915090505481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060015414610e91576040517f6a84829d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076003016000828254610ea6919061268b565b9250508190555080601160008081526020019081526020016000206003016000828254610ed3919061268b565b925050819055506007600301547fc7ec6191c7c61fc5dd5ad85fa1b48e19e7b198c6fb7819d082163406e49e354160405160405180910390a250565b60015481565b60026000541415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290612594565b60405180910390fd5b6002600081905550807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fbd919061247c565b60206040518083038186803b158015610fd557600080fd5b505afa158015610fe9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100d9190612315565b1015611045576040517f6d099b9c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110923330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611c36909392919063ffffffff16565b61109a611cbf565b6110a3826119ac565b6110ae600182611eb0565b80600460008282546110c0919061268b565b925050819055506000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081600001511115611181576000611155428360200151846000015161192e565b90508281611163919061268b565b82604001818151611174919061268b565b915081815250505061118c565b818160400181815250505b818160000181815161119e919061268b565b915081815250504281602001818152505080601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050806040015181600001517f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee9085604051611249919061247c565b60405180910390a35060016000819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600081600154116112bf576040517fd5b25b6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60116000838152602001908152602001600020600401549050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60026000541415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612594565b60405180910390fd5b6002600081905550611357611cbf565b6001600081905550565b6000816001541161139e576040517fd5b25b6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff168061140f5750600061140d83611282565b145b1561141d57600090506114a1565b6000601160008481526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050905061147a83611282565b61148485856105b5565b82600001516114939190612712565b61149d91906126e1565b9150505b92915050565b60006006547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611505919061247c565b60206040518083038186803b15801561151d57600080fd5b505afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612315565b61155f919061276c565b905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600260005414156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612594565b60405180910390fd5b60026000819055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000816000015190506000811415611686576040517f9fe7bfd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61168e611cbf565b611697336119ac565b6116a2600082611eb0565b80600460008282546116b4919061276c565b92505081905550600082600001818152505042826020018181525050600082604001818152505081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015590505061178783827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611bb09092919063ffffffff16565b807f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f75336040516117b7919061247c565b60405180910390a25050600160008190555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611853576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b60126020528060005260406000206000915090508060000154908060010154908060020154905083565b600080838561193d919061276c565b905060007f000000000000000000000000000000000000000000000000000000000000000082670de0b6b3a76400006119769190612712565b61198091906126e1565b9050670de0b6b3a764000081856119979190612712565b6119a191906126e1565b925050509392505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506001548114611bac576000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081600001511115611b64575b600154821015611b63576000601160008481526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090506000611aea82606001518460200151856000015161192e565b9050826040015181611afc919061268b565b600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002081905550505081611b5c9061281b565b9150611a73565b5b600154600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b5050565b611c318363a9059cbb60e01b8484604051602401611bcf9291906124ce565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f4e565b505050565b611cb9846323b872dd60e01b858585604051602401611c5793929190612497565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f4e565b50505050565b6007600301544210611eae576000611ce160076003015460035460045461192e565b905060055481611cf1919061268b565b60116000600154815260200190815260200160002060040181905550600160008154611d1c9061281b565b91905081905550611d2b6121cb565b6006547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d87919061247c565b60206040518083038186803b158015611d9f57600080fd5b505afa158015611db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd79190612315565b611de1919061276c565b8160000181815250504281604001818152505060025442611e02919061268b565b8160600181815250508060076000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050806011600060015481526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050806000015160066000828254611ea4919061268b565b9250508190555050505b565b6000611ec14260035460045461192e565b90508060056000828254611ed5919061268b565b925050819055508215611f00578160056000828254611ef4919061268b565b92505081905550611f42565b600554611f0c3361079c565b1115611f1f576000600581905550611f41565b611f283361079c565b60056000828254611f39919061276c565b925050819055505b5b42600381905550505050565b6000611fb0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166120159092919063ffffffff16565b90506000815111156120105780806020019051810190611fd091906122bb565b61200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690612574565b60405180910390fd5b5b505050565b6060612024848460008561202d565b90509392505050565b606082471015612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990612534565b60405180910390fd5b61207b85612141565b6120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190612554565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516120e39190612465565b60006040518083038185875af1925050503d8060008114612120576040519150601f19603f3d011682016040523d82523d6000602084013e612125565b606091505b5091509150612135828286612164565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612174578290506121c4565b6000835111156121875782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb9190612512565b60405180910390fd5b9392505050565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b600081359050612209816129c8565b92915050565b60008151905061221e816129df565b92915050565b600081359050612233816129f6565b92915050565b600081519050612248816129f6565b92915050565b600060208284031215612264576122636128c2565b5b6000612272848285016121fa565b91505092915050565b60008060408385031215612292576122916128c2565b5b60006122a0858286016121fa565b92505060206122b185828601612224565b9150509250929050565b6000602082840312156122d1576122d06128c2565b5b60006122df8482850161220f565b91505092915050565b6000602082840312156122fe576122fd6128c2565b5b600061230c84828501612224565b91505092915050565b60006020828403121561232b5761232a6128c2565b5b600061233984828501612239565b91505092915050565b61234b816127a0565b82525050565b61235a816127b2565b82525050565b600061236b82612659565b612375818561266f565b93506123858185602086016127e8565b80840191505092915050565b600061239c82612664565b6123a6818561267a565b93506123b68185602086016127e8565b6123bf816128c7565b840191505092915050565b60006123d760268361267a565b91506123e2826128d8565b604082019050919050565b60006123fa601d8361267a565b915061240582612927565b602082019050919050565b600061241d602a8361267a565b915061242882612950565b604082019050919050565b6000612440601f8361267a565b915061244b8261299f565b602082019050919050565b61245f816127de565b82525050565b60006124718284612360565b915081905092915050565b60006020820190506124916000830184612342565b92915050565b60006060820190506124ac6000830186612342565b6124b96020830185612342565b6124c66040830184612456565b949350505050565b60006040820190506124e36000830185612342565b6124f06020830184612456565b9392505050565b600060208201905061250c6000830184612351565b92915050565b6000602082019050818103600083015261252c8184612391565b905092915050565b6000602082019050818103600083015261254d816123ca565b9050919050565b6000602082019050818103600083015261256d816123ed565b9050919050565b6000602082019050818103600083015261258d81612410565b9050919050565b600060208201905081810360008301526125ad81612433565b9050919050565b60006020820190506125c96000830184612456565b92915050565b60006060820190506125e46000830186612456565b6125f16020830185612456565b6125fe6040830184612456565b949350505050565b600060a08201905061261b6000830188612456565b6126286020830187612456565b6126356040830186612456565b6126426060830185612456565b61264f6080830184612456565b9695505050505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612696826127de565b91506126a1836127de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126d6576126d5612864565b5b828201905092915050565b60006126ec826127de565b91506126f7836127de565b92508261270757612706612893565b5b828204905092915050565b600061271d826127de565b9150612728836127de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276157612760612864565b5b828202905092915050565b6000612777826127de565b9150612782836127de565b92508282101561279557612794612864565b5b828203905092915050565b60006127ab826127be565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156128065780820151818401526020810190506127eb565b83811115612815576000848401525b50505050565b6000612826826127de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561285957612858612864565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6129d1816127a0565b81146129dc57600080fd5b50565b6129e8816127b2565b81146129f357600080fd5b50565b6129ff816127de565b8114612a0a57600080fd5b5056fea2646970667358221220e0a35e4d890b0346ea502f28c344cf24f92044b7ef195474721f208b57ceb95164736f6c634300080700330000000000000000000000000000000000000000000000000000000000ed4e00000000000000000000000000000000000000000000000000000000000076a700000000000000000000000000000000000000000000000000000000000076a700000000000000000000000000375abb85c329753b1ba849a601438ae77eec9893000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf000000000000000000000000994d91215ec7e6543a770d0278d11b1a61fb52f4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063a7ed8de7116100f9578063e5085c9511610097578063f2888dbb11610071578063f2888dbb14610515578063f2fde38b14610531578063f85f91b41461054d578063fa2a9da91461056b576101c4565b8063e5085c95146104a9578063eded3fda146104d9578063ee5508f9146104f7576101c4565b8063b2b3fd35116100d3578063b2b3fd3514610433578063baf043f614610451578063c7ee005e14610481578063e4fc6b6d1461049f576101c4565b8063a7ed8de7146103dd578063aa9bbc0c146103f9578063adc9772e14610417576101c4565b806357d775f8116101665780638da5cb5b116101405780638da5cb5b146103555780638f71a265146103735780639a5bfa2c146103915780639f34135f146103ad576101c4565b806357d775f8146102f75780637667180814610315578063817b1cd214610337576101c4565b80631e83409a116101a25780631e83409a146102595780632a745dd01461027557806350f6402e146102935780635487c577146102c3576101c4565b806309639761146101c9578063165e3371146101f957806319beb24914610229575b600080fd5b6101e360048036038101906101de919061224e565b61059d565b6040516101f091906125b4565b60405180910390f35b610213600480360381019061020e919061227b565b6105b5565b60405161022091906125b4565b60405180910390f35b610243600480360381019061023e919061224e565b61079c565b60405161025091906125b4565b60405180910390f35b610273600480360381019061026e919061224e565b610839565b005b61027d610c06565b60405161028a91906125b4565b60405180910390f35b6102ad60048036038101906102a8919061227b565b610c2e565b6040516102ba91906124f7565b60405180910390f35b6102dd60048036038101906102d891906122e8565b610c5d565b6040516102ee959493929190612606565b60405180910390f35b6102ff610c93565b60405161030c91906125b4565b60405180910390f35b61031d610c99565b60405161032e959493929190612606565b60405180910390f35b61033f610cbd565b60405161034c91906125b4565b60405180910390f35b61035d610cc3565b60405161036a919061247c565b60405180910390f35b61037b610ce9565b60405161038891906125b4565b60405180910390f35b6103ab60048036038101906103a691906122e8565b610cef565b005b6103c760048036038101906103c2919061224e565b610db6565b6040516103d491906125b4565b60405180910390f35b6103f760048036038101906103f291906122e8565b610dce565b005b610401610f0f565b60405161040e91906125b4565b60405180910390f35b610431600480360381019061042c919061227b565b610f15565b005b61043b61125e565b604051610448919061247c565b60405180910390f35b61046b600480360381019061046691906122e8565b611282565b60405161047891906125b4565b60405180910390f35b6104896112dd565b604051610496919061247c565b60405180910390f35b6104a7611301565b005b6104c360048036038101906104be919061227b565b611361565b6040516104d091906125b4565b60405180910390f35b6104e16114a7565b6040516104ee91906125b4565b60405180910390f35b6104ff611564565b60405161050c91906125b4565b60405180910390f35b61052f600480360381019061052a919061224e565b611588565b005b61054b6004803603810190610546919061224e565b6117cc565b005b6105556118fe565b60405161056291906125b4565b60405180910390f35b6105856004803603810190610580919061224e565b611904565b604051610594939291906125cf565b60405180910390f35b60106020528060005260406000206000915090505481565b600081600154116105f2576040517fd5b25b6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090508382111561070257600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020549250610794565b6000601160008681526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050905060008260000151111561079257600061077c82606001518460200151856000015161192e565b905082604001518161078e919061268b565b9450505b505b505092915050565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050600061081e428360200151846000015161192e565b9050816040015181610830919061268b565b92505050919050565b6002600054141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612594565b60405180910390fd5b6002600081905550610890336119ac565b600080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600154811415610911576040517fed63e8f400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600154811015610b4f57600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615801561098f5750600061098d82611282565b115b15610b3e576001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601160008381526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000205490506000610ab184611282565b828460000151610ac19190612712565b610acb91906126e1565b90508260000151818460200151610ae2919061268b565b1115610aff5782602001518360000151610afc919061276c565b90505b8085610b0b919061268b565b945080601160008681526020019081526020016000206001016000828254610b33919061268b565b925050819055505050505b80610b489061281b565b9050610912565b600154601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160066000828254610ba7919061276c565b92505081905550610bf983837f000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf73ffffffffffffffffffffffffffffffffffffffff16611bb09092919063ffffffff16565b5050600160008190555050565b600080610c184260035460045461192e565b905060055481610c28919061268b565b91505090565b600d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60116020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b60025481565b60078060000154908060010154908060020154908060030154908060040154905085565b60045481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060025490508160028190555081817fabee49ad51dbf535eeac70f628afec9ee59d67dc4cb03cc434b0675f57be11c460405160405180910390a35050565b600f6020528060005260406000206000915090505481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060015414610e91576040517f6a84829d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076003016000828254610ea6919061268b565b9250508190555080601160008081526020019081526020016000206003016000828254610ed3919061268b565b925050819055506007600301547fc7ec6191c7c61fc5dd5ad85fa1b48e19e7b198c6fb7819d082163406e49e354160405160405180910390a250565b60015481565b60026000541415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290612594565b60405180910390fd5b6002600081905550807f000000000000000000000000375abb85c329753b1ba849a601438ae77eec989373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fbd919061247c565b60206040518083038186803b158015610fd557600080fd5b505afa158015610fe9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100d9190612315565b1015611045576040517f6d099b9c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110923330837f000000000000000000000000375abb85c329753b1ba849a601438ae77eec989373ffffffffffffffffffffffffffffffffffffffff16611c36909392919063ffffffff16565b61109a611cbf565b6110a3826119ac565b6110ae600182611eb0565b80600460008282546110c0919061268b565b925050819055506000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081600001511115611181576000611155428360200151846000015161192e565b90508281611163919061268b565b82604001818151611174919061268b565b915081815250505061118c565b818160400181815250505b818160000181815161119e919061268b565b915081815250504281602001818152505080601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050806040015181600001517f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee9085604051611249919061247c565b60405180910390a35060016000819055505050565b7f000000000000000000000000375abb85c329753b1ba849a601438ae77eec989381565b600081600154116112bf576040517fd5b25b6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60116000838152602001908152602001600020600401549050919050565b7f000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf81565b60026000541415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612594565b60405180910390fd5b6002600081905550611357611cbf565b6001600081905550565b6000816001541161139e576040517fd5b25b6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff168061140f5750600061140d83611282565b145b1561141d57600090506114a1565b6000601160008481526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050905061147a83611282565b61148485856105b5565b82600001516114939190612712565b61149d91906126e1565b9150505b92915050565b60006006547f000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611505919061247c565b60206040518083038186803b15801561151d57600080fd5b505afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612315565b61155f919061276c565b905090565b7f0000000000000000000000000000000000000000000000000000000000ed4e0081565b600260005414156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612594565b60405180910390fd5b60026000819055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000816000015190506000811415611686576040517f9fe7bfd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61168e611cbf565b611697336119ac565b6116a2600082611eb0565b80600460008282546116b4919061276c565b92505081905550600082600001818152505042826020018181525050600082604001818152505081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015590505061178783827f000000000000000000000000375abb85c329753b1ba849a601438ae77eec989373ffffffffffffffffffffffffffffffffffffffff16611bb09092919063ffffffff16565b807f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f75336040516117b7919061247c565b60405180910390a25050600160008190555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611853576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b60126020528060005260406000206000915090508060000154908060010154908060020154905083565b600080838561193d919061276c565b905060007f0000000000000000000000000000000000000000000000000000000000ed4e0082670de0b6b3a76400006119769190612712565b61198091906126e1565b9050670de0b6b3a764000081856119979190612712565b6119a191906126e1565b925050509392505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506001548114611bac576000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081600001511115611b64575b600154821015611b63576000601160008481526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090506000611aea82606001518460200151856000015161192e565b9050826040015181611afc919061268b565b600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002081905550505081611b5c9061281b565b9150611a73565b5b600154600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b5050565b611c318363a9059cbb60e01b8484604051602401611bcf9291906124ce565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f4e565b505050565b611cb9846323b872dd60e01b858585604051602401611c5793929190612497565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f4e565b50505050565b6007600301544210611eae576000611ce160076003015460035460045461192e565b905060055481611cf1919061268b565b60116000600154815260200190815260200160002060040181905550600160008154611d1c9061281b565b91905081905550611d2b6121cb565b6006547f000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d87919061247c565b60206040518083038186803b158015611d9f57600080fd5b505afa158015611db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd79190612315565b611de1919061276c565b8160000181815250504281604001818152505060025442611e02919061268b565b8160600181815250508060076000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050806011600060015481526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050806000015160066000828254611ea4919061268b565b9250508190555050505b565b6000611ec14260035460045461192e565b90508060056000828254611ed5919061268b565b925050819055508215611f00578160056000828254611ef4919061268b565b92505081905550611f42565b600554611f0c3361079c565b1115611f1f576000600581905550611f41565b611f283361079c565b60056000828254611f39919061276c565b925050819055505b5b42600381905550505050565b6000611fb0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166120159092919063ffffffff16565b90506000815111156120105780806020019051810190611fd091906122bb565b61200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690612574565b60405180910390fd5b5b505050565b6060612024848460008561202d565b90509392505050565b606082471015612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990612534565b60405180910390fd5b61207b85612141565b6120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190612554565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516120e39190612465565b60006040518083038185875af1925050503d8060008114612120576040519150601f19603f3d011682016040523d82523d6000602084013e612125565b606091505b5091509150612135828286612164565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612174578290506121c4565b6000835111156121875782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb9190612512565b60405180910390fd5b9392505050565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b600081359050612209816129c8565b92915050565b60008151905061221e816129df565b92915050565b600081359050612233816129f6565b92915050565b600081519050612248816129f6565b92915050565b600060208284031215612264576122636128c2565b5b6000612272848285016121fa565b91505092915050565b60008060408385031215612292576122916128c2565b5b60006122a0858286016121fa565b92505060206122b185828601612224565b9150509250929050565b6000602082840312156122d1576122d06128c2565b5b60006122df8482850161220f565b91505092915050565b6000602082840312156122fe576122fd6128c2565b5b600061230c84828501612224565b91505092915050565b60006020828403121561232b5761232a6128c2565b5b600061233984828501612239565b91505092915050565b61234b816127a0565b82525050565b61235a816127b2565b82525050565b600061236b82612659565b612375818561266f565b93506123858185602086016127e8565b80840191505092915050565b600061239c82612664565b6123a6818561267a565b93506123b68185602086016127e8565b6123bf816128c7565b840191505092915050565b60006123d760268361267a565b91506123e2826128d8565b604082019050919050565b60006123fa601d8361267a565b915061240582612927565b602082019050919050565b600061241d602a8361267a565b915061242882612950565b604082019050919050565b6000612440601f8361267a565b915061244b8261299f565b602082019050919050565b61245f816127de565b82525050565b60006124718284612360565b915081905092915050565b60006020820190506124916000830184612342565b92915050565b60006060820190506124ac6000830186612342565b6124b96020830185612342565b6124c66040830184612456565b949350505050565b60006040820190506124e36000830185612342565b6124f06020830184612456565b9392505050565b600060208201905061250c6000830184612351565b92915050565b6000602082019050818103600083015261252c8184612391565b905092915050565b6000602082019050818103600083015261254d816123ca565b9050919050565b6000602082019050818103600083015261256d816123ed565b9050919050565b6000602082019050818103600083015261258d81612410565b9050919050565b600060208201905081810360008301526125ad81612433565b9050919050565b60006020820190506125c96000830184612456565b92915050565b60006060820190506125e46000830186612456565b6125f16020830185612456565b6125fe6040830184612456565b949350505050565b600060a08201905061261b6000830188612456565b6126286020830187612456565b6126356040830186612456565b6126426060830185612456565b61264f6080830184612456565b9695505050505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612696826127de565b91506126a1836127de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126d6576126d5612864565b5b828201905092915050565b60006126ec826127de565b91506126f7836127de565b92508261270757612706612893565b5b828204905092915050565b600061271d826127de565b9150612728836127de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276157612760612864565b5b828202905092915050565b6000612777826127de565b9150612782836127de565b92508282101561279557612794612864565b5b828203905092915050565b60006127ab826127be565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156128065780820151818401526020810190506127eb565b83811115612815576000848401525b50505050565b6000612826826127de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561285957612858612864565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6129d1816127a0565b81146129dc57600080fd5b50565b6129e8816127b2565b81146129f357600080fd5b50565b6129ff816127de565b8114612a0a57600080fd5b5056fea2646970667358221220e0a35e4d890b0346ea502f28c344cf24f92044b7ef195474721f208b57ceb95164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000ed4e00000000000000000000000000000000000000000000000000000000000076a700000000000000000000000000000000000000000000000000000000000076a700000000000000000000000000375abb85c329753b1ba849a601438ae77eec9893000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf000000000000000000000000994d91215ec7e6543a770d0278d11b1a61fb52f4

-----Decoded View---------------
Arg [0] : _timeToDouble (uint256): 15552000
Arg [1] : _epochLength (uint256): 7776000
Arg [2] : _firstEpochStartIn (uint256): 7776000
Arg [3] : _pdt (address): 0x375aBB85C329753b1Ba849a601438AE77eEc9893
Arg [4] : _prime (address): 0xb23d80f5FefcDDaa212212F028021B41DEd428CF
Arg [5] : _owner (address): 0x994D91215EC7e6543A770D0278D11B1A61fb52f4

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000ed4e00
Arg [1] : 000000000000000000000000000000000000000000000000000000000076a700
Arg [2] : 000000000000000000000000000000000000000000000000000000000076a700
Arg [3] : 000000000000000000000000375abb85c329753b1ba849a601438ae77eec9893
Arg [4] : 000000000000000000000000b23d80f5fefcddaa212212f028021b41ded428cf
Arg [5] : 000000000000000000000000994d91215ec7e6543a770d0278d11b1a61fb52f4


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.