ETH Price: $3,157.23 (+2.80%)
Gas: 1 Gwei

Contract

0x457FE44E832181e1D3eCee0fc5be72cd9b36859f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Stake Rewards119509242021-03-01 7:13:481230 days ago1614582828IN
0x457FE44E...d9b36859f
0 ETH0.004485564
Stake Rewards118086302021-02-07 10:06:141252 days ago1612692374IN
0x457FE44E...d9b36859f
0 ETH0.00788227108
Stake Rewards117715052021-02-01 16:52:551257 days ago1612198375IN
0x457FE44E...d9b36859f
0 ETH0.00465367133
Stake Rewards117679212021-02-01 3:22:351258 days ago1612149755IN
0x457FE44E...d9b36859f
0 ETH0.0064225988
Claim Rewards117648832021-01-31 16:32:221258 days ago1612110742IN
0x457FE44E...d9b36859f
0 ETH0.0068476200
Stake Rewards117637052021-01-31 12:06:411258 days ago1612094801IN
0x457FE44E...d9b36859f
0 ETH0.0032573293
Stake Rewards117636202021-01-31 11:49:071258 days ago1612093747IN
0x457FE44E...d9b36859f
0 ETH0.002942184
Stake Rewards117623442021-01-31 7:13:331259 days ago1612077213IN
0x457FE44E...d9b36859f
0 ETH0.0030833488
Stake Rewards117623332021-01-31 7:11:471259 days ago1612077107IN
0x457FE44E...d9b36859f
0 ETH0.002312566.00000145
Claim Rewards117622512021-01-31 6:56:231259 days ago1612076183IN
0x457FE44E...d9b36859f
0 ETH0.0053457277
Stake Rewards117614032021-01-31 3:49:491259 days ago1612064989IN
0x457FE44E...d9b36859f
0 ETH0.00451371129.00000156
Stake Rewards117613982021-01-31 3:48:381259 days ago1612064918IN
0x457FE44E...d9b36859f
0 ETH0.00451371129.00000156
Stake Rewards117613982021-01-31 3:48:381259 days ago1612064918IN
0x457FE44E...d9b36859f
0 ETH0.00451371129.00000156
Stake Rewards117602132021-01-30 23:38:301259 days ago1612049910IN
0x457FE44E...d9b36859f
0 ETH0.00890092127
Stake Rewards117597452021-01-30 21:44:301259 days ago1612043070IN
0x457FE44E...d9b36859f
0 ETH0.00409383117
Stake Rewards117597372021-01-30 21:42:011259 days ago1612042921IN
0x457FE44E...d9b36859f
0 ETH0.00440874126
Stake Rewards117595772021-01-30 21:08:001259 days ago1612040880IN
0x457FE44E...d9b36859f
0 ETH0.0037841108
Stake Rewards117594752021-01-30 20:42:371259 days ago1612039357IN
0x457FE44E...d9b36859f
0 ETH0.00770946110
Stake Rewards117594642021-01-30 20:40:241259 days ago1612039224IN
0x457FE44E...d9b36859f
0 ETH0.00374114107.00000156
Stake Rewards117594552021-01-30 20:38:251259 days ago1612039105IN
0x457FE44E...d9b36859f
0 ETH0.00377052107.8
Stake Rewards117594082021-01-30 20:27:081259 days ago1612038428IN
0x457FE44E...d9b36859f
0 ETH0.0070086100
Stake Rewards117587682021-01-30 18:03:361259 days ago1612029816IN
0x457FE44E...d9b36859f
0 ETH0.00496858142
Stake Rewards117587522021-01-30 17:59:431259 days ago1612029583IN
0x457FE44E...d9b36859f
0 ETH0.00458997131
Stake Rewards117587412021-01-30 17:56:101259 days ago1612029370IN
0x457FE44E...d9b36859f
0 ETH0.00602653172
Stake Rewards117585762021-01-30 17:20:021259 days ago1612027202IN
0x457FE44E...d9b36859f
0 ETH0.00700499200.2
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:
StakingRewards

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 28 : StakingRewards.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/math/Math.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";

import "@bancor/token-governance/contracts/ITokenGovernance.sol";
import "@bancor/contracts/solidity/contracts/utility/ContractRegistryClient.sol";
import "@bancor/contracts/solidity/contracts/utility/Utils.sol";
import "@bancor/contracts/solidity/contracts/utility/Time.sol";
import "@bancor/contracts/solidity/contracts/utility/interfaces/ICheckpointStore.sol";
import "@bancor/contracts/solidity/contracts/liquidity-protection/interfaces/ILiquidityProtection.sol";
import "@bancor/contracts/solidity/contracts/liquidity-protection/interfaces/ILiquidityProtectionEventsSubscriber.sol";

import "./IStakingRewardsStore.sol";

/**
 * @dev This contract manages the distribution of the staking rewards
 */
contract StakingRewards is ILiquidityProtectionEventsSubscriber, AccessControl, Time, Utils, ContractRegistryClient {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    // the role is used to globally govern the contract and its governing roles.
    bytes32 public constant ROLE_SUPERVISOR = keccak256("ROLE_SUPERVISOR");

    // the roles is used to restrict who is allowed to publish liquidity protection events.
    bytes32 public constant ROLE_PUBLISHER = keccak256("ROLE_PUBLISHER");

    uint32 private constant PPM_RESOLUTION = 1000000;

    // the weekly 25% increase of the rewards multiplier (in units of PPM).
    uint32 private constant MULTIPLIER_INCREMENT = PPM_RESOLUTION / 4;

    // the maximum weekly 200% rewards multiplier (in units of PPM).
    uint32 private constant MAX_MULTIPLIER = PPM_RESOLUTION + MULTIPLIER_INCREMENT * 4;

    // since we will be dividing by the total amount of protected tokens in units of wei, we can encounter cases
    // where the total amount in the denominator is higher than the product of the rewards rate and staking duration. In
    // order to avoid this imprecision, we will amplify the reward rate by the units amount.
    uint256 private constant REWARD_RATE_FACTOR = 1e18;

    uint256 private constant MAX_UINT256 = uint256(-1);

    // the staking rewards settings.
    IStakingRewardsStore private immutable _store;

    // the permissioned wrapper around the network token which should allow this contract to mint staking rewards.
    ITokenGovernance private immutable _networkTokenGovernance;

    // the address of the network token.
    IERC20 private immutable _networkToken;

    // the checkpoint store recording last protected position removal times.
    ICheckpointStore private immutable _lastRemoveTimes;

    /**
     * @dev triggered when pending rewards are being claimed
     *
     * @param provider the owner of the liquidity
     * @param amount the total rewards amount
     */
    event RewardsClaimed(address indexed provider, uint256 amount);

    /**
     * @dev triggered when pending rewards are being staked in a pool
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool token representing the rewards pool
     * @param amount the reward amount
     * @param newId the ID of the new position
     */
    event RewardsStaked(address indexed provider, IDSToken indexed poolToken, uint256 amount, uint256 indexed newId);

    /**
     * @dev initializes a new StakingRewards contract
     *
     * @param store the staking rewards store
     * @param networkTokenGovernance the permissioned wrapper around the network token
     * @param lastRemoveTimes the checkpoint store recording last protected position removal times
     * @param registry address of a contract registry contract
     */
    constructor(
        IStakingRewardsStore store,
        ITokenGovernance networkTokenGovernance,
        ICheckpointStore lastRemoveTimes,
        IContractRegistry registry
    )
        public
        validAddress(address(store))
        validAddress(address(networkTokenGovernance))
        validAddress(address(lastRemoveTimes))
        ContractRegistryClient(registry)
    {
        _store = store;
        _networkTokenGovernance = networkTokenGovernance;
        _networkToken = networkTokenGovernance.token();
        _lastRemoveTimes = lastRemoveTimes;

        // set up administrative roles.
        _setRoleAdmin(ROLE_SUPERVISOR, ROLE_SUPERVISOR);
        _setRoleAdmin(ROLE_PUBLISHER, ROLE_SUPERVISOR);

        // allow the deployer to initially govern the contract.
        _setupRole(ROLE_SUPERVISOR, _msgSender());
    }

    modifier onlyPublisher() {
        _onlyPublisher();
        _;
    }

    function _onlyPublisher() internal view {
        require(hasRole(ROLE_PUBLISHER, msg.sender), "ERR_ACCESS_DENIED");
    }

    /**
     * @dev liquidity provision notification callback. The callback should be called *after* the liquidity is added in
     * the LP contract.
     *
     * @param provider the owner of the liquidity
     * @param poolAnchor the pool token representing the rewards pool
     * @param reserveToken the reserve token of the added liquidity
     */
    function onAddingLiquidity(
        address provider,
        IConverterAnchor poolAnchor,
        IERC20Token reserveToken,
        uint256, /* poolAmount */
        uint256 /* reserveAmount */
    ) external override onlyPublisher validExternalAddress(provider) {
        if (!_store.isReserveParticipating(IDSToken(address(poolAnchor)), reserveToken)) {
            return;
        }

        updateRewards(provider, IDSToken(address(poolAnchor)), reserveToken, liquidityProtectionStats());
    }

    /**
     * @dev liquidity removal callback. The callback must be called *before* the liquidity is removed in the LP
     * contract
     *
     * @param provider the owner of the liquidity
     * @param poolAnchor the pool token representing the rewards pool
     * @param reserveToken the reserve token of the removed liquidity
     */
    function onRemovingLiquidity(
        uint256, /* id */
        address provider,
        IConverterAnchor poolAnchor,
        IERC20Token reserveToken,
        uint256, /* poolAmount */
        uint256 /* reserveAmount */
    ) external override onlyPublisher validExternalAddress(provider) {
        if (!_store.isReserveParticipating(IDSToken(address(poolAnchor)), reserveToken)) {
            return;
        }

        ILiquidityProtectionStats lpStats = liquidityProtectionStats();

        // make sure that all pending rewards are properly stored for future claims, with retroactive rewards
        // multipliers.
        storeRewards(provider, lpStats.providerPools(provider), lpStats);
    }

    /**
     * @dev returns the staking rewards store
     *
     * @return the staking rewards store
     */
    function store() external view returns (IStakingRewardsStore) {
        return _store;
    }

    /**
     * @dev returns the network token governance
     *
     * @return the network token governance
     */
    function networkTokenGovernance() external view returns (ITokenGovernance) {
        return _networkTokenGovernance;
    }

    /**
     * @dev returns the last remove times
     *
     * @return the last remove times
     */
    function lastRemoveTimes() external view returns (ICheckpointStore) {
        return _lastRemoveTimes;
    }

    /**
     * @dev returns specific provider's pending rewards for all participating pools
     *
     * @param provider the owner of the liquidity
     *
     * @return all pending rewards
     */
    function pendingRewards(address provider) external view returns (uint256) {
        return pendingRewards(provider, liquidityProtectionStats());
    }

    /**
     * @dev returns specific provider's pending rewards for a specific participating pool/reserve
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool token representing the new rewards pool
     * @param reserveToken the reserve token representing the liquidity in the pool
     *
     * @return all pending rewards
     */
    function pendingReserveRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken
    ) external view returns (uint256) {
        PoolProgram memory program = poolProgram(poolToken);

        return
            pendingRewards(provider, poolToken, reserveToken, program, liquidityProtectionStats());
    }

    /**
     * @dev returns specific provider's pending rewards for all participating pools
     *
     * @param provider the owner of the liquidity
     * @param lpStats liquidity protection statistics store
     *
     * @return all pending rewards
     */
    function pendingRewards(
        address provider,
        ILiquidityProtectionStats lpStats
    ) private view returns (uint256) {
        return pendingRewards(provider, lpStats.providerPools(provider), lpStats);
    }

    /**
     * @dev returns specific provider's pending rewards for a specific list of participating pools
     *
     * @param provider the owner of the liquidity
     * @param poolTokens the list of participating pools to query
     * @param lpStats liquidity protection statistics store
     *
     * @return all pending rewards
     */
    function pendingRewards(
        address provider,
        IDSToken[] memory poolTokens,
        ILiquidityProtectionStats lpStats
    ) private view returns (uint256) {
        uint256 reward = 0;

        uint256 length = poolTokens.length;
        for (uint256 i = 0; i < length; ++i) {
            uint256 poolReward = pendingRewards(provider, poolTokens[i], lpStats);
            reward = reward.add(poolReward);
        }

        return reward;
    }

    /**
     * @dev returns specific provider's pending rewards for a specific pool
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool to query
     * @param lpStats liquidity protection statistics store
     *
     * @return reward all pending rewards
     */
    function pendingRewards(
        address provider,
        IDSToken poolToken,
        ILiquidityProtectionStats lpStats
    ) private view returns (uint256) {
        uint256 reward = 0;
        PoolProgram memory program = poolProgram(poolToken);

        for (uint256 i = 0; i < program.reserveTokens.length; ++i) {
            uint256 reserveReward =
                pendingRewards(provider, poolToken, program.reserveTokens[i], program, lpStats);
            reward = reward.add(reserveReward);
        }

        return reward;
    }

    /**
     * @dev returns specific provider's pending rewards for a specific pool/reserve
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool to query
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param program the pool program info
     * @param lpStats liquidity protection statistics store
     *
     * @return reward all pending rewards
     */

    function pendingRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        PoolProgram memory program,
        ILiquidityProtectionStats lpStats
    ) private view returns (uint256) {
        // calculate the new reward rate per-token
        PoolRewards memory poolRewardsData = poolRewards(poolToken, reserveToken);

        // rewardPerToken must be calculated with the previous value of lastUpdateTime.
        poolRewardsData.rewardPerToken = rewardPerToken(poolToken, reserveToken, poolRewardsData, program, lpStats);
        poolRewardsData.lastUpdateTime = Math.min(time(), program.endTime);

        // update provider's rewards with the newly claimable base rewards and the new reward rate per-token.
        ProviderRewards memory providerRewards = providerRewards(provider, poolToken, reserveToken);

        // if this is the first liquidity provision - set the effective staking time to the current time.
        if (
            providerRewards.effectiveStakingTime == 0 &&
            lpStats.totalProviderAmount(provider, poolToken, reserveToken) == 0
        ) {
            providerRewards.effectiveStakingTime = time();
        }

        // pendingBaseRewards must be calculated with the previous value of providerRewards.rewardPerToken.
        providerRewards.pendingBaseRewards = providerRewards.pendingBaseRewards.add(
            baseRewards(provider, poolToken, reserveToken, poolRewardsData, providerRewards, program, lpStats)
        );
        providerRewards.rewardPerToken = poolRewardsData.rewardPerToken;

        // get full rewards and the respective rewards multiplier.
        (uint256 fullReward,) =
            fullRewards(provider, poolToken, reserveToken, poolRewardsData, providerRewards, program, lpStats);

        return fullReward;
    }

    /**
     * @dev claims specific provider's pending rewards for all participating pools
     *
     * @param provider the owner of the liquidity
     * @param maxAmount an optional bound on the rewards to claim (when partial claiming is required)
     * @param lpStats liquidity protection statistics store
     *
     * @return all pending rewards
     */
    function claimPendingRewards(
        address provider,
        uint256 maxAmount,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256) {
        return claimPendingRewards(provider, lpStats.providerPools(provider), maxAmount, lpStats);
    }

    /**
     * @dev claims specific provider's pending rewards for a specific list of participating pools
     *
     * @param provider the owner of the liquidity
     * @param poolTokens the list of participating pools to query
     * @param maxAmount an optional bound on the rewards to claim (when partial claiming is required)
     * @param lpStats liquidity protection statistics store
     *
     * @return all pending rewards
     */
    function claimPendingRewards(
        address provider,
        IDSToken[] memory poolTokens,
        uint256 maxAmount,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256) {
        uint256 reward = 0;

        uint256 length = poolTokens.length;
        for (uint256 i = 0; i < length && maxAmount > 0; ++i) {
            uint256 poolReward = claimPendingRewards(provider, poolTokens[i], maxAmount, lpStats);
            reward = reward.add(poolReward);

            if (maxAmount != MAX_UINT256) {
                maxAmount = maxAmount.sub(poolReward);
            }
        }

        return reward;
    }

    /**
     * @dev claims specific provider's pending rewards for a specific pool
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool to query
     * @param maxAmount an optional bound on the rewards to claim (when partial claiming is required)
     * @param lpStats liquidity protection statistics store
     *
     * @return reward all pending rewards
     */
    function claimPendingRewards(
        address provider,
        IDSToken poolToken,
        uint256 maxAmount,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256) {
        uint256 reward = 0;
        PoolProgram memory program = poolProgram(poolToken);

        for (uint256 i = 0; i < program.reserveTokens.length && maxAmount > 0; ++i) {
            uint256 reserveReward =
                claimPendingRewards(provider, poolToken, program.reserveTokens[i], program, maxAmount, lpStats);
            reward = reward.add(reserveReward);

            if (maxAmount != MAX_UINT256) {
                maxAmount = maxAmount.sub(reserveReward);
            }
        }

        return reward;
    }

    /**
     * @dev claims specific provider's pending rewards for a specific pool/reserve
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool to query
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param program the pool program info
     * @param maxAmount an optional bound on the rewards to claim (when partial claiming is required)
     * @param lpStats liquidity protection statistics store
     *
     * @return reward all pending rewards
     */

    function claimPendingRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        PoolProgram memory program,
        uint256 maxAmount,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256) {
        // update all provider's pending rewards, in order to apply retroactive reward multipliers.
        (PoolRewards memory poolRewardsData, ProviderRewards memory providerRewards) =
            updateRewards(provider, poolToken, reserveToken, lpStats);

        // get full rewards and the respective rewards multiplier.
        (uint256 fullReward, uint32 multiplier) =
            fullRewards(provider, poolToken, reserveToken, poolRewardsData, providerRewards, program, lpStats);

        // mark any debt as repaid.
        providerRewards.baseRewardsDebt = 0;
        providerRewards.baseRewardsDebtMultiplier = 0;

        if (maxAmount != MAX_UINT256) {
            if (fullReward > maxAmount) {
                // get the amount of the actual base rewards that were claimed.
                if (multiplier == PPM_RESOLUTION) {
                    providerRewards.baseRewardsDebt = fullReward.sub(maxAmount);
                } else {
                    providerRewards.baseRewardsDebt = fullReward.sub(maxAmount).mul(PPM_RESOLUTION).div(multiplier);
                }

                // store the current multiplier for future retroactive rewards correction.
                providerRewards.baseRewardsDebtMultiplier = multiplier;

                // grant only maxAmount rewards.
                fullReward = maxAmount;

                maxAmount = 0;
            } else {
                maxAmount = maxAmount.sub(fullReward);
            }
        }

        // update pool rewards data total claimed rewards.
        _store.updatePoolRewardsData(
            poolToken,
            reserveToken,
            poolRewardsData.lastUpdateTime,
            poolRewardsData.rewardPerToken,
            poolRewardsData.totalClaimedRewards.add(fullReward)
        );

        // update provider rewards data with the remaining pending rewards and set the effective staking time to the
        // timestamp of the current block.
        _store.updateProviderRewardsData(
            provider,
            poolToken,
            reserveToken,
            providerRewards.rewardPerToken,
            0,
            providerRewards.totalClaimedRewards.add(fullReward),
            time(),
            providerRewards.baseRewardsDebt,
            providerRewards.baseRewardsDebtMultiplier
        );

        return fullReward;
    }

    /**
     * @dev returns the current rewards multiplier for a provider in a given pool
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool to query
     * @param reserveToken the reserve token representing the liquidity in the pool
     *
     * @return rewards multiplier
     */
    function rewardsMultiplier(address provider, IDSToken poolToken, IERC20Token reserveToken) external view returns (uint32) {
        ProviderRewards memory providerRewards = providerRewards(provider, poolToken, reserveToken);
        PoolProgram memory program = poolProgram(poolToken);
        return rewardsMultiplier(provider, providerRewards.effectiveStakingTime, program);
    }

    /**
     * @dev returns specific provider's total claimed rewards from all participating pools
     *
     * @param provider the owner of the liquidity
     *
     * @return total claimed rewards from all participating pools
     */
    function totalClaimedRewards(address provider) external view returns (uint256) {
        uint256 totalRewards = 0;

        ILiquidityProtectionStats lpStats = liquidityProtectionStats();
        IDSToken[] memory poolTokens = lpStats.providerPools(provider);

        for (uint256 i = 0; i < poolTokens.length; ++i) {
            IDSToken poolToken = poolTokens[i];
            PoolProgram memory program = poolProgram(poolToken);

            for (uint256 j = 0; j < program.reserveTokens.length; ++j) {
                IERC20Token reserveToken = program.reserveTokens[j];

                ProviderRewards memory providerRewards = providerRewards(provider, poolToken, reserveToken);

                totalRewards = totalRewards.add(providerRewards.totalClaimedRewards);
            }
        }

        return totalRewards;
    }

    /**
     * @dev claims pending rewards from all participating pools
     *
     * @return all claimed rewards
     */
    function claimRewards() external returns (uint256) {
        return claimRewards(msg.sender, liquidityProtectionStats());
    }

    /**
     * @dev claims specific provider's pending rewards from all participating pools
     *
     * @param provider the owner of the liquidity
     * @param lpStats liquidity protection statistics store
     *
     * @return all claimed rewards
     */
    function claimRewards(address provider, ILiquidityProtectionStats lpStats) private returns (uint256) {
        return claimRewards(provider, lpStats.providerPools(provider), MAX_UINT256, lpStats);
    }

    /**
     * @dev claims specific provider's pending rewards for a specific list of participating pools
     *
     * @param provider the owner of the liquidity
     * @param poolTokens the list of participating pools to query
     * @param maxAmount an optional cap on the rewards to claim
     * @param lpStats liquidity protection statistics store
     *
     * @return all pending rewards
     */
    function claimRewards(
        address provider,
        IDSToken[] memory poolTokens,
        uint256 maxAmount,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256) {
        uint256 amount = claimPendingRewards(provider, poolTokens, maxAmount, lpStats);
        if (amount == 0) {
            return amount;
        }

        // make sure to update the last claim time so that it'll be taken into effect when calculating the next rewards
        // multiplier.
        _store.updateProviderLastClaimTime(provider);

        // mint the reward tokens directly to the provider.
        _networkTokenGovernance.mint(provider, amount);

        emit RewardsClaimed(provider, amount);

        return amount;
    }

    /**
     * @dev stakes specific pending rewards from all participating pools
     *
     * @param maxAmount an optional cap on the rewards to stake
     * @param poolToken the pool token representing the new rewards pool

     * @return all staked rewards and the ID of the new position
     */
    function stakeRewards(uint256 maxAmount, IDSToken poolToken) external returns (uint256, uint256) {
        return stakeRewards(msg.sender, maxAmount, poolToken, liquidityProtectionStats());
    }

    /**
     * @dev stakes specific provider's pending rewards from all participating pools
     *
     * @param provider the owner of the liquidity
     * @param maxAmount an optional cap on the rewards to stake
     * @param poolToken the pool token representing the new rewards pool
     * @param lpStats liquidity protection statistics store
     *
     * @return all staked rewards and the ID of the new position
     */
    function stakeRewards(
        address provider,
        uint256 maxAmount,
        IDSToken poolToken,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256, uint256) {
        return stakeRewards(provider, lpStats.providerPools(provider), maxAmount, poolToken, lpStats);
    }

    /**
     * @dev claims and stakes specific provider's pending rewards for a specific list of participating pools
     *
     * @param provider the owner of the liquidity
     * @param poolTokens the list of participating pools to query
     * @param newPoolToken the pool token representing the new rewards pool
     * @param maxAmount an optional cap on the rewards to stake
     * @param lpStats liquidity protection statistics store
     *
     * @return all staked rewards and the ID of the new position
     */
    function stakeRewards(
        address provider,
        IDSToken[] memory poolTokens,
        uint256 maxAmount,
        IDSToken newPoolToken,
        ILiquidityProtectionStats lpStats
    ) private returns (uint256, uint256) {
        uint256 amount = claimPendingRewards(provider, poolTokens, maxAmount, lpStats);
        if (amount == 0) {
            return (amount, 0);
        }

        // approve the LiquidityProtection contract to pull the rewards.
        ILiquidityProtection liquidityProtection = liquidityProtection();
        _networkToken.safeApprove(address(liquidityProtection), amount);

        // mint the reward tokens directly to the staking contract, so that the LiquidityProtection could pull the
        // rewards and attribute them to the provider.
        _networkTokenGovernance.mint(address(this), amount);

        uint256 newId =
            liquidityProtection.addLiquidityFor(provider, newPoolToken, IERC20Token(address(_networkToken)), amount);

        // please note, that in order to incentivize staking, we won't be updating the time of the last claim, thus
        // preserving the rewards bonus multiplier.

        emit RewardsStaked(provider, newPoolToken, amount, newId);

        return (amount, newId);
    }

    /**
     * @dev store specific provider's pending rewards for future claims
     *
     * @param provider the owner of the liquidity
     * @param poolTokens the list of participating pools to query
     * @param lpStats liquidity protection statistics store
     *
     */
    function storeRewards(
        address provider,
        IDSToken[] memory poolTokens,
        ILiquidityProtectionStats lpStats
    ) private {
        uint256 length = poolTokens.length;
        for (uint256 i = 0; i < length; ++i) {
            storeRewards(provider, poolTokens[i], lpStats);
        }
    }

    /**
     * @dev store specific provider's pending rewards for future claims
     *
     * @param provider the owner of the liquidity
     * @param poolToken the list of participating pools to query
     * @param lpStats liquidity protection statistics store
     *
     */
    function storeRewards(
        address provider,
        IDSToken poolToken,
        ILiquidityProtectionStats lpStats
    ) private {
        PoolProgram memory program = poolProgram(poolToken);

        for (uint256 i = 0; i < program.reserveTokens.length; ++i) {
            IERC20Token reserveToken = program.reserveTokens[i];

            // update all provider's pending rewards, in order to apply retroactive reward multipliers.
            (PoolRewards memory poolRewardsData, ProviderRewards memory providerRewards) =
                updateRewards(provider, poolToken, reserveToken, lpStats);

            // get full rewards and the respective rewards multiplier.
            (uint256 fullReward, uint32 multiplier) =
                fullRewards(provider, poolToken, reserveToken, poolRewardsData, providerRewards, program, lpStats);

            // get the amount of the actual base rewards that were claimed.
            if (multiplier == PPM_RESOLUTION) {
                providerRewards.baseRewardsDebt = fullReward;
            } else {
                providerRewards.baseRewardsDebt = fullReward.mul(PPM_RESOLUTION).div(multiplier);
            }

            // update store data with the store pending rewards and set the last update time to the timestamp of the
            // current block.
            _store.updateProviderRewardsData(
                provider,
                poolToken,
                reserveToken,
                providerRewards.rewardPerToken,
                0,
                providerRewards.totalClaimedRewards,
                time(),
                providerRewards.baseRewardsDebt,
                multiplier
            );
        }
    }

    /**
     * @dev updates pending rewards for a list of providers
     *
     * @param providers owners of the liquidity
     */
    function updateRewards(address[] calldata providers) external {
        ILiquidityProtectionStats lpStats = liquidityProtectionStats();

        uint256 length = providers.length;
        for (uint256 i = 0; i < length; ++i) {
            updateRewards(providers[i], lpStats);
        }
    }

    /**
     * @dev updates pending rewards for a specific of provider
     *
     * @param provider the owner of the liquidity
     * @param lpStats liquidity protection statistics store
     */
    function updateRewards(address provider, ILiquidityProtectionStats lpStats) private {
        IDSToken[] memory poolTokens = lpStats.providerPools(provider);

        for (uint256 i = 0; i < poolTokens.length; ++i) {
            IDSToken poolToken = poolTokens[i];
            PoolProgram memory program = poolProgram(poolToken);

            for (uint256 j = 0; j < program.reserveTokens.length; ++j) {
                IERC20Token reserveToken = program.reserveTokens[j];
                updateRewards(provider, poolToken, reserveToken, lpStats);
            }
        }
    }

    /**
     * @dev returns the aggregated reward rate per-token
     *
     * @param poolToken the list of participating pools to query
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param poolRewardsData the rewards data of the pool
     * @param program the pool program info
     * @param lpStats liquidity protection statistics store
     *
     * @return the aggregated reward rate per-token
     */
    function rewardPerToken(
        IDSToken poolToken,
        IERC20Token reserveToken,
        PoolRewards memory poolRewardsData,
        PoolProgram memory program,
        ILiquidityProtectionStats lpStats
    ) internal view returns (uint256) {
        // if there is no longer any liquidity in this reserve, return the historic rate (i.e., rewards won't accrue).
        uint256 totalReserveAmount = lpStats.totalReserveAmount(poolToken, reserveToken);
        if (totalReserveAmount == 0) {
            return poolRewardsData.rewardPerToken;
        }

        // don't grant any rewards before the starting time of the program.
        uint256 currentTime = time();
        if (currentTime < program.startTime) {
            return 0;
        }

        uint256 stakingEndTime = Math.min(currentTime, program.endTime);
        uint256 stakingStartTime = Math.max(program.startTime, poolRewardsData.lastUpdateTime);

        // since we will be dividing by the total amount of protected tokens in units of wei, we can encounter cases
        // where the total amount in the denominator is higher than the product of the rewards rate and staking duration.
        // in order to avoid this imprecision, we will amplify the reward rate by the units amount.
        return
            poolRewardsData.rewardPerToken.add( // the aggregated reward rate
                stakingEndTime
                    .sub(stakingStartTime) // the duration of the staking
                    .mul(program.rewardRate) // multiplied by the rate
                    .mul(REWARD_RATE_FACTOR) // and factored to increase precision
                    .mul(rewardShare(reserveToken, program)) // and applied the specific token share of the whole reward
                    .div(totalReserveAmount.mul(PPM_RESOLUTION)) // and divided by the total protected tokens amount in the pool
            );
    }

    /**
     * @dev returns the base rewards since the last claim
     *
     * @param provider the owner of the liquidity
     * @param poolToken the list of participating pools to query
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param poolRewardsData the rewards data of the pool
     * @param providerRewards the rewards data of the provider
     * @param program the pool program info
     * @param lpStats liquidity protection statistics store
     *
     * @return the base rewards since the last claim
     */
    function baseRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        PoolRewards memory poolRewardsData,
        ProviderRewards memory providerRewards,
        PoolProgram memory program,
        ILiquidityProtectionStats lpStats
    ) internal view returns (uint256) {
        uint256 totalProviderAmount = lpStats.totalProviderAmount(provider, poolToken, reserveToken);
        uint256 newRewardPerToken = rewardPerToken(poolToken, reserveToken, poolRewardsData, program, lpStats);

        return
            totalProviderAmount // the protected tokens amount held by the provider
                .mul(newRewardPerToken.sub(providerRewards.rewardPerToken)) // multiplied by the difference between the previous and the current rate
                .div(REWARD_RATE_FACTOR); // and factored back
    }

    /**
     * @dev returns the full rewards since the last claim
     *
     * @param provider the owner of the liquidity
     * @param poolToken the list of participating pools to query
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param poolRewardsData the rewards data of the pool
     * @param providerRewards the rewards data of the provider
     * @param program the pool program info
     * @param lpStats liquidity protection statistics store
     *
     * @return full rewards and the respective rewards multiplier
     */
    function fullRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        PoolRewards memory poolRewardsData,
        ProviderRewards memory providerRewards,
        PoolProgram memory program,
        ILiquidityProtectionStats lpStats
    ) internal view returns (uint256, uint32) {
        // calculate the claimable base rewards (since the last claim).
        uint256 newBaseRewards =
            baseRewards(provider, poolToken, reserveToken, poolRewardsData, providerRewards, program, lpStats);

        // make sure that we aren't exceeding the reward rate for any reason.
        verifyBaseReward(newBaseRewards, providerRewards.effectiveStakingTime, reserveToken, program);

        // calculate pending rewards and apply the rewards multiplier.
        uint32 multiplier = rewardsMultiplier(provider, providerRewards.effectiveStakingTime, program);
        uint256 fullReward = providerRewards.pendingBaseRewards.add(newBaseRewards);
        if (multiplier != PPM_RESOLUTION) {
            fullReward = fullReward.mul(multiplier).div(PPM_RESOLUTION);
        }

        // add any debt, while applying the best retractive multiplier.
        fullReward = fullReward.add(
            applyHigherMultiplier(
                providerRewards.baseRewardsDebt,
                multiplier,
                providerRewards.baseRewardsDebtMultiplier
            )
        );

        // make sure that we aren't exceeding the full reward rate for any reason.
        verifyFullReward(fullReward, reserveToken, poolRewardsData, program);

        return (fullReward, multiplier);
    }

    /**
     * @dev updates pool and provider rewards. this function is called during every liquidity changes
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool token representing the rewards pool
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param lpStats liquidity protection statistics store
     */
    function updateRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        ILiquidityProtectionStats lpStats
    ) private returns (PoolRewards memory, ProviderRewards memory) {
        PoolProgram memory program = poolProgram(poolToken);

        // calculate the new reward rate per-token and update it in the store.
        PoolRewards memory poolRewardsData = poolRewards(poolToken, reserveToken);

        // rewardPerToken must be calculated with the previous value of lastUpdateTime.
        poolRewardsData.rewardPerToken = rewardPerToken(poolToken, reserveToken, poolRewardsData, program, lpStats);
        poolRewardsData.lastUpdateTime = Math.min(time(), program.endTime);

        _store.updatePoolRewardsData(
            poolToken,
            reserveToken,
            poolRewardsData.lastUpdateTime,
            poolRewardsData.rewardPerToken,
            poolRewardsData.totalClaimedRewards
        );

        // update provider's rewards with the newly claimable base rewards and the new reward rate per-token.
        ProviderRewards memory providerRewards = providerRewards(provider, poolToken, reserveToken);

        // if this is the first liquidity provision - set the effective staking time to the current time.
        if (
            providerRewards.effectiveStakingTime == 0 &&
            lpStats.totalProviderAmount(provider, poolToken, reserveToken) == 0
        ) {
            providerRewards.effectiveStakingTime = time();
        }

        // pendingBaseRewards must be calculated with the previous value of providerRewards.rewardPerToken.
        providerRewards.pendingBaseRewards = providerRewards.pendingBaseRewards.add(
            baseRewards(provider, poolToken, reserveToken, poolRewardsData, providerRewards, program, lpStats)
        );
        providerRewards.rewardPerToken = poolRewardsData.rewardPerToken;

        _store.updateProviderRewardsData(
            provider,
            poolToken,
            reserveToken,
            providerRewards.rewardPerToken,
            providerRewards.pendingBaseRewards,
            providerRewards.totalClaimedRewards,
            providerRewards.effectiveStakingTime,
            providerRewards.baseRewardsDebt,
            providerRewards.baseRewardsDebtMultiplier
        );

        return (poolRewardsData, providerRewards);
    }

    /**
     * @dev returns the specific reserve token's share of all rewards
     *
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param program the pool program info
     */
    function rewardShare(IERC20Token reserveToken, PoolProgram memory program) private pure returns (uint32) {
        if (reserveToken == program.reserveTokens[0]) {
            return program.rewardShares[0];
        }

        return program.rewardShares[1];
    }

    /**
     * @dev returns the rewards multiplier for the specific provider
     *
     * @param provider the owner of the liquidity
     * @param stakingStartTime the staking time in the pool
     * @param program the pool program info
     *
     * @return the rewards multiplier for the specific provider
     */
    function rewardsMultiplier(
        address provider,
        uint256 stakingStartTime,
        PoolProgram memory program
    ) private view returns (uint32) {
        uint256 effectiveStakingEndTime = Math.min(time(), program.endTime);
        uint256 effectiveStakingStartTime =
            Math.max( // take the latest of actual staking start time and the latest multiplier reset
                Math.max(stakingStartTime, program.startTime), // don't count staking before the start of the program
                Math.max(_lastRemoveTimes.checkpoint(provider), _store.providerLastClaimTime(provider)) // get the latest multiplier reset timestamp
            );

        // check that the staking range is valid. for example, it can be invalid when calculating the multiplier when
        // the staking has started before the start of the program, in which case the effective staking start time will
        // be in the future, compared to the effective staking end time (which will be the time of the current block).
        if (effectiveStakingStartTime >= effectiveStakingEndTime) {
            return PPM_RESOLUTION;
        }

        uint256 effectiveStakingDuration = effectiveStakingEndTime.sub(effectiveStakingStartTime);

        // given x representing the staking duration (in seconds), the resulting multiplier (in PPM) is:
        // * for 0 <= x <= 1 weeks: 100% PPM
        // * for 1 <= x <= 2 weeks: 125% PPM
        // * for 2 <= x <= 3 weeks: 150% PPM
        // * for 3 <= x <= 4 weeks: 175% PPM
        // * for x > 4 weeks: 200% PPM
        return PPM_RESOLUTION + MULTIPLIER_INCREMENT * uint32(Math.min(effectiveStakingDuration.div(1 weeks), 4));
    }

    /**
     * @dev returns the pool program for a specific pool
     *
     * @param poolToken the pool token representing the rewards pool
     *
     * @return the pool program for a specific pool
     */
    function poolProgram(IDSToken poolToken) internal view returns (PoolProgram memory) {
        PoolProgram memory program;
        (program.startTime, program.endTime, program.rewardRate, program.reserveTokens, program.rewardShares) = _store
            .poolProgram(poolToken);

        return program;
    }

    /**
     * @dev returns pool rewards for a specific pool and reserve
     *
     * @param poolToken the pool token representing the rewards pool
     * @param reserveToken the reserve token representing the liquidity in the pool
     *
     * @return pool rewards for a specific pool and reserve
     */
    function poolRewards(IDSToken poolToken, IERC20Token reserveToken) internal view returns (PoolRewards memory) {
        PoolRewards memory data;
        (data.lastUpdateTime, data.rewardPerToken, data.totalClaimedRewards) = _store.poolRewards(
            poolToken,
            reserveToken
        );

        return data;
    }

    /**
     * @dev returns provider rewards for a specific pool and reserve
     *
     * @param provider the owner of the liquidity
     * @param poolToken the pool token representing the rewards pool
     * @param reserveToken the reserve token representing the liquidity in the pool
     *
     * @return provider rewards for a specific pool and reserve
     */
    function providerRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken
    ) internal view returns (ProviderRewards memory) {
        ProviderRewards memory data;
        (
            data.rewardPerToken,
            data.pendingBaseRewards,
            data.totalClaimedRewards,
            data.effectiveStakingTime,
            data.baseRewardsDebt,
            data.baseRewardsDebtMultiplier
        ) = _store.providerRewards(provider, poolToken, reserveToken);

        return data;
    }

    /**
     * @dev applies the best of two rewards multipliers on the provided amount
     *
     * @param amount the amount of the reward
     * @param multiplier1 the first multiplier
     * @param multiplier2 the second multiplier
     *
     * @return new reward amount
     */
    function applyHigherMultiplier(
        uint256 amount,
        uint32 multiplier1,
        uint32 multiplier2
    ) private pure returns (uint256) {
        uint256 bestMultiplier = Math.max(multiplier1, multiplier2);
        if (bestMultiplier == PPM_RESOLUTION) {
            return amount;
        }

        return amount.mul(bestMultiplier).div(PPM_RESOLUTION);
    }

    /**
     * @dev performs a sanity check on the newly claimable base rewards
     *
     * @param baseReward the base reward to check
     * @param stakingStartTime the staking time in the pool
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param program the pool program info
     */
    function verifyBaseReward(
        uint256 baseReward,
        uint256 stakingStartTime,
        IERC20Token reserveToken,
        PoolProgram memory program
    ) private view {
        // don't grant any rewards before the starting time of the program or for stakes after the end of the program.
        uint256 currentTime = time();
        if (currentTime < program.startTime || stakingStartTime >= program.endTime) {
            require(baseReward == 0, "ERR_BASE_REWARD_TOO_HIGH");

            return;
        }

        uint256 effectiveStakingStartTime = Math.max(stakingStartTime, program.startTime);
        uint256 effectiveStakingEndTime = Math.min(currentTime, program.endTime);

        // make sure that we aren't exceeding the base reward rate for any reason.
        require(
            baseReward <=
                program
                    .rewardRate
                    .mul(effectiveStakingEndTime.sub(effectiveStakingStartTime))
                    .mul(rewardShare(reserveToken, program))
                    .div(PPM_RESOLUTION),
            "ERR_BASE_REWARD_RATE_TOO_HIGH"
        );
    }

    /**
     * @dev performs a sanity check on the newly claimable full rewards
     *
     * @param fullReward the full reward to check
     * @param reserveToken the reserve token representing the liquidity in the pool
     * @param poolRewardsData the rewards data of the pool
     * @param program the pool program info
     */
    function verifyFullReward(
        uint256 fullReward,
        IERC20Token reserveToken,
        PoolRewards memory poolRewardsData,
        PoolProgram memory program
    ) private pure {
        uint256 maxClaimableReward =
            (
                program
                    .rewardRate
                    .mul(program.endTime.sub(program.startTime))
                    .mul(rewardShare(reserveToken, program))
                    .mul(MAX_MULTIPLIER)
                    .div(PPM_RESOLUTION)
                    .div(PPM_RESOLUTION)
            )
                .sub(poolRewardsData.totalClaimedRewards);

        // make sure that we aren't exceeding the full reward rate for any reason.
        require(fullReward <= maxClaimableReward, "ERR_REWARD_RATE_TOO_HIGH");
    }

    /**
     * @dev returns the liquidity protection stats data contract
     *
     * @return the liquidity protection store data contract
     */
    function liquidityProtectionStats() internal view returns (ILiquidityProtectionStats) {
        return liquidityProtection().stats();
    }

    /**
     * @dev returns the liquidity protection contract
     *
     * @return the liquidity protection contract
     */
    function liquidityProtection() internal view returns (ILiquidityProtection) {
        return ILiquidityProtection(addressOf(LIQUIDITY_PROTECTION));
    }
}

File 2 of 28 : IStakingRewardsStore.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

import "@bancor/contracts/solidity/contracts/token/interfaces/IDSToken.sol";
import "@bancor/contracts/solidity/contracts/token/interfaces/IERC20Token.sol";

struct PoolProgram {
    uint256 startTime;
    uint256 endTime;
    uint256 rewardRate;
    IERC20Token[2] reserveTokens;
    uint32[2] rewardShares;
}

struct PoolRewards {
    uint256 lastUpdateTime;
    uint256 rewardPerToken;
    uint256 totalClaimedRewards;
}

struct ProviderRewards {
    uint256 rewardPerToken;
    uint256 pendingBaseRewards;
    uint256 totalClaimedRewards;
    uint256 effectiveStakingTime;
    uint256 baseRewardsDebt;
    uint32 baseRewardsDebtMultiplier;
}

interface IStakingRewardsStore {
    function isPoolParticipating(IDSToken poolToken) external view returns (bool);

    function isReserveParticipating(IDSToken poolToken, IERC20Token reserveToken) external view returns (bool);

    function addPoolProgram(
        IDSToken poolToken,
        IERC20Token[2] calldata reserveTokens,
        uint32[2] calldata rewardShares,
        uint256 endTime,
        uint256 rewardRate
    ) external;

    function removePoolProgram(IDSToken poolToken) external;

    function setPoolProgramEndTime(IDSToken poolToken, uint256 newEndTime) external;

    function poolProgram(IDSToken poolToken)
        external
        view
        returns (
            uint256,
            uint256,
            uint256,
            IERC20Token[2] memory,
            uint32[2] memory
        );

    function poolPrograms()
        external
        view
        returns (
            IDSToken[] memory,
            uint256[] memory,
            uint256[] memory,
            uint256[] memory,
            IERC20Token[2][] memory,
            uint32[2][] memory
        );

    function poolRewards(IDSToken poolToken, IERC20Token reserveToken)
        external
        view
        returns (
            uint256,
            uint256,
            uint256
        );

    function updatePoolRewardsData(
        IDSToken poolToken,
        IERC20Token reserveToken,
        uint256 lastUpdateTime,
        uint256 rewardPerToken,
        uint256 totalClaimedRewards
    ) external;

    function providerRewards(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken
    )
        external
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint32
        );

    function updateProviderRewardsData(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        uint256 rewardPerToken,
        uint256 pendingBaseRewards,
        uint256 totalClaimedRewards,
        uint256 effectiveStakingTime,
        uint256 baseRewardsDebt,
        uint32 baseRewardsDebtMultiplier
    ) external;

    function updateProviderLastClaimTime(address provider) external;

    function providerLastClaimTime(address provider) external view returns (uint256);
}

File 3 of 28 : IConverterAnchor.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "../../utility/interfaces/IOwned.sol";

/*
    Converter Anchor interface
*/
interface IConverterAnchor is IOwned {

}

File 4 of 28 : ILiquidityProtection.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "./ILiquidityProtectionStore.sol";
import "./ILiquidityProtectionStats.sol";
import "./ILiquidityProtectionSettings.sol";
import "../../token/interfaces/IERC20Token.sol";
import "../../converter/interfaces/IConverterAnchor.sol";

/*
    Liquidity Protection interface
*/
interface ILiquidityProtection {
    function store() external view returns (ILiquidityProtectionStore);

    function stats() external view returns (ILiquidityProtectionStats);

    function settings() external view returns (ILiquidityProtectionSettings);

    function addLiquidityFor(
        address owner,
        IConverterAnchor poolAnchor,
        IERC20Token reserveToken,
        uint256 amount
    ) external payable returns (uint256);

    function addLiquidity(
        IConverterAnchor poolAnchor,
        IERC20Token reserveToken,
        uint256 amount
    ) external payable returns (uint256);

    function removeLiquidity(uint256 id, uint32 portion) external;
}

File 5 of 28 : ILiquidityProtectionEventsSubscriber.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

import "../../converter/interfaces/IConverterAnchor.sol";
import "../../token/interfaces/IERC20Token.sol";

/**
 * @dev Liquidity protection events subscriber interface
 */
interface ILiquidityProtectionEventsSubscriber {
    function onAddingLiquidity(
        address provider,
        IConverterAnchor poolAnchor,
        IERC20Token reserveToken,
        uint256 poolAmount,
        uint256 reserveAmount
    ) external;

    function onRemovingLiquidity(
        uint256 id,
        address provider,
        IConverterAnchor poolAnchor,
        IERC20Token reserveToken,
        uint256 poolAmount,
        uint256 reserveAmount
    ) external;
}

File 6 of 28 : ILiquidityProtectionSettings.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

import "../../converter/interfaces/IConverterAnchor.sol";

/*
    Liquidity Protection Store Settings interface
*/
interface ILiquidityProtectionSettings {
    function addPoolToWhitelist(IConverterAnchor _poolAnchor) external;

    function removePoolFromWhitelist(IConverterAnchor _poolAnchor) external;

    function isPoolWhitelisted(IConverterAnchor _poolAnchor) external view returns (bool);

    function isPoolSupported(IConverterAnchor _poolAnchor) external view returns (bool);

    function minNetworkTokenLiquidityForMinting() external view returns (uint256);

    function defaultNetworkTokenMintingLimit() external view returns (uint256);

    function networkTokenMintingLimits(IConverterAnchor _poolAnchor) external view returns (uint256);

    function networkTokensMinted(IConverterAnchor _poolAnchor) external view returns (uint256);

    function incNetworkTokensMinted(IConverterAnchor _poolAnchor, uint256 _amount) external;

    function decNetworkTokensMinted(IConverterAnchor _poolAnchor, uint256 _amount) external;

    function minProtectionDelay() external view returns (uint256);

    function maxProtectionDelay() external view returns (uint256);

    function setProtectionDelays(uint256 _minProtectionDelay, uint256 _maxProtectionDelay) external;

    function minNetworkCompensation() external view returns (uint256);

    function setMinNetworkCompensation(uint256 _minCompensation) external;

    function lockDuration() external view returns (uint256);

    function setLockDuration(uint256 _lockDuration) external;

    function averageRateMaxDeviation() external view returns (uint32);

    function setAverageRateMaxDeviation(uint32 _averageRateMaxDeviation) external;
}

File 7 of 28 : ILiquidityProtectionStats.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "../../converter/interfaces/IConverterAnchor.sol";
import "../../token/interfaces/IDSToken.sol";
import "../../token/interfaces/IERC20Token.sol";

/*
    Liquidity Protection Stats interface
*/
interface ILiquidityProtectionStats {
    function increaseTotalAmounts(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        uint256 poolAmount,
        uint256 reserveAmount
    ) external;

    function decreaseTotalAmounts(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken,
        uint256 poolAmount,
        uint256 reserveAmount
    ) external;

    function addProviderPool(address provider, IDSToken poolToken) external returns (bool);

    function removeProviderPool(address provider, IDSToken poolToken) external returns (bool);

    function totalPoolAmount(IDSToken poolToken) external view returns (uint256);

    function totalReserveAmount(IDSToken poolToken, IERC20Token reserveToken) external view returns (uint256);

    function totalProviderAmount(
        address provider,
        IDSToken poolToken,
        IERC20Token reserveToken
    ) external view returns (uint256);

    function providerPools(address provider) external view returns (IDSToken[] memory);
}

File 8 of 28 : ILiquidityProtectionStore.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "../../converter/interfaces/IConverterAnchor.sol";
import "../../token/interfaces/IDSToken.sol";
import "../../token/interfaces/IERC20Token.sol";
import "../../utility/interfaces/IOwned.sol";

/*
    Liquidity Protection Store interface
*/
interface ILiquidityProtectionStore is IOwned {
    function withdrawTokens(
        IERC20Token _token,
        address _to,
        uint256 _amount
    ) external;

    function protectedLiquidity(uint256 _id)
        external
        view
        returns (
            address,
            IDSToken,
            IERC20Token,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        );

    function addProtectedLiquidity(
        address _provider,
        IDSToken _poolToken,
        IERC20Token _reserveToken,
        uint256 _poolAmount,
        uint256 _reserveAmount,
        uint256 _reserveRateN,
        uint256 _reserveRateD,
        uint256 _timestamp
    ) external returns (uint256);

    function updateProtectedLiquidityAmounts(
        uint256 _id,
        uint256 _poolNewAmount,
        uint256 _reserveNewAmount
    ) external;

    function removeProtectedLiquidity(uint256 _id) external;

    function lockedBalance(address _provider, uint256 _index) external view returns (uint256, uint256);

    function lockedBalanceRange(
        address _provider,
        uint256 _startIndex,
        uint256 _endIndex
    ) external view returns (uint256[] memory, uint256[] memory);

    function addLockedBalance(
        address _provider,
        uint256 _reserveAmount,
        uint256 _expirationTime
    ) external returns (uint256);

    function removeLockedBalance(address _provider, uint256 _index) external;

    function systemBalance(IERC20Token _poolToken) external view returns (uint256);

    function incSystemBalance(IERC20Token _poolToken, uint256 _poolAmount) external;

    function decSystemBalance(IERC20Token _poolToken, uint256 _poolAmount) external;
}

File 9 of 28 : IDSToken.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "./IERC20Token.sol";
import "../../converter/interfaces/IConverterAnchor.sol";
import "../../utility/interfaces/IOwned.sol";

/*
    DSToken interface
*/
interface IDSToken is IConverterAnchor, IERC20Token {
    function issue(address _to, uint256 _amount) external;

    function destroy(address _from, uint256 _amount) external;
}

File 10 of 28 : IERC20Token.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

/*
    ERC20 Standard Token interface
*/
interface IERC20Token {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address _owner) external view returns (uint256);

    function allowance(address _owner, address _spender) external view returns (uint256);

    function transfer(address _to, uint256 _value) external returns (bool);

    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    ) external returns (bool);

    function approve(address _spender, uint256 _value) external returns (bool);
}

File 11 of 28 : ContractRegistryClient.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "./Owned.sol";
import "./Utils.sol";
import "./interfaces/IContractRegistry.sol";

/**
 * @dev This is the base contract for ContractRegistry clients.
 */
contract ContractRegistryClient is Owned, Utils {
    bytes32 internal constant CONTRACT_REGISTRY = "ContractRegistry";
    bytes32 internal constant BANCOR_NETWORK = "BancorNetwork";
    bytes32 internal constant BANCOR_FORMULA = "BancorFormula";
    bytes32 internal constant CONVERTER_FACTORY = "ConverterFactory";
    bytes32 internal constant CONVERSION_PATH_FINDER = "ConversionPathFinder";
    bytes32 internal constant CONVERTER_UPGRADER = "BancorConverterUpgrader";
    bytes32 internal constant CONVERTER_REGISTRY = "BancorConverterRegistry";
    bytes32 internal constant CONVERTER_REGISTRY_DATA = "BancorConverterRegistryData";
    bytes32 internal constant BNT_TOKEN = "BNTToken";
    bytes32 internal constant BANCOR_X = "BancorX";
    bytes32 internal constant BANCOR_X_UPGRADER = "BancorXUpgrader";
    bytes32 internal constant LIQUIDITY_PROTECTION = "LiquidityProtection";

    IContractRegistry public registry; // address of the current contract-registry
    IContractRegistry public prevRegistry; // address of the previous contract-registry
    bool public onlyOwnerCanUpdateRegistry; // only an owner can update the contract-registry

    /**
     * @dev verifies that the caller is mapped to the given contract name
     *
     * @param _contractName    contract name
     */
    modifier only(bytes32 _contractName) {
        _only(_contractName);
        _;
    }

    // error message binary size optimization
    function _only(bytes32 _contractName) internal view {
        require(msg.sender == addressOf(_contractName), "ERR_ACCESS_DENIED");
    }

    /**
     * @dev initializes a new ContractRegistryClient instance
     *
     * @param  _registry   address of a contract-registry contract
     */
    constructor(IContractRegistry _registry) internal validAddress(address(_registry)) {
        registry = IContractRegistry(_registry);
        prevRegistry = IContractRegistry(_registry);
    }

    /**
     * @dev updates to the new contract-registry
     */
    function updateRegistry() public {
        // verify that this function is permitted
        require(msg.sender == owner || !onlyOwnerCanUpdateRegistry, "ERR_ACCESS_DENIED");

        // get the new contract-registry
        IContractRegistry newRegistry = IContractRegistry(addressOf(CONTRACT_REGISTRY));

        // verify that the new contract-registry is different and not zero
        require(newRegistry != registry && address(newRegistry) != address(0), "ERR_INVALID_REGISTRY");

        // verify that the new contract-registry is pointing to a non-zero contract-registry
        require(newRegistry.addressOf(CONTRACT_REGISTRY) != address(0), "ERR_INVALID_REGISTRY");

        // save a backup of the current contract-registry before replacing it
        prevRegistry = registry;

        // replace the current contract-registry with the new contract-registry
        registry = newRegistry;
    }

    /**
     * @dev restores the previous contract-registry
     */
    function restoreRegistry() public ownerOnly {
        // restore the previous contract-registry
        registry = prevRegistry;
    }

    /**
     * @dev restricts the permission to update the contract-registry
     *
     * @param _onlyOwnerCanUpdateRegistry  indicates whether or not permission is restricted to owner only
     */
    function restrictRegistryUpdate(bool _onlyOwnerCanUpdateRegistry) public ownerOnly {
        // change the permission to update the contract-registry
        onlyOwnerCanUpdateRegistry = _onlyOwnerCanUpdateRegistry;
    }

    /**
     * @dev returns the address associated with the given contract name
     *
     * @param _contractName    contract name
     *
     * @return contract address
     */
    function addressOf(bytes32 _contractName) internal view returns (address) {
        return registry.addressOf(_contractName);
    }
}

File 12 of 28 : Owned.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "./interfaces/IOwned.sol";

/**
 * @dev This contract provides support and utilities for contract ownership.
 */
contract Owned is IOwned {
    address public override owner;
    address public newOwner;

    /**
     * @dev triggered when the owner is updated
     *
     * @param _prevOwner previous owner
     * @param _newOwner  new owner
     */
    event OwnerUpdate(address indexed _prevOwner, address indexed _newOwner);

    /**
     * @dev initializes a new Owned instance
     */
    constructor() public {
        owner = msg.sender;
    }

    // allows execution by the owner only
    modifier ownerOnly {
        _ownerOnly();
        _;
    }

    // error message binary size optimization
    function _ownerOnly() internal view {
        require(msg.sender == owner, "ERR_ACCESS_DENIED");
    }

    /**
     * @dev allows transferring the contract ownership
     * the new owner still needs to accept the transfer
     * can only be called by the contract owner
     *
     * @param _newOwner    new contract owner
     */
    function transferOwnership(address _newOwner) public override ownerOnly {
        require(_newOwner != owner, "ERR_SAME_OWNER");
        newOwner = _newOwner;
    }

    /**
     * @dev used by a new owner to accept an ownership transfer
     */
    function acceptOwnership() public override {
        require(msg.sender == newOwner, "ERR_ACCESS_DENIED");
        emit OwnerUpdate(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}

File 13 of 28 : Time.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

/*
    Time implementing contract
*/
contract Time {
    /**
     * @dev returns the current time
     */
    function time() internal view virtual returns (uint256) {
        return block.timestamp;
    }
}

File 14 of 28 : Utils.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

/**
 * @dev Utilities & Common Modifiers
 */
contract Utils {
    // verifies that a value is greater than zero
    modifier greaterThanZero(uint256 _value) {
        _greaterThanZero(_value);
        _;
    }

    // error message binary size optimization
    function _greaterThanZero(uint256 _value) internal pure {
        require(_value > 0, "ERR_ZERO_VALUE");
    }

    // validates an address - currently only checks that it isn't null
    modifier validAddress(address _address) {
        _validAddress(_address);
        _;
    }

    // error message binary size optimization
    function _validAddress(address _address) internal pure {
        require(_address != address(0), "ERR_INVALID_ADDRESS");
    }

    // verifies that the address is different than this contract address
    modifier notThis(address _address) {
        _notThis(_address);
        _;
    }

    // error message binary size optimization
    function _notThis(address _address) internal view {
        require(_address != address(this), "ERR_ADDRESS_IS_SELF");
    }

    // validates an external address - currently only checks that it isn't null or this
    modifier validExternalAddress(address _address) {
        _validExternalAddress(_address);
        _;
    }

    // error message binary size optimization
    function _validExternalAddress(address _address) internal view {
        require(_address != address(0) && _address != address(this), "ERR_INVALID_EXTERNAL_ADDRESS");
    }
}

File 15 of 28 : ICheckpointStore.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

/**
 * @dev Checkpoint store contract interface
 */
interface ICheckpointStore {
    function addCheckpoint(address _address) external;

    function addPastCheckpoint(address _address, uint256 _time) external;

    function addPastCheckpoints(address[] calldata _addresses, uint256[] calldata _times) external;

    function checkpoint(address _address) external view returns (uint256);
}

File 16 of 28 : IContractRegistry.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

/*
    Contract Registry interface
*/
interface IContractRegistry {
    function addressOf(bytes32 _contractName) external view returns (address);
}

File 17 of 28 : IOwned.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;

/*
    Owned contract interface
*/
interface IOwned {
    // this function isn't since the compiler emits automatically generated getter functions as external
    function owner() external view returns (address);

    function transferOwnership(address _newOwner) external;

    function acceptOwnership() external;
}

File 18 of 28 : IClaimable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

/// @title Claimable contract interface
interface IClaimable {
    function owner() external view returns (address);

    function transferOwnership(address newOwner) external;

    function acceptOwnership() external;
}

File 19 of 28 : IMintableToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

import "./IClaimable.sol";

/// @title Mintable Token interface
interface IMintableToken is IERC20, IClaimable {
    function issue(address to, uint256 amount) external;

    function destroy(address from, uint256 amount) external;
}

File 20 of 28 : ITokenGovernance.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

import "./IMintableToken.sol";

/// @title The interface for mintable/burnable token governance.
interface ITokenGovernance {
    // The address of the mintable ERC20 token.
    function token() external view returns (IMintableToken);

    /// @dev Mints new tokens.
    ///
    /// @param to Account to receive the new amount.
    /// @param amount Amount to increase the supply by.
    ///
    function mint(address to, uint256 amount) external;

    /// @dev Burns tokens from the caller.
    ///
    /// @param amount Amount to decrease the supply by.
    ///
    function burn(uint256 amount) external;
}

File 21 of 28 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 22 of 28 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/EnumerableSet.sol";
import "../utils/Address.sol";
import "../GSN/Context.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 23 of 28 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

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

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

File 24 of 28 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 25 of 28 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

File 26 of 28 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC20.sol";
import "../../math/SafeMath.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 SafeMath for uint256;
    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'
        // solhint-disable-next-line max-line-length
        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).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _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
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 27 of 28 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 28 of 28 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IStakingRewardsStore","name":"store","type":"address"},{"internalType":"contract ITokenGovernance","name":"networkTokenGovernance","type":"address"},{"internalType":"contract ICheckpointStore","name":"lastRemoveTimes","type":"address"},{"internalType":"contract IContractRegistry","name":"registry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"contract IDSToken","name":"poolToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newId","type":"uint256"}],"name":"RewardsStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_PUBLISHER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_SUPERVISOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRemoveTimes","outputs":[{"internalType":"contract ICheckpointStore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"networkTokenGovernance","outputs":[{"internalType":"contract ITokenGovernance","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"contract IConverterAnchor","name":"poolAnchor","type":"address"},{"internalType":"contract IERC20Token","name":"reserveToken","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onAddingLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"contract IConverterAnchor","name":"poolAnchor","type":"address"},{"internalType":"contract IERC20Token","name":"reserveToken","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onRemovingLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"onlyOwnerCanUpdateRegistry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"contract IDSToken","name":"poolToken","type":"address"},{"internalType":"contract IERC20Token","name":"reserveToken","type":"address"}],"name":"pendingReserveRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prevRegistry","outputs":[{"internalType":"contract IContractRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IContractRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restoreRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_onlyOwnerCanUpdateRegistry","type":"bool"}],"name":"restrictRegistryUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"contract IDSToken","name":"poolToken","type":"address"},{"internalType":"contract IERC20Token","name":"reserveToken","type":"address"}],"name":"rewardsMultiplier","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxAmount","type":"uint256"},{"internalType":"contract IDSToken","name":"poolToken","type":"address"}],"name":"stakeRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"store","outputs":[{"internalType":"contract IStakingRewardsStore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"name":"totalClaimedRewards","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":"updateRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"providers","type":"address[]"}],"name":"updateRewards","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523480156200001257600080fd5b506040516200402538038062004025833981810160405260808110156200003857600080fd5b50805160208201516040830151606090930151600180546001600160a01b031916331790559192909180806200006e81620001e8565b50600380546001600160a01b039092166001600160a01b031992831681179091556004805490921617905583620000a581620001e8565b83620000b181620001e8565b83620000bd81620001e8565b6001600160601b0319606088811b821660805287901b1660a05260408051637e062a3560e11b815290516001600160a01b0388169163fc0c546a916004808301926020929190829003018186803b1580156200011857600080fd5b505afa1580156200012d573d6000803e3d6000fd5b505050506040513d60208110156200014457600080fd5b50516001600160601b0319606091821b811660c0529086901b1660e0526200017c600080516020620040058339815191528062000247565b620001b77f318ca041382154243e5407309a15dc38a2622542637083fb3fe687f1e73186a26000805160206200400583398151915262000247565b620001db60008051602062004005833981519152620001d562000299565b6200029d565b50505050505050620003ad565b6001600160a01b03811662000244576040805162461bcd60e51b815260206004820152601360248201527f4552525f494e56414c49445f4144445245535300000000000000000000000000604482015290519081900360640190fd5b50565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b3390565b620002a98282620002ad565b5050565b600082815260208181526040909120620002d2918390620011f762000326821b17901c565b15620002a957620002e262000299565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006200033d836001600160a01b03841662000346565b90505b92915050565b600062000354838362000395565b6200038c5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000340565b50600062000340565b60009081526001919091016020526040902054151590565b60805160601c60a05160601c60c05160601c60e05160601c613bc66200043f60003980610aee528061214852508061291352806129e652508061063d528061278452806129615250806106975280610c205280610ea1528061146052806115b75280611d575280611e455280612201528061235852806126fd5280612b7b528061363452806137025250613bc66000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80638da5cb5b1161010f578063b4a176d3116100a2578063ca15c87311610071578063ca15c8731461059e578063d4ee1d90146105bb578063d547741f146105c3578063f2fde38b146105ef576101f0565b8063b4a176d3146104c5578063b8128fe6146104cd578063bae505a114610515578063c99177db1461054d576101f0565b80639b172b35116100de5780639b172b351461044a578063a110b93f1461048f578063a217fddf146104b5578063ab80e2b3146104bd576101f0565b80638da5cb5b146103eb5780639010d07c146103f357806391d1485414610416578063975057e714610442576101f0565b806331d7a2621161018757806361cd756e1161015657806361cd756e146103cb578063728719b8146103d357806379ba5097146103db5780637b103999146103e3576101f0565b806331d7a2621461036957806336568abe1461038f578063372500ab146103bb57806349d10b64146103c3576101f0565b806319388d70116101c357806319388d7014610296578063248a9ca3146103045780632f2ff15d146103215780632fe8a6ad1461034d576101f0565b8063024c7ec7146101f55780630529fa3d146102165780630d80af9b1461023a578063139c22ea14610254575b600080fd5b6102146004803603602081101561020b57600080fd5b50351515610615565b005b61021e61063b565b604080516001600160a01b039092168252519081900360200190f35b61024261065f565b60408051918252519081900360200190f35b610214600480360360a081101561026a57600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060800135610683565b610214600480360360208110156102ac57600080fd5b810190602081018135600160201b8111156102c657600080fd5b8201836020820111156102d857600080fd5b803590602001918460208302840111600160201b831117156102f957600080fd5b509092509050610766565b6102426004803603602081101561031a57600080fd5b50356107b2565b6102146004803603604081101561033757600080fd5b50803590602001356001600160a01b03166107c7565b610355610833565b604080519115158252519081900360200190f35b6102426004803603602081101561037f57600080fd5b50356001600160a01b0316610843565b610214600480360360408110156103a557600080fd5b50803590602001356001600160a01b031661085c565b6102426108bd565b6102146108d5565b61021e610add565b61021e610aec565b610214610b10565b61021e610bc9565b61021e610bd8565b61021e6004803603604081101561040957600080fd5b5080359060200135610be7565b6103556004803603604081101561042c57600080fd5b50803590602001356001600160a01b0316610c06565b61021e610c1e565b6104766004803603604081101561046057600080fd5b50803590602001356001600160a01b0316610c42565b6040805192835260208301919091528051918290030190f35b610242600480360360208110156104a557600080fd5b50356001600160a01b0316610c63565b610242610e38565b610242610e3d565b610214610e61565b610214600480360360c08110156104e357600080fd5b508035906001600160a01b03602082013581169160408101358216916060820135169060808101359060a00135610e8d565b6102426004803603606081101561052b57600080fd5b506001600160a01b038135811691602081013582169160409091013516611085565b6105856004803603606081101561056357600080fd5b506001600160a01b0381358116916020810135821691604090910135166110b7565b6040805163ffffffff9092168252519081900360200190f35b610242600480360360208110156105b457600080fd5b50356110fa565b61021e611111565b610214600480360360408110156105d957600080fd5b50803590602001356001600160a01b0316611120565b6102146004803603602081101561060557600080fd5b50356001600160a01b0316611179565b61061d61120c565b60048054911515600160a01b0260ff60a01b19909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000090565b7f0c7ade2c7c08453ea605b4a8f3fb0e03e3ffcffbfa41ca8ee543d0fd74cada3881565b61068b611261565b84610695816112d0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630cf90edb86866040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561071357600080fd5b505afa158015610727573d6000803e3d6000fd5b505050506040513d602081101561073d57600080fd5b50516107485761075e565b61075b868686610756611345565b6113b8565b50505b505050505050565b6000610770611345565b90508160005b818110156107ab576107a385858381811061078d57fe5b905060200201356001600160a01b0316846116bb565b600101610776565b5050505050565b60009081526020819052604090206002015490565b6000828152602081905260409020600201546107ea906107e561185d565b610c06565b6108255760405162461bcd60e51b815260040180806020018281038252602f815260200180613a82602f913960400191505060405180910390fd5b61082f8282611861565b5050565b600454600160a01b900460ff1681565b600061085682610851611345565b6118ca565b92915050565b61086461185d565b6001600160a01b0316816001600160a01b0316146108b35760405162461bcd60e51b815260040180806020018281038252602f815260200180613b62602f913960400191505060405180910390fd5b61082f82826119ea565b60006108d0336108cb611345565b611a53565b905090565b6001546001600160a01b03163314806108f85750600454600160a01b900460ff16155b61093d576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b600061095b6f436f6e7472616374526567697374727960801b611b76565b6003549091506001600160a01b0380831691161480159061098457506001600160a01b03811615155b6109cc576040805162461bcd60e51b81526020600482015260146024820152734552525f494e56414c49445f524547495354525960601b604482015290519081900360640190fd5b60006001600160a01b0316816001600160a01b031663bb34534c6f436f6e7472616374526567697374727960801b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610a2e57600080fd5b505afa158015610a42573d6000803e3d6000fd5b505050506040513d6020811015610a5857600080fd5b50516001600160a01b03161415610aad576040805162461bcd60e51b81526020600482015260146024820152734552525f494e56414c49445f524547495354525960601b604482015290519081900360640190fd5b60038054600480546001600160a01b038084166001600160a01b0319928316179092559091169216919091179055565b6004546001600160a01b031681565b7f000000000000000000000000000000000000000000000000000000000000000090565b6002546001600160a01b03163314610b63576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b6002546001546040516001600160a01b0392831692909116907f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a90600090a360028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b6003546001600160a01b031681565b6001546001600160a01b031681565b6000828152602081905260408120610bff9083611bf4565b9392505050565b6000828152602081905260408120610bff9083611c00565b7f000000000000000000000000000000000000000000000000000000000000000090565b600080610c58338585610c53611345565b611c15565b915091509250929050565b60008080610c6f611345565b90506060816001600160a01b0316635408b440866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015610cc057600080fd5b505afa158015610cd4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015610cfd57600080fd5b8101908080516040519392919084600160201b821115610d1c57600080fd5b908301906020820185811115610d3157600080fd5b82518660208202830111600160201b82111715610d4d57600080fd5b82525081516020918201928201910280838360005b83811015610d7a578181015183820152602001610d62565b50505050905001604052505050905060005b8151811015610e2e576000828281518110610da357fe5b60200260200101519050610db56139aa565b610dbe82611d45565b905060005b6002811015610e2057600082606001518260028110610dde57fe5b60200201519050610ded6139e4565b610df88b8684611e33565b9050610e1181604001518a611f4c90919063ffffffff16565b98505050806001019050610dc3565b505050806001019050610d8c565b5091949350505050565b600081565b7f318ca041382154243e5407309a15dc38a2622542637083fb3fe687f1e73186a281565b610e6961120c565b600454600380546001600160a01b0319166001600160a01b03909216919091179055565b610e95611261565b84610e9f816112d0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630cf90edb86866040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015610f1d57600080fd5b505afa158015610f31573d6000803e3d6000fd5b505050506040513d6020811015610f4757600080fd5b5051610f525761107c565b6000610f5c611345565b905061075b87826001600160a01b0316635408b4408a6040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015610faf57600080fd5b505afa158015610fc3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015610fec57600080fd5b8101908080516040519392919084600160201b82111561100b57600080fd5b90830190602082018581111561102057600080fd5b82518660208202830111600160201b8211171561103c57600080fd5b82525081516020918201928201910280838360005b83811015611069578181015183820152602001611051565b5050505090500160405250505083611fa6565b50505050505050565b600061108f6139aa565b61109884611d45565b90506110ae858585846110a9611345565b611fd9565b95945050505050565b60006110c16139e4565b6110cc858585611e33565b90506110d66139aa565b6110df85611d45565b90506110f086836060015183612116565b9695505050505050565b6000818152602081905260408120610856906122d0565b6002546001600160a01b031681565b60008281526020819052604090206002015461113e906107e561185d565b6108b35760405162461bcd60e51b8152600401808060200182810382526030815260200180613ab16030913960400191505060405180910390fd5b61118161120c565b6001546001600160a01b03828116911614156111d5576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa9a0a6a2afa7aba722a960911b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000610bff836001600160a01b0384166122db565b6001546001600160a01b0316331461125f576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b565b61128b7f318ca041382154243e5407309a15dc38a2622542637083fb3fe687f1e73186a233610c06565b61125f576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b6001600160a01b038116158015906112f157506001600160a01b0381163014155b611342576040805162461bcd60e51b815260206004820152601c60248201527f4552525f494e56414c49445f45585445524e414c5f4144445245535300000000604482015290519081900360640190fd5b50565b600061134f612325565b6001600160a01b031663d80528ae6040518163ffffffff1660e01b815260040160206040518083038186803b15801561138757600080fd5b505afa15801561139b573d6000803e3d6000fd5b505050506040513d60208110156113b157600080fd5b5051905090565b6113c0613a20565b6113c86139e4565b6113d06139aa565b6113d986611d45565b90506113e3613a20565b6113ed8787612346565b90506113fc8787838589612423565b602082015261141661140c61257e565b8360200151612582565b808252602082015160408084015181516378687cd560e11b81526001600160a01b038c811660048301528b81166024830152604482019590955260648101939093526084830152517f00000000000000000000000000000000000000000000000000000000000000009092169163f0d0f9aa9160a48082019260009290919082900301818387803b1580156114aa57600080fd5b505af11580156114be573d6000803e3d6000fd5b505050506114ca6139e4565b6114d5898989611e33565b90508060600151600014801561156e5750604080516342d16abf60e01b81526001600160a01b038b811660048301528a8116602483015289811660448301529151918816916342d16abf91606480820192602092909190829003018186803b15801561154057600080fd5b505afa158015611554573d6000803e3d6000fd5b505050506040513d602081101561156a57600080fd5b5051155b156115815761157b61257e565b60608201525b61159e6115938a8a8a8686898d612598565b602083015190611f4c565b81602001818152505081602001518160000181815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f615d5be8a8a8a856000015186602001518760400151886060015189608001518a60a001516040518a63ffffffff1660e01b8152600401808a6001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b031681526020018781526020018681526020018581526020018481526020018381526020018263ffffffff1681526020019950505050505050505050600060405180830381600087803b15801561169457600080fd5b505af11580156116a8573d6000803e3d6000fd5b50939b929a509198505050505050505050565b6060816001600160a01b0316635408b440846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b15801561170a57600080fd5b505afa15801561171e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561174757600080fd5b8101908080516040519392919084600160201b82111561176657600080fd5b90830190602082018581111561177b57600080fd5b82518660208202830111600160201b8211171561179757600080fd5b82525081516020918201928201910280838360005b838110156117c45781810151838201526020016117ac565b50505050905001604052505050905060005b81518110156118575760008282815181106117ed57fe5b602002602001015190506117ff6139aa565b61180882611d45565b905060005b60028110156118495760008260600151826002811061182857fe5b6020020151905061183b8885838a6113b8565b50505080600101905061180d565b5050508060010190506117d6565b50505050565b3390565b600082815260208190526040902061187990826111f7565b1561082f5761188661185d565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610bff83836001600160a01b0316635408b440866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b15801561191d57600080fd5b505afa158015611931573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561195a57600080fd5b8101908080516040519392919084600160201b82111561197957600080fd5b90830190602082018581111561198e57600080fd5b82518660208202830111600160201b821117156119aa57600080fd5b82525081516020918201928201910280838360005b838110156119d75781810151838201526020016119bf565b5050505090500160405250505084612676565b6000828152602081905260409020611a0290826126c9565b1561082f57611a0f61185d565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000610bff83836001600160a01b0316635408b440866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611ae357600080fd5b8101908080516040519392919084600160201b821115611b0257600080fd5b908301906020820185811115611b1757600080fd5b82518660208202830111600160201b82111715611b3357600080fd5b82525081516020918201928201910280838360005b83811015611b60578181015183820152602001611b48565b50505050905001604052505050600019856126de565b60035460408051632ecd14d360e21b81526004810184905290516000926001600160a01b03169163bb34534c916024808301926020929190829003018186803b158015611bc257600080fd5b505afa158015611bd6573d6000803e3d6000fd5b505050506040513d6020811015611bec57600080fd5b505192915050565b6000610bff838361285b565b6000610bff836001600160a01b0384166128bf565b600080611d3886846001600160a01b0316635408b440896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015611c6957600080fd5b505afa158015611c7d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611ca657600080fd5b8101908080516040519392919084600160201b821115611cc557600080fd5b908301906020820185811115611cda57600080fd5b82518660208202830111600160201b82111715611cf657600080fd5b82525081516020918201928201910280838360005b83811015611d23578181015183820152602001611d0b565b505050509050016040525050508787876128d7565b9150915094509492505050565b611d4d6139aa565b611d556139aa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634768399e846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060e06040518083038186803b158015611dc257600080fd5b505afa158015611dd6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525060e0811015611dfb57600080fd5b50805160208083015160408085015160a086016080880152606095860195870195909552850193909352830191909152815292915050565b611e3b6139e4565b611e436139e4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166371b942c28686866040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b03168152602001826001600160a01b03168152602001935050505060c06040518083038186803b158015611ed257600080fd5b505afa158015611ee6573d6000803e3d6000fd5b505050506040513d60c0811015611efc57600080fd5b50805160208083015160408085015160608087015160808089015160a0998a015163ffffffff16998b01999099528901979097528701959095528501939093528301919091528152949350505050565b600082820183811015610bff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b815160005b818110156107ab57611fd185858381518110611fc357fe5b602002602001015185612aca565b600101611fab565b6000611fe3613a20565b611fed8686612346565b9050611ffc8686838787612423565b602082015261201661200c61257e565b8560200151612582565b81526120206139e4565b61202b888888611e33565b9050806060015160001480156120c45750604080516342d16abf60e01b81526001600160a01b038a81166004830152898116602483015288811660448301529151918616916342d16abf91606480820192602092909190829003018186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d60208110156120c057600080fd5b5051155b156120d7576120d161257e565b60608201525b6120e961159389898986868b8b612598565b6020808301919091528201518152600061210889898986868b8b612c7c565b509998505050505050505050565b60008061212e61212461257e565b8460200151612582565b90506000612280612143868660000151612d38565b61227b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a972985e8a6040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156121b357600080fd5b505afa1580156121c7573d6000803e3d6000fd5b505050506040513d60208110156121dd57600080fd5b50516040805163822a03bd60e01b81526001600160a01b038c8116600483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163822a03bd91602480820192602092909190829003018186803b15801561224a57600080fd5b505afa15801561225e573d6000803e3d6000fd5b505050506040513d602081101561227457600080fd5b5051612d38565b612d38565b905081811061229657620f424092505050610bff565b60006122a28383612d48565b90506122bb6122b48262093a80612d8a565b6004612582565b6203d09002620f424001979650505050505050565b600061085682612dcc565b60006122e783836128bf565b61231d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610856565b506000610856565b60006108d0722634b8bab4b234ba3ca83937ba32b1ba34b7b760691b611b76565b61234e613a20565b612356613a20565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c55b65ce85856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060606040518083038186803b1580156123d457600080fd5b505afa1580156123e8573d6000803e3d6000fd5b505050506040513d60608110156123fe57600080fd5b5080516020808301516040938401519385019390935283019190915281529392505050565b600080826001600160a01b03166322677c5288886040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561248457600080fd5b505afa158015612498573d6000803e3d6000fd5b505050506040513d60208110156124ae57600080fd5b50519050806124c357505060208301516110ae565b60006124cd61257e565b85519091508110156124e4576000925050506110ae565b60006124f4828760200151612582565b9050600061250a87600001518960000151612d38565b905061257061256561251f86620f4240612dd0565b61255f61252c8d8c612e29565b63ffffffff16612559670de0b6b3a76400006125598e604001516125598a8c612d4890919063ffffffff16565b90612dd0565b90612d8a565b60208a015190611f4c565b9a9950505050505050505050565b4290565b60008183106125915781610bff565b5090919050565b600080826001600160a01b03166342d16abf8a8a8a6040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b03168152602001826001600160a01b03168152602001935050505060206040518083038186803b15801561260a57600080fd5b505afa15801561261e573d6000803e3d6000fd5b505050506040513d602081101561263457600080fd5b5051905060006126478989898888612423565b9050612570670de0b6b3a764000061255f61266f896000015185612d4890919063ffffffff16565b8590612dd0565b81516000908190815b818110156126be5760006126a78888848151811061269957fe5b602002602001015188612e5f565b90506126b38482611f4c565b93505060010161267f565b509095945050505050565b6000610bff836001600160a01b038416612ebb565b6000806126ed86868686612f81565b9050806126fb579050612853565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630a5a96f9876040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561276a57600080fd5b505af115801561277e573d6000803e3d6000fd5b505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166340c10f1987836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156127f957600080fd5b505af115801561280d573d6000803e3d6000fd5b50506040805184815290516001600160a01b038a1693507ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe92509081900360200190a290505b949350505050565b8154600090821061289d5760405162461bcd60e51b8152600401808060200182810382526022815260200180613a606022913960400191505060405180910390fd5b8260000182815481106128ac57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60008060006128e888888887612f81565b9050806128fa57915060009050612ac0565b6000612904612325565b905061293a6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168284612ff8565b604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916340c10f1991604480830192600092919082900301818387803b1580156129a857600080fd5b505af11580156129bc573d6000803e3d6000fd5b50506040805163caee4c8f60e01b81526001600160a01b038d811660048301528a811660248301527f00000000000000000000000000000000000000000000000000000000000000008116604483015260648201879052915160009450918516925063caee4c8f91608480830192602092919082900301818787803b158015612a4457600080fd5b505af1158015612a58573d6000803e3d6000fd5b505050506040513d6020811015612a6e57600080fd5b505160408051858152905191925082916001600160a01b03808b1692908e16917f7a4e13b7a1a2229d019b6d8240a50afe51b81d2ee409171431a25b31111eeaaf9181900360200190a4919350909150505b9550959350505050565b612ad26139aa565b612adb83611d45565b905060005b60028110156107ab57600082606001518260028110612afb57fe5b60200201519050612b0a613a20565b612b126139e4565b612b1e888885896113b8565b91509150600080612b348a8a8787878c8e612c7c565b909250905063ffffffff8116620f42401415612b565760808301829052612b79565b612b7363ffffffff8083169061255f908590620f424090612dd016565b60808401525b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f615d5be8b8b88876000015160008960400151612bbf61257e565b8b608001518a6040518a63ffffffff1660e01b8152600401808a6001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b031681526020018781526020018681526020018581526020018481526020018381526020018263ffffffff1681526020019950505050505050505050600060405180830381600087803b158015612c5457600080fd5b505af1158015612c68573d6000803e3d6000fd5b505050505050505050806001019050612ae0565b6000806000612c908a8a8a8a8a8a8a612598565b9050612ca28187606001518a88613110565b6000612cb38b886060015188612116565b90506000612cce838960200151611f4c90919063ffffffff16565b905063ffffffff8216620f424014612cfd57612cfa620f424061255f8363ffffffff86811690612dd016565b90505b612d1a612d138960800151848b60a00151613241565b8290611f4c565b9050612d28818b8b8a613281565b9b909a5098505050505050505050565b6000818310156125915781610bff565b6000610bff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613336565b6000610bff83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506133cd565b5490565b600082612ddf57506000610856565b82820282848281612dec57fe5b0414610bff5760405162461bcd60e51b8152600401808060200182810382526021815260200180613ae16021913960400191505060405180910390fd5b6060810151516000906001600160a01b0384811691161415612e515750608081015151610856565b506080015160200151919050565b600080612e6a6139aa565b612e7385611d45565b905060005b60028110156126be576000612ea4888885606001518560028110612e9857fe5b6020020151868a611fd9565b9050612eb08482611f4c565b935050600101612e78565b60008181526001830160205260408120548015612f775783546000198083019190810190600090879083908110612eee57fe5b9060005260206000200154905080876000018481548110612f0b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612f3b57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610856565b6000915050610856565b82516000908190815b8181108015612f995750600086115b15612fec576000612fbf89898481518110612fb057fe5b60200260200101518989613432565b9050612fcb8482611f4c565b93506000198714612fe357612fe08782612d48565b96505b50600101612f8a565b50909695505050505050565b80158061307e575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561305057600080fd5b505afa158015613064573d6000803e3d6000fd5b505050506040513d602081101561307a57600080fd5b5051155b6130b95760405162461bcd60e51b8152600401808060200182810382526036815260200180613b2c6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261310b9084906134b1565b505050565b600061311a61257e565b8251909150811080613130575081602001518410155b1561318e578415613188576040805162461bcd60e51b815260206004820152601860248201527f4552525f424153455f5245574152445f544f4f5f484947480000000000000000604482015290519081900360640190fd5b50611857565b600061319e858460000151612d38565b905060006131b0838560200151612582565b90506131ed620f424061255f6131c68888612e29565b63ffffffff166125596131e28787612d4890919063ffffffff16565b60408a015190612dd0565b87111561107c576040805162461bcd60e51b815260206004820152601d60248201527f4552525f424153455f5245574152445f524154455f544f4f5f48494748000000604482015290519081900360640190fd5b60008061325a8463ffffffff168463ffffffff16612d38565b9050620f42408114156132705784915050610bff565b6110ae620f424061255f8784612dd0565b60408201516000906132df906132d9620f424061255f8181621e84806125596132aa8d8c612e29565b63ffffffff166125596132ce8d600001518e60200151612d4890919063ffffffff16565b60408e015190612dd0565b90612d48565b9050808511156107ab576040805162461bcd60e51b815260206004820152601860248201527f4552525f5245574152445f524154455f544f4f5f484947480000000000000000604482015290519081900360640190fd5b600081848411156133c55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561338a578181015183820152602001613372565b50505050905090810190601f1680156133b75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361341c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561338a578181015183820152602001613372565b50600083858161342857fe5b0495945050505050565b60008061343d6139aa565b61344686611d45565b905060005b60028110801561345b5750600086115b15612fec57600061348489898560600151856002811061347757fe5b6020020151868b8b613562565b90506134908482611f4c565b935060001987146134a8576134a58782612d48565b96505b5060010161344b565b6060613506826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166138189092919063ffffffff16565b80519091501561310b5780806020019051602081101561352557600080fd5b505161310b5760405162461bcd60e51b815260040180806020018281038252602a815260200180613b02602a913960400191505060405180910390fd5b600061356c613a20565b6135746139e4565b613580898989876113b8565b915091506000806135968b8b8b87878d8c612c7c565b60006080860181905260a08601529092509050600019871461363257868211156136255763ffffffff8116620f424014156135df576135d58288612d48565b608084015261360f565b6136098163ffffffff1661255f620f424063ffffffff166125598b87612d4890919063ffffffff16565b60808401525b63ffffffff811660a08401526000969150613632565b61362f8783612d48565b96505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f0d0f9aa8b8b87600001518860200151613684888b60400151611f4c90919063ffffffff16565b6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b1580156136e857600080fd5b505af11580156136fc573d6000803e3d6000fd5b505050507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f615d5be8c8c8c87600001516000613750898b60400151611f4c90919063ffffffff16565b61375861257e565b8b608001518c60a001516040518a63ffffffff1660e01b8152600401808a6001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b031681526020018781526020018681526020018581526020018481526020018381526020018263ffffffff1681526020019950505050505050505050600060405180830381600087803b1580156137f157600080fd5b505af1158015613805573d6000803e3d6000fd5b50939d9c50505050505050505050505050565b606061285384846000858561382c8561393e565b61387d576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106138bc5780518252601f19909201916020918201910161389d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461391e576040519150601f19603f3d011682016040523d82523d6000602084013e613923565b606091505b5091509150613933828286613944565b979650505050505050565b3b151590565b60608315613953575081610bff565b8251156139635782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561338a578181015183820152602001613372565b6040518060a001604052806000815260200160008152602001600081526020016139d2613a41565b81526020016139df613a41565b905290565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600063ffffffff1681525090565b60405180606001604052806000815260200160008152602001600081525090565b6040518060400160405280600290602082028036833750919291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209cbc6c5ad2eeea727b98b4415db99692339e6cba4f4c4a798fb999c632d28ac964736f6c634300060c00330c7ade2c7c08453ea605b4a8f3fb0e03e3ffcffbfa41ca8ee543d0fd74cada38000000000000000000000000891aff26593da95e574e3f62619dad6624fb5693000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc244000000000000000000000000f8a2fb650e25a26ce839d64be8a0abbcb0b87b3200000000000000000000000052ae12abe5d8bd778bd5397f99ca900624cfadd4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80638da5cb5b1161010f578063b4a176d3116100a2578063ca15c87311610071578063ca15c8731461059e578063d4ee1d90146105bb578063d547741f146105c3578063f2fde38b146105ef576101f0565b8063b4a176d3146104c5578063b8128fe6146104cd578063bae505a114610515578063c99177db1461054d576101f0565b80639b172b35116100de5780639b172b351461044a578063a110b93f1461048f578063a217fddf146104b5578063ab80e2b3146104bd576101f0565b80638da5cb5b146103eb5780639010d07c146103f357806391d1485414610416578063975057e714610442576101f0565b806331d7a2621161018757806361cd756e1161015657806361cd756e146103cb578063728719b8146103d357806379ba5097146103db5780637b103999146103e3576101f0565b806331d7a2621461036957806336568abe1461038f578063372500ab146103bb57806349d10b64146103c3576101f0565b806319388d70116101c357806319388d7014610296578063248a9ca3146103045780632f2ff15d146103215780632fe8a6ad1461034d576101f0565b8063024c7ec7146101f55780630529fa3d146102165780630d80af9b1461023a578063139c22ea14610254575b600080fd5b6102146004803603602081101561020b57600080fd5b50351515610615565b005b61021e61063b565b604080516001600160a01b039092168252519081900360200190f35b61024261065f565b60408051918252519081900360200190f35b610214600480360360a081101561026a57600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060800135610683565b610214600480360360208110156102ac57600080fd5b810190602081018135600160201b8111156102c657600080fd5b8201836020820111156102d857600080fd5b803590602001918460208302840111600160201b831117156102f957600080fd5b509092509050610766565b6102426004803603602081101561031a57600080fd5b50356107b2565b6102146004803603604081101561033757600080fd5b50803590602001356001600160a01b03166107c7565b610355610833565b604080519115158252519081900360200190f35b6102426004803603602081101561037f57600080fd5b50356001600160a01b0316610843565b610214600480360360408110156103a557600080fd5b50803590602001356001600160a01b031661085c565b6102426108bd565b6102146108d5565b61021e610add565b61021e610aec565b610214610b10565b61021e610bc9565b61021e610bd8565b61021e6004803603604081101561040957600080fd5b5080359060200135610be7565b6103556004803603604081101561042c57600080fd5b50803590602001356001600160a01b0316610c06565b61021e610c1e565b6104766004803603604081101561046057600080fd5b50803590602001356001600160a01b0316610c42565b6040805192835260208301919091528051918290030190f35b610242600480360360208110156104a557600080fd5b50356001600160a01b0316610c63565b610242610e38565b610242610e3d565b610214610e61565b610214600480360360c08110156104e357600080fd5b508035906001600160a01b03602082013581169160408101358216916060820135169060808101359060a00135610e8d565b6102426004803603606081101561052b57600080fd5b506001600160a01b038135811691602081013582169160409091013516611085565b6105856004803603606081101561056357600080fd5b506001600160a01b0381358116916020810135821691604090910135166110b7565b6040805163ffffffff9092168252519081900360200190f35b610242600480360360208110156105b457600080fd5b50356110fa565b61021e611111565b610214600480360360408110156105d957600080fd5b50803590602001356001600160a01b0316611120565b6102146004803603602081101561060557600080fd5b50356001600160a01b0316611179565b61061d61120c565b60048054911515600160a01b0260ff60a01b19909216919091179055565b7f000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc24490565b7f0c7ade2c7c08453ea605b4a8f3fb0e03e3ffcffbfa41ca8ee543d0fd74cada3881565b61068b611261565b84610695816112d0565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b0316630cf90edb86866040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561071357600080fd5b505afa158015610727573d6000803e3d6000fd5b505050506040513d602081101561073d57600080fd5b50516107485761075e565b61075b868686610756611345565b6113b8565b50505b505050505050565b6000610770611345565b90508160005b818110156107ab576107a385858381811061078d57fe5b905060200201356001600160a01b0316846116bb565b600101610776565b5050505050565b60009081526020819052604090206002015490565b6000828152602081905260409020600201546107ea906107e561185d565b610c06565b6108255760405162461bcd60e51b815260040180806020018281038252602f815260200180613a82602f913960400191505060405180910390fd5b61082f8282611861565b5050565b600454600160a01b900460ff1681565b600061085682610851611345565b6118ca565b92915050565b61086461185d565b6001600160a01b0316816001600160a01b0316146108b35760405162461bcd60e51b815260040180806020018281038252602f815260200180613b62602f913960400191505060405180910390fd5b61082f82826119ea565b60006108d0336108cb611345565b611a53565b905090565b6001546001600160a01b03163314806108f85750600454600160a01b900460ff16155b61093d576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b600061095b6f436f6e7472616374526567697374727960801b611b76565b6003549091506001600160a01b0380831691161480159061098457506001600160a01b03811615155b6109cc576040805162461bcd60e51b81526020600482015260146024820152734552525f494e56414c49445f524547495354525960601b604482015290519081900360640190fd5b60006001600160a01b0316816001600160a01b031663bb34534c6f436f6e7472616374526567697374727960801b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610a2e57600080fd5b505afa158015610a42573d6000803e3d6000fd5b505050506040513d6020811015610a5857600080fd5b50516001600160a01b03161415610aad576040805162461bcd60e51b81526020600482015260146024820152734552525f494e56414c49445f524547495354525960601b604482015290519081900360640190fd5b60038054600480546001600160a01b038084166001600160a01b0319928316179092559091169216919091179055565b6004546001600160a01b031681565b7f000000000000000000000000f8a2fb650e25a26ce839d64be8a0abbcb0b87b3290565b6002546001600160a01b03163314610b63576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b6002546001546040516001600160a01b0392831692909116907f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a90600090a360028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b6003546001600160a01b031681565b6001546001600160a01b031681565b6000828152602081905260408120610bff9083611bf4565b9392505050565b6000828152602081905260408120610bff9083611c00565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb569390565b600080610c58338585610c53611345565b611c15565b915091509250929050565b60008080610c6f611345565b90506060816001600160a01b0316635408b440866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015610cc057600080fd5b505afa158015610cd4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015610cfd57600080fd5b8101908080516040519392919084600160201b821115610d1c57600080fd5b908301906020820185811115610d3157600080fd5b82518660208202830111600160201b82111715610d4d57600080fd5b82525081516020918201928201910280838360005b83811015610d7a578181015183820152602001610d62565b50505050905001604052505050905060005b8151811015610e2e576000828281518110610da357fe5b60200260200101519050610db56139aa565b610dbe82611d45565b905060005b6002811015610e2057600082606001518260028110610dde57fe5b60200201519050610ded6139e4565b610df88b8684611e33565b9050610e1181604001518a611f4c90919063ffffffff16565b98505050806001019050610dc3565b505050806001019050610d8c565b5091949350505050565b600081565b7f318ca041382154243e5407309a15dc38a2622542637083fb3fe687f1e73186a281565b610e6961120c565b600454600380546001600160a01b0319166001600160a01b03909216919091179055565b610e95611261565b84610e9f816112d0565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b0316630cf90edb86866040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b158015610f1d57600080fd5b505afa158015610f31573d6000803e3d6000fd5b505050506040513d6020811015610f4757600080fd5b5051610f525761107c565b6000610f5c611345565b905061075b87826001600160a01b0316635408b4408a6040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015610faf57600080fd5b505afa158015610fc3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015610fec57600080fd5b8101908080516040519392919084600160201b82111561100b57600080fd5b90830190602082018581111561102057600080fd5b82518660208202830111600160201b8211171561103c57600080fd5b82525081516020918201928201910280838360005b83811015611069578181015183820152602001611051565b5050505090500160405250505083611fa6565b50505050505050565b600061108f6139aa565b61109884611d45565b90506110ae858585846110a9611345565b611fd9565b95945050505050565b60006110c16139e4565b6110cc858585611e33565b90506110d66139aa565b6110df85611d45565b90506110f086836060015183612116565b9695505050505050565b6000818152602081905260408120610856906122d0565b6002546001600160a01b031681565b60008281526020819052604090206002015461113e906107e561185d565b6108b35760405162461bcd60e51b8152600401808060200182810382526030815260200180613ab16030913960400191505060405180910390fd5b61118161120c565b6001546001600160a01b03828116911614156111d5576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa9a0a6a2afa7aba722a960911b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000610bff836001600160a01b0384166122db565b6001546001600160a01b0316331461125f576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b565b61128b7f318ca041382154243e5407309a15dc38a2622542637083fb3fe687f1e73186a233610c06565b61125f576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b6001600160a01b038116158015906112f157506001600160a01b0381163014155b611342576040805162461bcd60e51b815260206004820152601c60248201527f4552525f494e56414c49445f45585445524e414c5f4144445245535300000000604482015290519081900360640190fd5b50565b600061134f612325565b6001600160a01b031663d80528ae6040518163ffffffff1660e01b815260040160206040518083038186803b15801561138757600080fd5b505afa15801561139b573d6000803e3d6000fd5b505050506040513d60208110156113b157600080fd5b5051905090565b6113c0613a20565b6113c86139e4565b6113d06139aa565b6113d986611d45565b90506113e3613a20565b6113ed8787612346565b90506113fc8787838589612423565b602082015261141661140c61257e565b8360200151612582565b808252602082015160408084015181516378687cd560e11b81526001600160a01b038c811660048301528b81166024830152604482019590955260648101939093526084830152517f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56939092169163f0d0f9aa9160a48082019260009290919082900301818387803b1580156114aa57600080fd5b505af11580156114be573d6000803e3d6000fd5b505050506114ca6139e4565b6114d5898989611e33565b90508060600151600014801561156e5750604080516342d16abf60e01b81526001600160a01b038b811660048301528a8116602483015289811660448301529151918816916342d16abf91606480820192602092909190829003018186803b15801561154057600080fd5b505afa158015611554573d6000803e3d6000fd5b505050506040513d602081101561156a57600080fd5b5051155b156115815761157b61257e565b60608201525b61159e6115938a8a8a8686898d612598565b602083015190611f4c565b81602001818152505081602001518160000181815250507f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b031663f615d5be8a8a8a856000015186602001518760400151886060015189608001518a60a001516040518a63ffffffff1660e01b8152600401808a6001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b031681526020018781526020018681526020018581526020018481526020018381526020018263ffffffff1681526020019950505050505050505050600060405180830381600087803b15801561169457600080fd5b505af11580156116a8573d6000803e3d6000fd5b50939b929a509198505050505050505050565b6060816001600160a01b0316635408b440846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b15801561170a57600080fd5b505afa15801561171e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561174757600080fd5b8101908080516040519392919084600160201b82111561176657600080fd5b90830190602082018581111561177b57600080fd5b82518660208202830111600160201b8211171561179757600080fd5b82525081516020918201928201910280838360005b838110156117c45781810151838201526020016117ac565b50505050905001604052505050905060005b81518110156118575760008282815181106117ed57fe5b602002602001015190506117ff6139aa565b61180882611d45565b905060005b60028110156118495760008260600151826002811061182857fe5b6020020151905061183b8885838a6113b8565b50505080600101905061180d565b5050508060010190506117d6565b50505050565b3390565b600082815260208190526040902061187990826111f7565b1561082f5761188661185d565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610bff83836001600160a01b0316635408b440866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b15801561191d57600080fd5b505afa158015611931573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561195a57600080fd5b8101908080516040519392919084600160201b82111561197957600080fd5b90830190602082018581111561198e57600080fd5b82518660208202830111600160201b821117156119aa57600080fd5b82525081516020918201928201910280838360005b838110156119d75781810151838201526020016119bf565b5050505090500160405250505084612676565b6000828152602081905260409020611a0290826126c9565b1561082f57611a0f61185d565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000610bff83836001600160a01b0316635408b440866040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611ae357600080fd5b8101908080516040519392919084600160201b821115611b0257600080fd5b908301906020820185811115611b1757600080fd5b82518660208202830111600160201b82111715611b3357600080fd5b82525081516020918201928201910280838360005b83811015611b60578181015183820152602001611b48565b50505050905001604052505050600019856126de565b60035460408051632ecd14d360e21b81526004810184905290516000926001600160a01b03169163bb34534c916024808301926020929190829003018186803b158015611bc257600080fd5b505afa158015611bd6573d6000803e3d6000fd5b505050506040513d6020811015611bec57600080fd5b505192915050565b6000610bff838361285b565b6000610bff836001600160a01b0384166128bf565b600080611d3886846001600160a01b0316635408b440896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060006040518083038186803b158015611c6957600080fd5b505afa158015611c7d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611ca657600080fd5b8101908080516040519392919084600160201b821115611cc557600080fd5b908301906020820185811115611cda57600080fd5b82518660208202830111600160201b82111715611cf657600080fd5b82525081516020918201928201910280838360005b83811015611d23578181015183820152602001611d0b565b505050509050016040525050508787876128d7565b9150915094509492505050565b611d4d6139aa565b611d556139aa565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b0316634768399e846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060e06040518083038186803b158015611dc257600080fd5b505afa158015611dd6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525060e0811015611dfb57600080fd5b50805160208083015160408085015160a086016080880152606095860195870195909552850193909352830191909152815292915050565b611e3b6139e4565b611e436139e4565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b03166371b942c28686866040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b03168152602001826001600160a01b03168152602001935050505060c06040518083038186803b158015611ed257600080fd5b505afa158015611ee6573d6000803e3d6000fd5b505050506040513d60c0811015611efc57600080fd5b50805160208083015160408085015160608087015160808089015160a0998a015163ffffffff16998b01999099528901979097528701959095528501939093528301919091528152949350505050565b600082820183811015610bff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b815160005b818110156107ab57611fd185858381518110611fc357fe5b602002602001015185612aca565b600101611fab565b6000611fe3613a20565b611fed8686612346565b9050611ffc8686838787612423565b602082015261201661200c61257e565b8560200151612582565b81526120206139e4565b61202b888888611e33565b9050806060015160001480156120c45750604080516342d16abf60e01b81526001600160a01b038a81166004830152898116602483015288811660448301529151918616916342d16abf91606480820192602092909190829003018186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d60208110156120c057600080fd5b5051155b156120d7576120d161257e565b60608201525b6120e961159389898986868b8b612598565b6020808301919091528201518152600061210889898986868b8b612c7c565b509998505050505050505050565b60008061212e61212461257e565b8460200151612582565b90506000612280612143868660000151612d38565b61227b7f000000000000000000000000f8a2fb650e25a26ce839d64be8a0abbcb0b87b326001600160a01b031663a972985e8a6040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156121b357600080fd5b505afa1580156121c7573d6000803e3d6000fd5b505050506040513d60208110156121dd57600080fd5b50516040805163822a03bd60e01b81526001600160a01b038c8116600483015291517f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56939092169163822a03bd91602480820192602092909190829003018186803b15801561224a57600080fd5b505afa15801561225e573d6000803e3d6000fd5b505050506040513d602081101561227457600080fd5b5051612d38565b612d38565b905081811061229657620f424092505050610bff565b60006122a28383612d48565b90506122bb6122b48262093a80612d8a565b6004612582565b6203d09002620f424001979650505050505050565b600061085682612dcc565b60006122e783836128bf565b61231d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610856565b506000610856565b60006108d0722634b8bab4b234ba3ca83937ba32b1ba34b7b760691b611b76565b61234e613a20565b612356613a20565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b031663c55b65ce85856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060606040518083038186803b1580156123d457600080fd5b505afa1580156123e8573d6000803e3d6000fd5b505050506040513d60608110156123fe57600080fd5b5080516020808301516040938401519385019390935283019190915281529392505050565b600080826001600160a01b03166322677c5288886040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561248457600080fd5b505afa158015612498573d6000803e3d6000fd5b505050506040513d60208110156124ae57600080fd5b50519050806124c357505060208301516110ae565b60006124cd61257e565b85519091508110156124e4576000925050506110ae565b60006124f4828760200151612582565b9050600061250a87600001518960000151612d38565b905061257061256561251f86620f4240612dd0565b61255f61252c8d8c612e29565b63ffffffff16612559670de0b6b3a76400006125598e604001516125598a8c612d4890919063ffffffff16565b90612dd0565b90612d8a565b60208a015190611f4c565b9a9950505050505050505050565b4290565b60008183106125915781610bff565b5090919050565b600080826001600160a01b03166342d16abf8a8a8a6040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b03168152602001826001600160a01b03168152602001935050505060206040518083038186803b15801561260a57600080fd5b505afa15801561261e573d6000803e3d6000fd5b505050506040513d602081101561263457600080fd5b5051905060006126478989898888612423565b9050612570670de0b6b3a764000061255f61266f896000015185612d4890919063ffffffff16565b8590612dd0565b81516000908190815b818110156126be5760006126a78888848151811061269957fe5b602002602001015188612e5f565b90506126b38482611f4c565b93505060010161267f565b509095945050505050565b6000610bff836001600160a01b038416612ebb565b6000806126ed86868686612f81565b9050806126fb579050612853565b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b0316630a5a96f9876040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561276a57600080fd5b505af115801561277e573d6000803e3d6000fd5b505050507f000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc2446001600160a01b03166340c10f1987836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156127f957600080fd5b505af115801561280d573d6000803e3d6000fd5b50506040805184815290516001600160a01b038a1693507ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe92509081900360200190a290505b949350505050565b8154600090821061289d5760405162461bcd60e51b8152600401808060200182810382526022815260200180613a606022913960400191505060405180910390fd5b8260000182815481106128ac57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60008060006128e888888887612f81565b9050806128fa57915060009050612ac0565b6000612904612325565b905061293a6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c168284612ff8565b604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b037f000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc24416916340c10f1991604480830192600092919082900301818387803b1580156129a857600080fd5b505af11580156129bc573d6000803e3d6000fd5b50506040805163caee4c8f60e01b81526001600160a01b038d811660048301528a811660248301527f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c8116604483015260648201879052915160009450918516925063caee4c8f91608480830192602092919082900301818787803b158015612a4457600080fd5b505af1158015612a58573d6000803e3d6000fd5b505050506040513d6020811015612a6e57600080fd5b505160408051858152905191925082916001600160a01b03808b1692908e16917f7a4e13b7a1a2229d019b6d8240a50afe51b81d2ee409171431a25b31111eeaaf9181900360200190a4919350909150505b9550959350505050565b612ad26139aa565b612adb83611d45565b905060005b60028110156107ab57600082606001518260028110612afb57fe5b60200201519050612b0a613a20565b612b126139e4565b612b1e888885896113b8565b91509150600080612b348a8a8787878c8e612c7c565b909250905063ffffffff8116620f42401415612b565760808301829052612b79565b612b7363ffffffff8083169061255f908590620f424090612dd016565b60808401525b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b031663f615d5be8b8b88876000015160008960400151612bbf61257e565b8b608001518a6040518a63ffffffff1660e01b8152600401808a6001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b031681526020018781526020018681526020018581526020018481526020018381526020018263ffffffff1681526020019950505050505050505050600060405180830381600087803b158015612c5457600080fd5b505af1158015612c68573d6000803e3d6000fd5b505050505050505050806001019050612ae0565b6000806000612c908a8a8a8a8a8a8a612598565b9050612ca28187606001518a88613110565b6000612cb38b886060015188612116565b90506000612cce838960200151611f4c90919063ffffffff16565b905063ffffffff8216620f424014612cfd57612cfa620f424061255f8363ffffffff86811690612dd016565b90505b612d1a612d138960800151848b60a00151613241565b8290611f4c565b9050612d28818b8b8a613281565b9b909a5098505050505050505050565b6000818310156125915781610bff565b6000610bff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613336565b6000610bff83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506133cd565b5490565b600082612ddf57506000610856565b82820282848281612dec57fe5b0414610bff5760405162461bcd60e51b8152600401808060200182810382526021815260200180613ae16021913960400191505060405180910390fd5b6060810151516000906001600160a01b0384811691161415612e515750608081015151610856565b506080015160200151919050565b600080612e6a6139aa565b612e7385611d45565b905060005b60028110156126be576000612ea4888885606001518560028110612e9857fe5b6020020151868a611fd9565b9050612eb08482611f4c565b935050600101612e78565b60008181526001830160205260408120548015612f775783546000198083019190810190600090879083908110612eee57fe5b9060005260206000200154905080876000018481548110612f0b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612f3b57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610856565b6000915050610856565b82516000908190815b8181108015612f995750600086115b15612fec576000612fbf89898481518110612fb057fe5b60200260200101518989613432565b9050612fcb8482611f4c565b93506000198714612fe357612fe08782612d48565b96505b50600101612f8a565b50909695505050505050565b80158061307e575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561305057600080fd5b505afa158015613064573d6000803e3d6000fd5b505050506040513d602081101561307a57600080fd5b5051155b6130b95760405162461bcd60e51b8152600401808060200182810382526036815260200180613b2c6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261310b9084906134b1565b505050565b600061311a61257e565b8251909150811080613130575081602001518410155b1561318e578415613188576040805162461bcd60e51b815260206004820152601860248201527f4552525f424153455f5245574152445f544f4f5f484947480000000000000000604482015290519081900360640190fd5b50611857565b600061319e858460000151612d38565b905060006131b0838560200151612582565b90506131ed620f424061255f6131c68888612e29565b63ffffffff166125596131e28787612d4890919063ffffffff16565b60408a015190612dd0565b87111561107c576040805162461bcd60e51b815260206004820152601d60248201527f4552525f424153455f5245574152445f524154455f544f4f5f48494748000000604482015290519081900360640190fd5b60008061325a8463ffffffff168463ffffffff16612d38565b9050620f42408114156132705784915050610bff565b6110ae620f424061255f8784612dd0565b60408201516000906132df906132d9620f424061255f8181621e84806125596132aa8d8c612e29565b63ffffffff166125596132ce8d600001518e60200151612d4890919063ffffffff16565b60408e015190612dd0565b90612d48565b9050808511156107ab576040805162461bcd60e51b815260206004820152601860248201527f4552525f5245574152445f524154455f544f4f5f484947480000000000000000604482015290519081900360640190fd5b600081848411156133c55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561338a578181015183820152602001613372565b50505050905090810190601f1680156133b75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361341c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561338a578181015183820152602001613372565b50600083858161342857fe5b0495945050505050565b60008061343d6139aa565b61344686611d45565b905060005b60028110801561345b5750600086115b15612fec57600061348489898560600151856002811061347757fe5b6020020151868b8b613562565b90506134908482611f4c565b935060001987146134a8576134a58782612d48565b96505b5060010161344b565b6060613506826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166138189092919063ffffffff16565b80519091501561310b5780806020019051602081101561352557600080fd5b505161310b5760405162461bcd60e51b815260040180806020018281038252602a815260200180613b02602a913960400191505060405180910390fd5b600061356c613a20565b6135746139e4565b613580898989876113b8565b915091506000806135968b8b8b87878d8c612c7c565b60006080860181905260a08601529092509050600019871461363257868211156136255763ffffffff8116620f424014156135df576135d58288612d48565b608084015261360f565b6136098163ffffffff1661255f620f424063ffffffff166125598b87612d4890919063ffffffff16565b60808401525b63ffffffff811660a08401526000969150613632565b61362f8783612d48565b96505b7f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b031663f0d0f9aa8b8b87600001518860200151613684888b60400151611f4c90919063ffffffff16565b6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b1580156136e857600080fd5b505af11580156136fc573d6000803e3d6000fd5b505050507f000000000000000000000000891aff26593da95e574e3f62619dad6624fb56936001600160a01b031663f615d5be8c8c8c87600001516000613750898b60400151611f4c90919063ffffffff16565b61375861257e565b8b608001518c60a001516040518a63ffffffff1660e01b8152600401808a6001600160a01b03168152602001896001600160a01b03168152602001886001600160a01b031681526020018781526020018681526020018581526020018481526020018381526020018263ffffffff1681526020019950505050505050505050600060405180830381600087803b1580156137f157600080fd5b505af1158015613805573d6000803e3d6000fd5b50939d9c50505050505050505050505050565b606061285384846000858561382c8561393e565b61387d576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106138bc5780518252601f19909201916020918201910161389d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461391e576040519150601f19603f3d011682016040523d82523d6000602084013e613923565b606091505b5091509150613933828286613944565b979650505050505050565b3b151590565b60608315613953575081610bff565b8251156139635782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561338a578181015183820152602001613372565b6040518060a001604052806000815260200160008152602001600081526020016139d2613a41565b81526020016139df613a41565b905290565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600063ffffffff1681525090565b60405180606001604052806000815260200160008152602001600081525090565b6040518060400160405280600290602082028036833750919291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209cbc6c5ad2eeea727b98b4415db99692339e6cba4f4c4a798fb999c632d28ac964736f6c634300060c0033

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

000000000000000000000000891aff26593da95e574e3f62619dad6624fb5693000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc244000000000000000000000000f8a2fb650e25a26ce839d64be8a0abbcb0b87b3200000000000000000000000052ae12abe5d8bd778bd5397f99ca900624cfadd4

-----Decoded View---------------
Arg [0] : store (address): 0x891AfF26593Da95e574E3f62619dAD6624FB5693
Arg [1] : networkTokenGovernance (address): 0xa489C2b5b36835A327851Ab917A80562B5AFC244
Arg [2] : lastRemoveTimes (address): 0xF8a2FB650e25a26CE839D64bE8a0aBbCb0b87B32
Arg [3] : registry (address): 0x52Ae12ABe5D8BD778BD5397F99cA900624CfADD4

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000891aff26593da95e574e3f62619dad6624fb5693
Arg [1] : 000000000000000000000000a489c2b5b36835a327851ab917a80562b5afc244
Arg [2] : 000000000000000000000000f8a2fb650e25a26ce839d64be8a0abbcb0b87b32
Arg [3] : 00000000000000000000000052ae12abe5d8bd778bd5397f99ca900624cfadd4


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.