ETH Price: $2,785.49 (+5.52%)

Contract

0x9723DBC48140Ee67B88254A16B3c54aD193229c7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Emergency Withdr...148124412022-05-20 17:41:271001 days ago1653068487IN
0x9723DBC4...D193229c7
0 ETH0.0018779747.1768959
Emergency Withdr...148124402022-05-20 17:41:191001 days ago1653068479IN
0x9723DBC4...D193229c7
0 ETH0.0027741149.18474246
Transfer Ownersh...148123922022-05-20 17:28:421001 days ago1653067722IN
0x9723DBC4...D193229c7
0 ETH0.0009721633.47333467
Unstake144968912022-03-31 23:27:321050 days ago1648769252IN
0x9723DBC4...D193229c7
0 ETH0.0028863739.47228575
Claim144968842022-03-31 23:26:221050 days ago1648769182IN
0x9723DBC4...D193229c7
0 ETH0.003573747.14090214
Claim144966762022-03-31 22:40:341050 days ago1648766434IN
0x9723DBC4...D193229c7
0 ETH0.0036797648.54000956
Unstake144928952022-03-31 8:35:051051 days ago1648715705IN
0x9723DBC4...D193229c7
0 ETH0.0030781140.6426768
Unstake144919512022-03-31 5:01:331051 days ago1648702893IN
0x9723DBC4...D193229c7
0 ETH0.0027093937.0519987
Claim144919502022-03-31 5:01:191051 days ago1648702879IN
0x9723DBC4...D193229c7
0 ETH0.002444533
Unstake144905422022-03-30 23:44:401051 days ago1648683880IN
0x9723DBC4...D193229c7
0 ETH0.0029295540.06288904
Unstake144901482022-03-30 22:15:311051 days ago1648678531IN
0x9723DBC4...D193229c7
0 ETH0.003963754.69218272
Unstake144899302022-03-30 21:23:581051 days ago1648675438IN
0x9723DBC4...D193229c7
0 ETH0.0036594449.07862376
Unstake144861622022-03-30 7:13:381052 days ago1648624418IN
0x9723DBC4...D193229c7
0 ETH0.0025672635.10834055
Unstake144819952022-03-29 15:49:361053 days ago1648568976IN
0x9723DBC4...D193229c7
0 ETH0.0038031752.00996756
Unstake144773722022-03-28 22:29:061053 days ago1648506546IN
0x9723DBC4...D193229c7
0 ETH0.0035913849.11368985
Unstake144744232022-03-28 11:29:511054 days ago1648466991IN
0x9723DBC4...D193229c7
0 ETH0.0018799825.70956764
Claim144741432022-03-28 10:28:281054 days ago1648463308IN
0x9723DBC4...D193229c7
0 ETH0.0019543825.78043363
Unstake144739642022-03-28 9:44:281054 days ago1648460668IN
0x9723DBC4...D193229c7
0 ETH0.0018810925.72466569
Stake144720702022-03-28 2:41:241054 days ago1648435284IN
0x9723DBC4...D193229c7
0 ETH0.0036970626.74786988
Claim144686182022-03-27 13:52:571055 days ago1648389177IN
0x9723DBC4...D193229c7
0 ETH0.001249716.87062747
Stake144686122022-03-27 13:52:151055 days ago1648389135IN
0x9723DBC4...D193229c7
0 ETH0.0022880920.83055932
Unstake144685632022-03-27 13:43:281055 days ago1648388608IN
0x9723DBC4...D193229c7
0 ETH0.0015674321.62787126
Claim144676792022-03-27 10:28:111055 days ago1648376891IN
0x9723DBC4...D193229c7
0 ETH0.0017281822.79656366
Stake144666802022-03-27 6:41:101055 days ago1648363270IN
0x9723DBC4...D193229c7
0 ETH0.0021990220.01531641
Claim144666632022-03-27 6:37:131055 days ago1648363033IN
0x9723DBC4...D193229c7
0 ETH0.0013683218.04965045
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:
RiddlerStaking

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: Staking.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

contract RiddlerStaking is Ownable {
    using SafeMath for uint256;

    uint256 public totalStaked;
    IERC20 public stakingToken;
    IERC20 public rewardToken;
    uint256 public apr;

    bool public stakingEnabled = false;
    
    struct Staker {
        address staker;
        uint256 start;
        uint256 staked;
        uint256 earned;
    }

    mapping(address => Staker) private _stakers;

    constructor (IERC20 _stakingToken, IERC20 _rewardToken, uint256 _startAPR) {
        stakingToken = _stakingToken;
        rewardToken = _rewardToken;
        apr = _startAPR;
    }

    function isStaking(address stakerAddr) public view returns (bool) {
        return _stakers[stakerAddr].staker == stakerAddr;
    }

    function userStaked(address staker) public view returns (uint256) {
        return _stakers[staker].staked;
    }

    function userEarnedTotal(address staker) public view returns (uint256) {
        uint256 currentlyEarned = _userEarned(staker);
        uint256 previouslyEarned = _stakers[msg.sender].earned;

        if (previouslyEarned > 0) return currentlyEarned.add(previouslyEarned);
        return currentlyEarned;
    }

    function _userEarned(address staker) private view returns (uint256) {
        require(isStaking(staker), "User is not staking.");

        uint256 staked = userStaked(staker);
        uint256 stakersStartInSeconds = _stakers[staker].start.div(1 seconds);
        uint256 blockTimestampInSeconds = block.timestamp.div(1 seconds);
        uint256 secondsStaked = blockTimestampInSeconds.sub(stakersStartInSeconds);


        uint256 decAPR = apr.div(100);
        uint256 rewardPerSec = staked.mul(decAPR).div(365).div(24).div(60).div(60);
        uint256 earned = rewardPerSec.mul(secondsStaked).div(10**18);

        return earned;
    }
 
    function stake(uint256 stakeAmount) external {
        require(stakingEnabled, "Staking is not enabled");

        // Check user is registered as staker
        if (isStaking(msg.sender)) {
            _stakers[msg.sender].staked += stakeAmount;
            _stakers[msg.sender].earned += _userEarned(msg.sender);
            _stakers[msg.sender].start = block.timestamp;
        } else {
            _stakers[msg.sender] = Staker(msg.sender, block.timestamp, stakeAmount, 0);
        }

        totalStaked += stakeAmount;
        stakingToken.transferFrom(msg.sender, address(this), stakeAmount);
    }
    
    function claim() external {
        require(stakingEnabled, "Staking is not enabled");
        require(isStaking(msg.sender), "You are not staking!?");
        uint256 reward = userEarnedTotal(msg.sender);
        stakingToken.transfer(msg.sender, reward);

        _stakers[msg.sender].start = block.timestamp;
        _stakers[msg.sender].earned = 0;
    }

    function unstake() external {
        require(stakingEnabled, "Staking is not enabled");
        require(isStaking(msg.sender), "You are not staking!?");

        uint256 reward = userEarnedTotal(msg.sender);
        stakingToken.transfer(msg.sender, _stakers[msg.sender].staked.add(reward));

        totalStaked -= _stakers[msg.sender].staked;

        delete _stakers[msg.sender];
    }
    
    function emergencyWithdrawToken(IERC20 token) external onlyOwner() {
        token.transfer(msg.sender, token.balanceOf(address(this)));
    }

    function emergencyWithdrawTokenAmount(IERC20 token, uint256 amount) external onlyOwner() {
        token.transfer(msg.sender, amount);
    }

    function setState(bool onoff) external onlyOwner() {
        stakingEnabled = onoff;
    }

    receive() external payable {}
}

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

pragma solidity ^0.8.0;

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

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

File 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

    /**
     * @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 4 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 5 of 5: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the 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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_stakingToken","type":"address"},{"internalType":"contract IERC20","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_startAPR","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"apr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"emergencyWithdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyWithdrawTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakerAddr","type":"address"}],"name":"isStaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakeAmount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"userEarnedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"userStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162001f8a38038062001f8a8339818101604052810190620000529190620001fe565b62000072620000666200010460201b60201c565b6200010c60201b60201c565b82600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600481905550505050620002e5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620001e181620002b1565b92915050565b600081519050620001f881620002cb565b92915050565b6000806000606084860312156200021a5762000219620002ac565b5b60006200022a86828701620001d0565b93505060206200023d86828701620001d0565b92505060406200025086828701620001e7565b9150509250925092565b6000620002678262000282565b9050919050565b60006200027b826200025a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600080fd5b620002bc816200026e565b8114620002c857600080fd5b50565b620002d681620002a2565b8114620002e257600080fd5b50565b611c9580620002f56000396000f3fe6080604052600436106101025760003560e01c80637448a46b11610095578063a7ff0e8611610064578063a7ff0e86146102f6578063ac9f02221461031f578063acc3a93914610348578063f2fde38b14610385578063f7c618c1146103ae57610109565b80637448a46b1461023a578063817b1cd2146102775780638da5cb5b146102a2578063a694fc3a146102cd57610109565b806357ded9c9116100d157806357ded9c9146101905780636f49712b146101bb578063715018a6146101f857806372f702f31461020f57610109565b80631af032031461010e5780631cfff51b146101375780632def6620146101625780634e71d92d1461017957610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610135600480360381019061013091906115d9565b6103d9565b005b34801561014357600080fd5b5061014c61056e565b6040516101599190611806565b60405180910390f35b34801561016e57600080fd5b50610177610581565b005b34801561018557600080fd5b5061018e610808565b005b34801561019c57600080fd5b506101a56109ee565b6040516101b291906118dc565b60405180910390f35b3480156101c757600080fd5b506101e260048036038101906101dd9190611552565b6109f4565b6040516101ef9190611806565b60405180910390f35b34801561020457600080fd5b5061020d610a8e565b005b34801561021b57600080fd5b50610224610b16565b6040516102319190611821565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611552565b610b3c565b60405161026e91906118dc565b60405180910390f35b34801561028357600080fd5b5061028c610bc1565b60405161029991906118dc565b60405180910390f35b3480156102ae57600080fd5b506102b7610bc7565b6040516102c4919061178b565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190611646565b610bf0565b005b34801561030257600080fd5b5061031d60048036038101906103189190611606565b610f01565b005b34801561032b57600080fd5b506103466004803603810190610341919061157f565b61100f565b005b34801561035457600080fd5b5061036f600480360381019061036a9190611552565b6110a8565b60405161037c91906118dc565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190611552565b6110f4565b005b3480156103ba57600080fd5b506103c36111ec565b6040516103d09190611821565b60405180910390f35b6103e1611212565b73ffffffffffffffffffffffffffffffffffffffff166103ff610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614610455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044c9061187c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016104ab919061178b565b60206040518083038186803b1580156104c357600080fd5b505afa1580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190611673565b6040518363ffffffff1660e01b81526004016105189291906117dd565b602060405180830381600087803b15801561053257600080fd5b505af1158015610546573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056a91906115ac565b5050565b600560009054906101000a900460ff1681565b600560009054906101000a900460ff166105d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c7906118bc565b60405180910390fd5b6105d9336109f4565b610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f9061189c565b60405180910390fd5b600061062333610b3c565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336106b984600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461121a90919063ffffffff16565b6040518363ffffffff1660e01b81526004016106d69291906117dd565b602060405180830381600087803b1580156106f057600080fd5b505af1158015610704573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072891906115ac565b50600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546001600082825461077d91906119e9565b92505081905550600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000905560028201600090556003820160009055505050565b600560009054906101000a900460ff16610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906118bc565b60405180910390fd5b610860336109f4565b61089f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108969061189c565b60405180910390fd5b60006108aa33610b3c565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109099291906117dd565b602060405180830381600087803b15801561092357600080fd5b505af1158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b91906115ac565b5042600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003018190555050565b60045481565b60008173ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b610a96611212565b73ffffffffffffffffffffffffffffffffffffffff16610ab4610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b019061187c565b60405180910390fd5b610b146000611230565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b48836112f4565b90506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490506000811115610bb657610bad818361121a90919063ffffffff16565b92505050610bbc565b81925050505b919050565b60015481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900460ff16610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c36906118bc565b60405180910390fd5b610c48336109f4565b15610d535780600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254610c9f9190611908565b92505081905550610caf336112f4565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003016000828254610d009190611908565b9250508190555042600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550610e33565b60405180608001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020014281526020018281526020016000815250600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301559050505b8060016000828254610e459190611908565b92505081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401610eab939291906117a6565b602060405180830381600087803b158015610ec557600080fd5b505af1158015610ed9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efd91906115ac565b5050565b610f09611212565b73ffffffffffffffffffffffffffffffffffffffff16610f27610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061187c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610fb89291906117dd565b602060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100a91906115ac565b505050565b611017611212565b73ffffffffffffffffffffffffffffffffffffffff16611035610bc7565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110829061187c565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b6110fc611212565b73ffffffffffffffffffffffffffffffffffffffff1661111a610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111679061187c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d79061185c565b60405180910390fd5b6111e981611230565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600081836112289190611908565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006112ff826109f4565b61133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061183c565b60405180910390fd5b6000611349836110a8565b905060006113a36001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461149290919063ffffffff16565b905060006113bb60014261149290919063ffffffff16565b905060006113d283836114a890919063ffffffff16565b905060006113ec606460045461149290919063ffffffff16565b90506000611450603c611442603c611434601861142661016d6114188a8f6114be90919063ffffffff16565b61149290919063ffffffff16565b61149290919063ffffffff16565b61149290919063ffffffff16565b61149290919063ffffffff16565b90506000611481670de0b6b3a764000061147386856114be90919063ffffffff16565b61149290919063ffffffff16565b905080975050505050505050919050565b600081836114a0919061195e565b905092915050565b600081836114b691906119e9565b905092915050565b600081836114cc919061198f565b905092915050565b6000813590506114e381611c03565b92915050565b6000813590506114f881611c1a565b92915050565b60008151905061150d81611c1a565b92915050565b60008135905061152281611c31565b92915050565b60008135905061153781611c48565b92915050565b60008151905061154c81611c48565b92915050565b60006020828403121561156857611567611b0b565b5b6000611576848285016114d4565b91505092915050565b60006020828403121561159557611594611b0b565b5b60006115a3848285016114e9565b91505092915050565b6000602082840312156115c2576115c1611b0b565b5b60006115d0848285016114fe565b91505092915050565b6000602082840312156115ef576115ee611b0b565b5b60006115fd84828501611513565b91505092915050565b6000806040838503121561161d5761161c611b0b565b5b600061162b85828601611513565b925050602061163c85828601611528565b9150509250929050565b60006020828403121561165c5761165b611b0b565b5b600061166a84828501611528565b91505092915050565b60006020828403121561168957611688611b0b565b5b60006116978482850161153d565b91505092915050565b6116a981611a1d565b82525050565b6116b881611a2f565b82525050565b6116c781611a77565b82525050565b60006116da6014836118f7565b91506116e582611b10565b602082019050919050565b60006116fd6026836118f7565b915061170882611b39565b604082019050919050565b60006117206020836118f7565b915061172b82611b88565b602082019050919050565b60006117436015836118f7565b915061174e82611bb1565b602082019050919050565b60006117666016836118f7565b915061177182611bda565b602082019050919050565b61178581611a6d565b82525050565b60006020820190506117a060008301846116a0565b92915050565b60006060820190506117bb60008301866116a0565b6117c860208301856116a0565b6117d5604083018461177c565b949350505050565b60006040820190506117f260008301856116a0565b6117ff602083018461177c565b9392505050565b600060208201905061181b60008301846116af565b92915050565b600060208201905061183660008301846116be565b92915050565b60006020820190508181036000830152611855816116cd565b9050919050565b60006020820190508181036000830152611875816116f0565b9050919050565b6000602082019050818103600083015261189581611713565b9050919050565b600060208201905081810360008301526118b581611736565b9050919050565b600060208201905081810360008301526118d581611759565b9050919050565b60006020820190506118f1600083018461177c565b92915050565b600082825260208201905092915050565b600061191382611a6d565b915061191e83611a6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561195357611952611aad565b5b828201905092915050565b600061196982611a6d565b915061197483611a6d565b92508261198457611983611adc565b5b828204905092915050565b600061199a82611a6d565b91506119a583611a6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119de576119dd611aad565b5b828202905092915050565b60006119f482611a6d565b91506119ff83611a6d565b925082821015611a1257611a11611aad565b5b828203905092915050565b6000611a2882611a4d565b9050919050565b60008115159050919050565b6000611a4682611a1d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611a8282611a89565b9050919050565b6000611a9482611a9b565b9050919050565b6000611aa682611a4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b7f55736572206973206e6f74207374616b696e672e000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520617265206e6f74207374616b696e67213f0000000000000000000000600082015250565b7f5374616b696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b611c0c81611a1d565b8114611c1757600080fd5b50565b611c2381611a2f565b8114611c2e57600080fd5b50565b611c3a81611a3b565b8114611c4557600080fd5b50565b611c5181611a6d565b8114611c5c57600080fd5b5056fea2646970667358221220ab61de008608ce6d5e23a0c0b8540066e56286b73afc04354eb400f809c7279f64736f6c6343000807003300000000000000000000000020de4476ff4f181d6ae07d016cc9bc84cf46af2c00000000000000000000000020de4476ff4f181d6ae07d016cc9bc84cf46af2c000000000000000000000000000000000000000000000003cb71f51fc5580000

Deployed Bytecode

0x6080604052600436106101025760003560e01c80637448a46b11610095578063a7ff0e8611610064578063a7ff0e86146102f6578063ac9f02221461031f578063acc3a93914610348578063f2fde38b14610385578063f7c618c1146103ae57610109565b80637448a46b1461023a578063817b1cd2146102775780638da5cb5b146102a2578063a694fc3a146102cd57610109565b806357ded9c9116100d157806357ded9c9146101905780636f49712b146101bb578063715018a6146101f857806372f702f31461020f57610109565b80631af032031461010e5780631cfff51b146101375780632def6620146101625780634e71d92d1461017957610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610135600480360381019061013091906115d9565b6103d9565b005b34801561014357600080fd5b5061014c61056e565b6040516101599190611806565b60405180910390f35b34801561016e57600080fd5b50610177610581565b005b34801561018557600080fd5b5061018e610808565b005b34801561019c57600080fd5b506101a56109ee565b6040516101b291906118dc565b60405180910390f35b3480156101c757600080fd5b506101e260048036038101906101dd9190611552565b6109f4565b6040516101ef9190611806565b60405180910390f35b34801561020457600080fd5b5061020d610a8e565b005b34801561021b57600080fd5b50610224610b16565b6040516102319190611821565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611552565b610b3c565b60405161026e91906118dc565b60405180910390f35b34801561028357600080fd5b5061028c610bc1565b60405161029991906118dc565b60405180910390f35b3480156102ae57600080fd5b506102b7610bc7565b6040516102c4919061178b565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190611646565b610bf0565b005b34801561030257600080fd5b5061031d60048036038101906103189190611606565b610f01565b005b34801561032b57600080fd5b506103466004803603810190610341919061157f565b61100f565b005b34801561035457600080fd5b5061036f600480360381019061036a9190611552565b6110a8565b60405161037c91906118dc565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190611552565b6110f4565b005b3480156103ba57600080fd5b506103c36111ec565b6040516103d09190611821565b60405180910390f35b6103e1611212565b73ffffffffffffffffffffffffffffffffffffffff166103ff610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614610455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044c9061187c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016104ab919061178b565b60206040518083038186803b1580156104c357600080fd5b505afa1580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190611673565b6040518363ffffffff1660e01b81526004016105189291906117dd565b602060405180830381600087803b15801561053257600080fd5b505af1158015610546573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056a91906115ac565b5050565b600560009054906101000a900460ff1681565b600560009054906101000a900460ff166105d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c7906118bc565b60405180910390fd5b6105d9336109f4565b610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f9061189c565b60405180910390fd5b600061062333610b3c565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336106b984600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461121a90919063ffffffff16565b6040518363ffffffff1660e01b81526004016106d69291906117dd565b602060405180830381600087803b1580156106f057600080fd5b505af1158015610704573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072891906115ac565b50600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546001600082825461077d91906119e9565b92505081905550600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000905560028201600090556003820160009055505050565b600560009054906101000a900460ff16610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906118bc565b60405180910390fd5b610860336109f4565b61089f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108969061189c565b60405180910390fd5b60006108aa33610b3c565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109099291906117dd565b602060405180830381600087803b15801561092357600080fd5b505af1158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b91906115ac565b5042600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003018190555050565b60045481565b60008173ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b610a96611212565b73ffffffffffffffffffffffffffffffffffffffff16610ab4610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b019061187c565b60405180910390fd5b610b146000611230565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b48836112f4565b90506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490506000811115610bb657610bad818361121a90919063ffffffff16565b92505050610bbc565b81925050505b919050565b60015481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900460ff16610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c36906118bc565b60405180910390fd5b610c48336109f4565b15610d535780600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254610c9f9190611908565b92505081905550610caf336112f4565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003016000828254610d009190611908565b9250508190555042600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550610e33565b60405180608001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020014281526020018281526020016000815250600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301559050505b8060016000828254610e459190611908565b92505081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401610eab939291906117a6565b602060405180830381600087803b158015610ec557600080fd5b505af1158015610ed9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efd91906115ac565b5050565b610f09611212565b73ffffffffffffffffffffffffffffffffffffffff16610f27610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061187c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610fb89291906117dd565b602060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100a91906115ac565b505050565b611017611212565b73ffffffffffffffffffffffffffffffffffffffff16611035610bc7565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110829061187c565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b6110fc611212565b73ffffffffffffffffffffffffffffffffffffffff1661111a610bc7565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111679061187c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d79061185c565b60405180910390fd5b6111e981611230565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600081836112289190611908565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006112ff826109f4565b61133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061183c565b60405180910390fd5b6000611349836110a8565b905060006113a36001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461149290919063ffffffff16565b905060006113bb60014261149290919063ffffffff16565b905060006113d283836114a890919063ffffffff16565b905060006113ec606460045461149290919063ffffffff16565b90506000611450603c611442603c611434601861142661016d6114188a8f6114be90919063ffffffff16565b61149290919063ffffffff16565b61149290919063ffffffff16565b61149290919063ffffffff16565b61149290919063ffffffff16565b90506000611481670de0b6b3a764000061147386856114be90919063ffffffff16565b61149290919063ffffffff16565b905080975050505050505050919050565b600081836114a0919061195e565b905092915050565b600081836114b691906119e9565b905092915050565b600081836114cc919061198f565b905092915050565b6000813590506114e381611c03565b92915050565b6000813590506114f881611c1a565b92915050565b60008151905061150d81611c1a565b92915050565b60008135905061152281611c31565b92915050565b60008135905061153781611c48565b92915050565b60008151905061154c81611c48565b92915050565b60006020828403121561156857611567611b0b565b5b6000611576848285016114d4565b91505092915050565b60006020828403121561159557611594611b0b565b5b60006115a3848285016114e9565b91505092915050565b6000602082840312156115c2576115c1611b0b565b5b60006115d0848285016114fe565b91505092915050565b6000602082840312156115ef576115ee611b0b565b5b60006115fd84828501611513565b91505092915050565b6000806040838503121561161d5761161c611b0b565b5b600061162b85828601611513565b925050602061163c85828601611528565b9150509250929050565b60006020828403121561165c5761165b611b0b565b5b600061166a84828501611528565b91505092915050565b60006020828403121561168957611688611b0b565b5b60006116978482850161153d565b91505092915050565b6116a981611a1d565b82525050565b6116b881611a2f565b82525050565b6116c781611a77565b82525050565b60006116da6014836118f7565b91506116e582611b10565b602082019050919050565b60006116fd6026836118f7565b915061170882611b39565b604082019050919050565b60006117206020836118f7565b915061172b82611b88565b602082019050919050565b60006117436015836118f7565b915061174e82611bb1565b602082019050919050565b60006117666016836118f7565b915061177182611bda565b602082019050919050565b61178581611a6d565b82525050565b60006020820190506117a060008301846116a0565b92915050565b60006060820190506117bb60008301866116a0565b6117c860208301856116a0565b6117d5604083018461177c565b949350505050565b60006040820190506117f260008301856116a0565b6117ff602083018461177c565b9392505050565b600060208201905061181b60008301846116af565b92915050565b600060208201905061183660008301846116be565b92915050565b60006020820190508181036000830152611855816116cd565b9050919050565b60006020820190508181036000830152611875816116f0565b9050919050565b6000602082019050818103600083015261189581611713565b9050919050565b600060208201905081810360008301526118b581611736565b9050919050565b600060208201905081810360008301526118d581611759565b9050919050565b60006020820190506118f1600083018461177c565b92915050565b600082825260208201905092915050565b600061191382611a6d565b915061191e83611a6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561195357611952611aad565b5b828201905092915050565b600061196982611a6d565b915061197483611a6d565b92508261198457611983611adc565b5b828204905092915050565b600061199a82611a6d565b91506119a583611a6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119de576119dd611aad565b5b828202905092915050565b60006119f482611a6d565b91506119ff83611a6d565b925082821015611a1257611a11611aad565b5b828203905092915050565b6000611a2882611a4d565b9050919050565b60008115159050919050565b6000611a4682611a1d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611a8282611a89565b9050919050565b6000611a9482611a9b565b9050919050565b6000611aa682611a4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600080fd5b7f55736572206973206e6f74207374616b696e672e000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520617265206e6f74207374616b696e67213f0000000000000000000000600082015250565b7f5374616b696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b611c0c81611a1d565b8114611c1757600080fd5b50565b611c2381611a2f565b8114611c2e57600080fd5b50565b611c3a81611a3b565b8114611c4557600080fd5b50565b611c5181611a6d565b8114611c5c57600080fd5b5056fea2646970667358221220ab61de008608ce6d5e23a0c0b8540066e56286b73afc04354eb400f809c7279f64736f6c63430008070033

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

00000000000000000000000020de4476ff4f181d6ae07d016cc9bc84cf46af2c00000000000000000000000020de4476ff4f181d6ae07d016cc9bc84cf46af2c000000000000000000000000000000000000000000000003cb71f51fc5580000

-----Decoded View---------------
Arg [0] : _stakingToken (address): 0x20de4476fF4F181d6Ae07D016cC9bc84cF46af2c
Arg [1] : _rewardToken (address): 0x20de4476fF4F181d6Ae07D016cC9bc84cF46af2c
Arg [2] : _startAPR (uint256): 70000000000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000020de4476ff4f181d6ae07d016cc9bc84cf46af2c
Arg [1] : 00000000000000000000000020de4476ff4f181d6ae07d016cc9bc84cf46af2c
Arg [2] : 000000000000000000000000000000000000000000000003cb71f51fc5580000


Deployed Bytecode Sourcemap

139:3720:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3425:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;341:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3014:399;;;;;;;;;;;;;:::i;:::-;;2640:366;;;;;;;;;;;;;:::i;:::-;;314:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;762:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:2;;;;;;;;;;;;;:::i;:::-;;249:26:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1026:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;216:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2010:618:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3577:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3727:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;903:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;282:25:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3425:144;1252:12:2;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3503:5:4::1;:14;;;3518:10;3530:5;:15;;;3554:4;3530:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3503:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3425:144:::0;:::o;341:34::-;;;;;;;;;;;;;:::o;3014:399::-;3061:14;;;;;;;;;;;3053:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3121:21;3131:10;3121:9;:21::i;:::-;3113:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3181:14;3198:27;3214:10;3198:15;:27::i;:::-;3181:44;;3236:12;;;;;;;;;;;:21;;;3258:10;3270:39;3302:6;3270:8;:20;3279:10;3270:20;;;;;;;;;;;;;;;:27;;;:31;;:39;;;;:::i;:::-;3236:74;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3338:8;:20;3347:10;3338:20;;;;;;;;;;;;;;;:27;;;3323:11;;:42;;;;;;;:::i;:::-;;;;;;;;3385:8;:20;3394:10;3385:20;;;;;;;;;;;;;;;;3378:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3042:371;3014:399::o;2640:366::-;2685:14;;;;;;;;;;;2677:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;2745:21;2755:10;2745:9;:21::i;:::-;2737:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2803:14;2820:27;2836:10;2820:15;:27::i;:::-;2803:44;;2858:12;;;;;;;;;;;:21;;;2880:10;2892:6;2858:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2941:15;2912:8;:20;2921:10;2912:20;;;;;;;;;;;;;;;:26;;:44;;;;2997:1;2967:8;:20;2976:10;2967:20;;;;;;;;;;;;;;;:27;;:31;;;;2666:340;2640:366::o;314:18::-;;;;:::o;762:133::-;822:4;877:10;846:41;;:8;:20;855:10;846:20;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:41;;;839:48;;762:133;;;:::o;1661:101:2:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;249:26:4:-;;;;;;;;;;;;;:::o;1026:316::-;1088:7;1108:23;1134:19;1146:6;1134:11;:19::i;:::-;1108:45;;1164:24;1191:8;:20;1200:10;1191:20;;;;;;;;;;;;;;;:27;;;1164:54;;1254:1;1235:16;:20;1231:70;;;1264:37;1284:16;1264:15;:19;;:37;;;;:::i;:::-;1257:44;;;;;;1231:70;1319:15;1312:22;;;;1026:316;;;;:::o;216:26::-;;;;:::o;1029:85:2:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2010:618:4:-;2074:14;;;;;;;;;;;2066:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;2179:21;2189:10;2179:9;:21::i;:::-;2175:331;;;2248:11;2217:8;:20;2226:10;2217:20;;;;;;;;;;;;;;;:27;;;:42;;;;;;;:::i;:::-;;;;;;;;2305:23;2317:10;2305:11;:23::i;:::-;2274:8;:20;2283:10;2274:20;;;;;;;;;;;;;;;:27;;;:54;;;;;;;:::i;:::-;;;;;;;;2372:15;2343:8;:20;2352:10;2343:20;;;;;;;;;;;;;;;:26;;:44;;;;2175:331;;;2443:51;;;;;;;;2450:10;2443:51;;;;;;2462:15;2443:51;;;;2479:11;2443:51;;;;2492:1;2443:51;;;2420:8;:20;2429:10;2420:20;;;;;;;;;;;;;;;:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2175:331;2533:11;2518;;:26;;;;;;;:::i;:::-;;;;;;;;2555:12;;;;;;;;;;;:25;;;2581:10;2601:4;2608:11;2555:65;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2010:618;:::o;3577:142::-;1252:12:2;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3677:5:4::1;:14;;;3692:10;3704:6;3677:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3577:142:::0;;:::o;3727:92::-;1252:12:2;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3806:5:4::1;3789:14;;:22;;;;;;;;;;;;;;;;;;3727:92:::0;:::o;903:115::-;960:7;987:8;:16;996:6;987:16;;;;;;;;;;;;;;;:23;;;980:30;;903:115;;;:::o;1911:198:2:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;282:25:4:-;;;;;;;;;;;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;2741::3:-;2799:7;2829:1;2825;:5;;;;:::i;:::-;2818:12;;2741:96;;;;:::o;2263:187:2:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;1350:651:4:-;1409:7;1437:17;1447:6;1437:9;:17::i;:::-;1429:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;1492:14;1509:18;1520:6;1509:10;:18::i;:::-;1492:35;;1538:29;1570:37;1597:9;1570:8;:16;1579:6;1570:16;;;;;;;;;;;;;;;:22;;;:26;;:37;;;;:::i;:::-;1538:69;;1618:31;1652:30;1672:9;1652:15;:19;;:30;;;;:::i;:::-;1618:64;;1693:21;1717:50;1745:21;1717:23;:27;;:50;;;;:::i;:::-;1693:74;;1782:14;1799:12;1807:3;1799;;:7;;:12;;;;:::i;:::-;1782:29;;1822:20;1845:51;1893:2;1845:43;1885:2;1845:35;1877:2;1845:27;1868:3;1845:18;1856:6;1845;:10;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;:31;;:35;;;;:::i;:::-;:39;;:43;;;;:::i;:::-;:47;;:51;;;;:::i;:::-;1822:74;;1907:14;1924:43;1960:6;1924:31;1941:13;1924:12;:16;;:31;;;;:::i;:::-;:35;;:43;;;;:::i;:::-;1907:60;;1987:6;1980:13;;;;;;;;;1350:651;;;:::o;3836:96:3:-;3894:7;3924:1;3920;:5;;;;:::i;:::-;3913:12;;3836:96;;;;:::o;3108:::-;3166:7;3196:1;3192;:5;;;;:::i;:::-;3185:12;;3108:96;;;;:::o;3451:::-;3509:7;3539:1;3535;:5;;;;:::i;:::-;3528:12;;3451:96;;;;:::o;7:139:5:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:137::-;345:5;376:6;370:13;361:22;;392:30;416:5;392:30;:::i;:::-;291:137;;;;:::o;434:165::-;493:5;531:6;518:20;509:29;;547:46;587:5;547:46;:::i;:::-;434:165;;;;:::o;605:139::-;651:5;689:6;676:20;667:29;;705:33;732:5;705:33;:::i;:::-;605:139;;;;:::o;750:143::-;807:5;838:6;832:13;823:22;;854:33;881:5;854:33;:::i;:::-;750:143;;;;:::o;899:329::-;958:6;1007:2;995:9;986:7;982:23;978:32;975:119;;;1013:79;;:::i;:::-;975:119;1133:1;1158:53;1203:7;1194:6;1183:9;1179:22;1158:53;:::i;:::-;1148:63;;1104:117;899:329;;;;:::o;1234:323::-;1290:6;1339:2;1327:9;1318:7;1314:23;1310:32;1307:119;;;1345:79;;:::i;:::-;1307:119;1465:1;1490:50;1532:7;1523:6;1512:9;1508:22;1490:50;:::i;:::-;1480:60;;1436:114;1234:323;;;;:::o;1563:345::-;1630:6;1679:2;1667:9;1658:7;1654:23;1650:32;1647:119;;;1685:79;;:::i;:::-;1647:119;1805:1;1830:61;1883:7;1874:6;1863:9;1859:22;1830:61;:::i;:::-;1820:71;;1776:125;1563:345;;;;:::o;1914:355::-;1986:6;2035:2;2023:9;2014:7;2010:23;2006:32;2003:119;;;2041:79;;:::i;:::-;2003:119;2161:1;2186:66;2244:7;2235:6;2224:9;2220:22;2186:66;:::i;:::-;2176:76;;2132:130;1914:355;;;;:::o;2275:500::-;2356:6;2364;2413:2;2401:9;2392:7;2388:23;2384:32;2381:119;;;2419:79;;:::i;:::-;2381:119;2539:1;2564:66;2622:7;2613:6;2602:9;2598:22;2564:66;:::i;:::-;2554:76;;2510:130;2679:2;2705:53;2750:7;2741:6;2730:9;2726:22;2705:53;:::i;:::-;2695:63;;2650:118;2275:500;;;;;:::o;2781:329::-;2840:6;2889:2;2877:9;2868:7;2864:23;2860:32;2857:119;;;2895:79;;:::i;:::-;2857:119;3015:1;3040:53;3085:7;3076:6;3065:9;3061:22;3040:53;:::i;:::-;3030:63;;2986:117;2781:329;;;;:::o;3116:351::-;3186:6;3235:2;3223:9;3214:7;3210:23;3206:32;3203:119;;;3241:79;;:::i;:::-;3203:119;3361:1;3386:64;3442:7;3433:6;3422:9;3418:22;3386:64;:::i;:::-;3376:74;;3332:128;3116:351;;;;:::o;3473:118::-;3560:24;3578:5;3560:24;:::i;:::-;3555:3;3548:37;3473:118;;:::o;3597:109::-;3678:21;3693:5;3678:21;:::i;:::-;3673:3;3666:34;3597:109;;:::o;3712:157::-;3812:50;3856:5;3812:50;:::i;:::-;3807:3;3800:63;3712:157;;:::o;3875:366::-;4017:3;4038:67;4102:2;4097:3;4038:67;:::i;:::-;4031:74;;4114:93;4203:3;4114:93;:::i;:::-;4232:2;4227:3;4223:12;4216:19;;3875:366;;;:::o;4247:::-;4389:3;4410:67;4474:2;4469:3;4410:67;:::i;:::-;4403:74;;4486:93;4575:3;4486:93;:::i;:::-;4604:2;4599:3;4595:12;4588:19;;4247:366;;;:::o;4619:::-;4761:3;4782:67;4846:2;4841:3;4782:67;:::i;:::-;4775:74;;4858:93;4947:3;4858:93;:::i;:::-;4976:2;4971:3;4967:12;4960:19;;4619:366;;;:::o;4991:::-;5133:3;5154:67;5218:2;5213:3;5154:67;:::i;:::-;5147:74;;5230:93;5319:3;5230:93;:::i;:::-;5348:2;5343:3;5339:12;5332:19;;4991:366;;;:::o;5363:::-;5505:3;5526:67;5590:2;5585:3;5526:67;:::i;:::-;5519:74;;5602:93;5691:3;5602:93;:::i;:::-;5720:2;5715:3;5711:12;5704:19;;5363:366;;;:::o;5735:118::-;5822:24;5840:5;5822:24;:::i;:::-;5817:3;5810:37;5735:118;;:::o;5859:222::-;5952:4;5990:2;5979:9;5975:18;5967:26;;6003:71;6071:1;6060:9;6056:17;6047:6;6003:71;:::i;:::-;5859:222;;;;:::o;6087:442::-;6236:4;6274:2;6263:9;6259:18;6251:26;;6287:71;6355:1;6344:9;6340:17;6331:6;6287:71;:::i;:::-;6368:72;6436:2;6425:9;6421:18;6412:6;6368:72;:::i;:::-;6450;6518:2;6507:9;6503:18;6494:6;6450:72;:::i;:::-;6087:442;;;;;;:::o;6535:332::-;6656:4;6694:2;6683:9;6679:18;6671:26;;6707:71;6775:1;6764:9;6760:17;6751:6;6707:71;:::i;:::-;6788:72;6856:2;6845:9;6841:18;6832:6;6788:72;:::i;:::-;6535:332;;;;;:::o;6873:210::-;6960:4;6998:2;6987:9;6983:18;6975:26;;7011:65;7073:1;7062:9;7058:17;7049:6;7011:65;:::i;:::-;6873:210;;;;:::o;7089:248::-;7195:4;7233:2;7222:9;7218:18;7210:26;;7246:84;7327:1;7316:9;7312:17;7303:6;7246:84;:::i;:::-;7089:248;;;;:::o;7343:419::-;7509:4;7547:2;7536:9;7532:18;7524:26;;7596:9;7590:4;7586:20;7582:1;7571:9;7567:17;7560:47;7624:131;7750:4;7624:131;:::i;:::-;7616:139;;7343:419;;;:::o;7768:::-;7934:4;7972:2;7961:9;7957:18;7949:26;;8021:9;8015:4;8011:20;8007:1;7996:9;7992:17;7985:47;8049:131;8175:4;8049:131;:::i;:::-;8041:139;;7768:419;;;:::o;8193:::-;8359:4;8397:2;8386:9;8382:18;8374:26;;8446:9;8440:4;8436:20;8432:1;8421:9;8417:17;8410:47;8474:131;8600:4;8474:131;:::i;:::-;8466:139;;8193:419;;;:::o;8618:::-;8784:4;8822:2;8811:9;8807:18;8799:26;;8871:9;8865:4;8861:20;8857:1;8846:9;8842:17;8835:47;8899:131;9025:4;8899:131;:::i;:::-;8891:139;;8618:419;;;:::o;9043:::-;9209:4;9247:2;9236:9;9232:18;9224:26;;9296:9;9290:4;9286:20;9282:1;9271:9;9267:17;9260:47;9324:131;9450:4;9324:131;:::i;:::-;9316:139;;9043:419;;;:::o;9468:222::-;9561:4;9599:2;9588:9;9584:18;9576:26;;9612:71;9680:1;9669:9;9665:17;9656:6;9612:71;:::i;:::-;9468:222;;;;:::o;9777:169::-;9861:11;9895:6;9890:3;9883:19;9935:4;9930:3;9926:14;9911:29;;9777:169;;;;:::o;9952:305::-;9992:3;10011:20;10029:1;10011:20;:::i;:::-;10006:25;;10045:20;10063:1;10045:20;:::i;:::-;10040:25;;10199:1;10131:66;10127:74;10124:1;10121:81;10118:107;;;10205:18;;:::i;:::-;10118:107;10249:1;10246;10242:9;10235:16;;9952:305;;;;:::o;10263:185::-;10303:1;10320:20;10338:1;10320:20;:::i;:::-;10315:25;;10354:20;10372:1;10354:20;:::i;:::-;10349:25;;10393:1;10383:35;;10398:18;;:::i;:::-;10383:35;10440:1;10437;10433:9;10428:14;;10263:185;;;;:::o;10454:348::-;10494:7;10517:20;10535:1;10517:20;:::i;:::-;10512:25;;10551:20;10569:1;10551:20;:::i;:::-;10546:25;;10739:1;10671:66;10667:74;10664:1;10661:81;10656:1;10649:9;10642:17;10638:105;10635:131;;;10746:18;;:::i;:::-;10635:131;10794:1;10791;10787:9;10776:20;;10454:348;;;;:::o;10808:191::-;10848:4;10868:20;10886:1;10868:20;:::i;:::-;10863:25;;10902:20;10920:1;10902:20;:::i;:::-;10897:25;;10941:1;10938;10935:8;10932:34;;;10946:18;;:::i;:::-;10932:34;10991:1;10988;10984:9;10976:17;;10808:191;;;;:::o;11005:96::-;11042:7;11071:24;11089:5;11071:24;:::i;:::-;11060:35;;11005:96;;;:::o;11107:90::-;11141:7;11184:5;11177:13;11170:21;11159:32;;11107:90;;;:::o;11203:109::-;11253:7;11282:24;11300:5;11282:24;:::i;:::-;11271:35;;11203:109;;;:::o;11318:126::-;11355:7;11395:42;11388:5;11384:54;11373:65;;11318:126;;;:::o;11450:77::-;11487:7;11516:5;11505:16;;11450:77;;;:::o;11533:139::-;11596:9;11629:37;11660:5;11629:37;:::i;:::-;11616:50;;11533:139;;;:::o;11678:126::-;11728:9;11761:37;11792:5;11761:37;:::i;:::-;11748:50;;11678:126;;;:::o;11810:113::-;11860:9;11893:24;11911:5;11893:24;:::i;:::-;11880:37;;11810:113;;;:::o;11929:180::-;11977:77;11974:1;11967:88;12074:4;12071:1;12064:15;12098:4;12095:1;12088:15;12115:180;12163:77;12160:1;12153:88;12260:4;12257:1;12250:15;12284:4;12281:1;12274:15;12424:117;12533:1;12530;12523:12;12547:170;12687:22;12683:1;12675:6;12671:14;12664:46;12547:170;:::o;12723:225::-;12863:34;12859:1;12851:6;12847:14;12840:58;12932:8;12927:2;12919:6;12915:15;12908:33;12723:225;:::o;12954:182::-;13094:34;13090:1;13082:6;13078:14;13071:58;12954:182;:::o;13142:171::-;13282:23;13278:1;13270:6;13266:14;13259:47;13142:171;:::o;13319:172::-;13459:24;13455:1;13447:6;13443:14;13436:48;13319:172;:::o;13497:122::-;13570:24;13588:5;13570:24;:::i;:::-;13563:5;13560:35;13550:63;;13609:1;13606;13599:12;13550:63;13497:122;:::o;13625:116::-;13695:21;13710:5;13695:21;:::i;:::-;13688:5;13685:32;13675:60;;13731:1;13728;13721:12;13675:60;13625:116;:::o;13747:148::-;13833:37;13864:5;13833:37;:::i;:::-;13826:5;13823:48;13813:76;;13885:1;13882;13875:12;13813:76;13747:148;:::o;13901:122::-;13974:24;13992:5;13974:24;:::i;:::-;13967:5;13964:35;13954:63;;14013:1;14010;14003:12;13954:63;13901:122;:::o

Swarm Source

ipfs://ab61de008608ce6d5e23a0c0b8540066e56286b73afc04354eb400f809c7279f

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.