ETH Price: $3,337.34 (-0.35%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Emergency Withdr...130371222021-08-16 15:48:051233 days ago1629128885IN
0xB1B02d13...f80Bf02D8
0 ETH0.0033625957.98070808
Emergency Withdr...130349022021-08-16 7:24:151233 days ago1629098655IN
0xB1B02d13...f80Bf02D8
0 ETH0.0020936736.10095301
Emergency Withdr...130302482021-08-15 14:18:001234 days ago1629037080IN
0xB1B02d13...f80Bf02D8
0 ETH0.0018530331.95155232
Emergency Withdr...130249442021-08-14 18:39:081235 days ago1628966348IN
0xB1B02d13...f80Bf02D8
0 ETH0.0024736342.65248782
Emergency Withdr...130244412021-08-14 16:46:301235 days ago1628959590IN
0xB1B02d13...f80Bf02D8
0 ETH0.0028710649.50531212
Emergency Withdr...130221102021-08-14 8:13:551235 days ago1628928835IN
0xB1B02d13...f80Bf02D8
0 ETH0.0024302341.90424672
Emergency Withdr...130221072021-08-14 8:13:141235 days ago1628928794IN
0xB1B02d13...f80Bf02D8
0 ETH0.0025940544.72893781
Emergency Withdr...130218182021-08-14 7:05:591235 days ago1628924759IN
0xB1B02d13...f80Bf02D8
0 ETH0.0023368940.29474968
Emergency Withdr...130196152021-08-13 22:45:071236 days ago1628894707IN
0xB1B02d13...f80Bf02D8
0 ETH0.0040596570.00000134
Deposit LP Token...130182172021-08-13 17:35:411236 days ago1628876141IN
0xB1B02d13...f80Bf02D8
0 ETH0.0016251467.99202306
Deactivate130181662021-08-13 17:25:201236 days ago1628875520IN
0xB1B02d13...f80Bf02D8
0 ETH0.0045666174
Emergency Withdr...130181462021-08-13 17:20:381236 days ago1628875238IN
0xB1B02d13...f80Bf02D8
0 ETH0.0035937361.9663579
Pause130181082021-08-13 17:09:321236 days ago1628874572IN
0xB1B02d13...f80Bf02D8
0 ETH0.0013300651.06393037
Deposit LP Token...130181082021-08-13 17:09:321236 days ago1628874572IN
0xB1B02d13...f80Bf02D8
0 ETH0.00544351.06393037
Deposit LP Token...130180712021-08-13 17:01:331236 days ago1628874093IN
0xB1B02d13...f80Bf02D8
0 ETH0.0078855753.46226414
Deposit LP Token...130175312021-08-13 15:04:021236 days ago1628867042IN
0xB1B02d13...f80Bf02D8
0 ETH0.0075326251.06936365
Deposit LP Token...130172482021-08-13 14:00:081236 days ago1628863208IN
0xB1B02d13...f80Bf02D8
0 ETH0.0065234244.22724332
Deposit LP Token...130169302021-08-13 12:55:271236 days ago1628859327IN
0xB1B02d13...f80Bf02D8
0 ETH0.0031274538.20772865
Deposit LP Token...130169272021-08-13 12:55:161236 days ago1628859316IN
0xB1B02d13...f80Bf02D8
0 ETH0.0050612534.3140449
Deposit LP Token...130169092021-08-13 12:51:511236 days ago1628859111IN
0xB1B02d13...f80Bf02D8
0 ETH0.0056317438.18185927
Deposit LP Token...130166982021-08-13 12:01:431236 days ago1628856103IN
0xB1B02d13...f80Bf02D8
0 ETH0.0046900444
Deposit LP Token...130166742021-08-13 11:56:491236 days ago1628855809IN
0xB1B02d13...f80Bf02D8
0 ETH0.0051639635.01040963
Claim130166672021-08-13 11:55:331236 days ago1628855733IN
0xB1B02d13...f80Bf02D8
0 ETH0.005832742
Deposit LP Token...130166462021-08-13 11:50:331236 days ago1628855433IN
0xB1B02d13...f80Bf02D8
0 ETH0.0048795533.08215034
Deposit LP Token...130166132021-08-13 11:43:091236 days ago1628854989IN
0xB1B02d13...f80Bf02D8
0 ETH0.0042644628.91439568
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:
Farm

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: LP_STBU_farm.sol
pragma solidity ^0.6.0;

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

contract Farm is Context, Ownable {

    using SafeMath for uint;

    uint256 public roi;
    uint256 private percentage;
    uint256 public startBlock;
    uint256 public endBlock;
    uint256 public totalBlocks;
    bool active;

    IERC20 public LPtoken;
    IERC20 public STBU;

    mapping (address => uint256) public balance;

    struct stakeHolder {
        uint256 _roi;
        uint256 share;
        uint256 calcBlock;
        uint256 availableButNotClaimed;
        uint256 totalClaimed;
    }

    uint256 public defaultStakePerBlock;

    mapping(address => stakeHolder) public holders;

    uint256 public rewardAllocation;

    event LogClaim(address, uint256);

    constructor(address _LP, address _STBU) public {
        LPtoken = IERC20(_LP);
        STBU = IERC20(_STBU);
        roi = 10**8;
        percentage = 10**8;
        uint256 stake = 10**18;
        defaultStakePerBlock = stake.mul(220).div(100);
        totalBlocks = 2296215;
    }

    /**
     * @dev Throws if contract is not active.
     */
    modifier isActive() {
        require(active, "Farm: is not active");
        require(endBlock >= block.number, "Farm: is closed");
        _;
    }

    /**
     * @dev Activating the staking with start block.
     * Can only be called by the current owner.
     */
    function ativate() public onlyOwner returns (bool){
        startBlock = block.number;
        endBlock = startBlock.add(totalBlocks);
        rewardAllocation = defaultStakePerBlock.mul(totalBlocks);
        active = true;
        return true;
    }


    /**
     * @dev Deactivating the staking.
     * Can only be called by the current owner.
     */
    function deactivate() public onlyOwner returns (bool) {
        active = false;
        require(STBU.transfer(owner(), STBU.balanceOf(address(this))), "Deactivation: transfer failure");
        return true;
    }

    /**
     * @dev Pause/unpause the staking.
     * Can only be called by the current owner.
     */
    function pause(bool _value) public onlyOwner returns (bool) {
        active = _value;
        return true;
    }

    /**
     * @dev get current stake per block.
     */
    function getStakePerBlock() public view returns (uint256) {
        return rewardAllocation.div(totalBlocks);
    }

    /**
     * @dev Returns the share of the holder.
     */
    function stakeholderShare(address hodler) public view returns (uint256) {
        uint256 hBalance = balance[hodler];
        uint256 supply = LPtoken.balanceOf(address(this));
        if (supply > 0) {
            return hBalance.mul(percentage).div(supply);
        }
        return 0;
    }

    /**
     * @dev Deposits the LP tokens.
     * Can only be called when contract is active.
     */
    function depositLPTokens (uint256 _amount) public isActive {
        address from = msg.sender;
        address to = address(this);
        if (balance[from] > 0) {
            uint _staked = _calculateStaked(from);
            holders[from].availableButNotClaimed = _staked.add(holders[from].availableButNotClaimed);
            rewardAllocation = rewardAllocation.sub(holders[from].availableButNotClaimed);
        }
        require(LPtoken.transferFrom(from, to, _amount));
        balance[from] = balance[from].add(_amount);
        _calculateHolder(from, roi);
    }

    /**
     * @dev Claim STBU reward.
     * Can only be called when contract is active.
     */
    function claim () public isActive {
        address _to = msg.sender;
        _claim(_to);
        _calculateHolder(_to, roi);
    }

    /**
     * @dev Claim STBU reward and Unstake LP tokens.
     * Can only be called when contract is active.
     */
    function claimAndUnstake () public isActive {
        address _to = msg.sender;
        uint _balance = balance[_to];
        _claim(_to);
        balance[_to] = 0;
        require(LPtoken.transfer(_to, _balance), "LP: unable to transfer coins");
        _calculateHolder(_to, roi);

    }

    /**
     * @dev Unstake LP tokens.
     * Can only be called when contract is active.
     */
    function unstake(uint256 _amount) public isActive {
        address _to = msg.sender;
        uint _balance = balance[_to];
        require(_balance >= _amount, "LP: wrong amount");
        _claim(_to);
        balance[_to] = _balance.sub(_amount);
        require(LPtoken.transfer(_to, _amount), "LP: unable to transfer coins");
        _calculateHolder(_to, roi);
    }

    /**
     * @dev Calcultae share and roi for the holder
     */
    function _calculateHolder(address holder, uint256 _roi) internal {
        stakeHolder memory sH = holders[holder];
        sH._roi = _roi;
        sH.share = stakeholderShare(holder);
        sH.calcBlock = block.number;
        holders[holder] = sH;
    }

    /**
     * @dev Send available reward to the holder
     */
    function _claim(address _to) internal {
        uint _staked = _calculateStaked(_to);
        uint256 total = _staked.add(holders[_to].availableButNotClaimed);
        holders[_to].availableButNotClaimed = 0;
        holders[_to].totalClaimed = holders[_to].totalClaimed.add(total);
        rewardAllocation = rewardAllocation.sub(total);
        require(STBU.transfer(_to, total));
        emit LogClaim(_to, _staked);
    }

    /**
     * @dev Calculate available reward for the holder
     */
    function _calculateStaked(address holder) internal view returns(uint256){
        stakeHolder memory st = holders[holder];
        uint256 currentBlock = block.number;
        uint256 amountBlocks = currentBlock.sub(st.calcBlock);
        if(currentBlock >= endBlock) {
            amountBlocks = endBlock.sub(st.calcBlock);
        }
        uint256 fullAmount = rewardAllocation.div(totalBlocks).mul(amountBlocks);
        uint256 _stakeAmount = fullAmount.mul(st.share).div(percentage);
        return _stakeAmount;
    }


    /**
     * @dev get base staking data
     */
    function getStakerData(address _player) public view returns(address, uint256, uint256, uint256) {
        uint256 staked = _calculateStaked(_player);
        stakeHolder memory st = holders[_player];
        return (_player, staked.add(st.availableButNotClaimed), st._roi, stakeholderShare(_player));
    }


    function emergencyWithdraw() public {
        address user = msg.sender;
        uint _balance = balance[user];
        balance[user] = 0;
        require(LPtoken.transfer(user, _balance), "LP: unable to transfer coins");
        _calculateHolder(user, roi);
    }

}

File 2 of 5: Context.sol
pragma solidity ^0.6.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 3 of 5: IERC20.sol
pragma solidity ^0.6.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 4 of 5: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 5 of 5: SafeMath.sol
pragma solidity ^0.6.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;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_LP","type":"address"},{"internalType":"address","name":"_STBU","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"LogClaim","type":"event"},{"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":"LPtoken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STBU","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ativate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAndUnstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultStakePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositLPTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStakePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_player","type":"address"}],"name":"getStakerData","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","outputs":[{"internalType":"uint256","name":"_roi","type":"uint256"},{"internalType":"uint256","name":"share","type":"uint256"},{"internalType":"uint256","name":"calcBlock","type":"uint256"},{"internalType":"uint256","name":"availableButNotClaimed","type":"uint256"},{"internalType":"uint256","name":"totalClaimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"hodler","type":"address"}],"name":"stakeholderShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBlocks","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002adb38038062002adb833981810160405260408110156200003757600080fd5b810190808051906020019092919080519060200190929190505050600062000064620001f560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506305f5e1006001819055506305f5e1006002819055506000670de0b6b3a76400009050620001dc6064620001c860dc84620001fd60201b62001e381790919060201c565b6200028860201b62001ebe1790919060201c565b60098190555062230997600581905550505050620003a5565b600033905090565b60008083141562000212576000905062000282565b60008284029050828482816200022457fe5b04146200027d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018062002aba6021913960400191505060405180910390fd5b809150505b92915050565b6000620002d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620002da60201b60201c565b905092915050565b600080831182906200038a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200034e57808201518184015260208101905062000331565b50505050905090810190601f1680156200037c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200039757fe5b049050809150509392505050565b61270580620003b56000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806379d62d56116100c3578063db2e21bc1161007c578063db2e21bc14610484578063e0fd9ed01461048e578063e3d670d7146104ae578063f2fde38b14610506578063fa28f2e51461054a578063facbf93b146105a257610158565b806379d62d561461033d5780638da5cb5b1461037157806392ec13f2146103a5578063ad004e20146103c3578063c14cba3e146103cd578063c601f3521461040157610158565b806348cd4cb11161011557806348cd4cb1146102af5780634afdd0e7146102cd5780634e71d92d146102eb57806351b42b00146102f55780636773938714610315578063715018a61461033357610158565b806302329a291461015d578063083c6323146101a357806318a5bbdc146101c15780632e17de781461023557806339b866b01461026357806341f264f114610281575b600080fd5b61018b6004803603602081101561017357600080fd5b810190808035151590602001909291905050506105c0565b60405180821515815260200191505060405180910390f35b6101ab610694565b6040518082815260200191505060405180910390f35b610203600480360360208110156101d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061069a565b604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390f35b6102616004803603602081101561024b57600080fd5b81019080803590602001909291905050506106d0565b005b61026b610a39565b6040518082815260200191505060405180910390f35b6102ad6004803603602081101561029757600080fd5b8101908080359060200190929190505050610a57565b005b6102b7610e45565b6040518082815260200191505060405180910390f35b6102d5610e4b565b6040518082815260200191505060405180910390f35b6102f3610e51565b005b6102fd610f68565b60405180821515815260200191505060405180910390f35b61031d611245565b6040518082815260200191505060405180910390f35b61033b61124b565b005b6103456113b8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103796113de565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103ad611407565b6040518082815260200191505060405180910390f35b6103cb61140d565b005b6103d56116ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104436004803603602081101561041757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611714565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b61048c6117e4565b005b6104966119c2565b60405180821515815260200191505060405180910390f35b6104f0600480360360208110156104c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ad6565b6040518082815260200191505060405180910390f35b6105486004803603602081101561051c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aee565b005b61058c6004803603602081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ce0565b6040518082815260200191505060405180910390f35b6105aa611e32565b6040518082815260200191505060405180910390f35b60006105ca611f08565b73ffffffffffffffffffffffffffffffffffffffff166105e86113de565b73ffffffffffffffffffffffffffffffffffffffff1614610671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600660006101000a81548160ff02191690831515021790555060019050919050565b60045481565b600a6020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b600660009054906101000a900460ff16610752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b4360045410156107ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4c503a2077726f6e6720616d6f756e740000000000000000000000000000000081525060200191505060405180910390fd5b61089282611f10565b6108a583826121a590919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561097b57600080fd5b505af115801561098f573d6000803e3d6000fd5b505050506040513d60208110156109a557600080fd5b8101908080519060200190929190505050610a28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c503a20756e61626c6520746f207472616e7366657220636f696e730000000081525060200191505060405180910390fd5b610a34826001546121ef565b505050565b6000610a52600554600b54611ebe90919063ffffffff16565b905090565b600660009054906101000a900460ff16610ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b436004541015610b51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b600033905060003090506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610caa576000610bae83612315565b9050610c05600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301548261244b90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550610ca2600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154600b546121a590919063ffffffff16565b600b81905550505b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8383866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610d5b57600080fd5b505af1158015610d6f573d6000803e3d6000fd5b505050506040513d6020811015610d8557600080fd5b8101908080519060200190929190505050610d9f57600080fd5b610df183600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244b90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e40826001546121ef565b505050565b60035481565b60015481565b600660009054906101000a900460ff16610ed3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b436004541015610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b6000339050610f5981611f10565b610f65816001546121ef565b50565b6000610f72611f08565b73ffffffffffffffffffffffffffffffffffffffff16610f906113de565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660006101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61107a6113de565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561110357600080fd5b505afa158015611117573d6000803e3d6000fd5b505050506040513d602081101561112d57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561119157600080fd5b505af11580156111a5573d6000803e3d6000fd5b505050506040513d60208110156111bb57600080fd5b810190808051906020019092919050505061123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f446561637469766174696f6e3a207472616e73666572206661696c757265000081525060200191505060405180910390fd5b6001905090565b600b5481565b611253611f08565b73ffffffffffffffffffffffffffffffffffffffff166112716113de565b73ffffffffffffffffffffffffffffffffffffffff16146112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b600660009054906101000a900460ff1661148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b436004541015611507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061155982611f10565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561163157600080fd5b505af1158015611645573d6000803e3d6000fd5b505050506040513d602081101561165b57600080fd5b81019080805190602001909291905050506116de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c503a20756e61626c6520746f207472616e7366657220636f696e730000000081525060200191505060405180910390fd5b6116ea826001546121ef565b5050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600080600061172586612315565b905061172f612659565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050866117c582606001518461244b90919063ffffffff16565b82600001516117d38a611ce0565b955095509550955050509193509193565b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561190557600080fd5b505af1158015611919573d6000803e3d6000fd5b505050506040513d602081101561192f57600080fd5b81019080805190602001909291905050506119b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c503a20756e61626c6520746f207472616e7366657220636f696e730000000081525060200191505060405180910390fd5b6119be826001546121ef565b5050565b60006119cc611f08565b73ffffffffffffffffffffffffffffffffffffffff166119ea6113de565b73ffffffffffffffffffffffffffffffffffffffff1614611a73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b43600381905550611a9160055460035461244b90919063ffffffff16565b600481905550611aae600554600954611e3890919063ffffffff16565b600b819055506001600660006101000a81548160ff0219169083151502179055506001905090565b60086020528060005260406000206000915090505481565b611af6611f08565b73ffffffffffffffffffffffffffffffffffffffff16611b146113de565b73ffffffffffffffffffffffffffffffffffffffff1614611b9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126896026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611db057600080fd5b505afa158015611dc4573d6000803e3d6000fd5b505050506040513d6020811015611dda57600080fd5b810190808051906020019092919050505090506000811115611e2657611e1d81611e0f60025485611e3890919063ffffffff16565b611ebe90919063ffffffff16565b92505050611e2d565b6000925050505b919050565b60055481565b600080831415611e4b5760009050611eb8565b6000828402905082848281611e5c57fe5b0414611eb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126af6021913960400191505060405180910390fd5b809150505b92915050565b6000611f0083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124d3565b905092915050565b600033905090565b6000611f1b82612315565b90506000611f74600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301548361244b90919063ffffffff16565b90506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003018190555061201381600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004015461244b90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004018190555061206e81600b546121a590919063ffffffff16565b600b81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561210757600080fd5b505af115801561211b573d6000803e3d6000fd5b505050506040513d602081101561213157600080fd5b810190808051906020019092919050505061214b57600080fd5b7ffce6d5860f911bc27ece1365300332d2ddbe20c1adc46ee2eddd8f72c48053b28383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b60006121e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612599565b905092915050565b6121f7612659565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090508181600001818152505061228883611ce0565b8160200181815250504381604001818152505080600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050505050565b600061231f612659565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050600043905060006123bb8360400151836121a590919063ffffffff16565b905060045482106123e2576123df83604001516004546121a590919063ffffffff16565b90505b600061240d826123ff600554600b54611ebe90919063ffffffff16565b611e3890919063ffffffff16565b9050600061243c60025461242e876020015185611e3890919063ffffffff16565b611ebe90919063ffffffff16565b90508095505050505050919050565b6000808284019050838110156124c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808311829061257f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612544578082015181840152602081019050612529565b50505050905090810190601f1680156125715780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161258b57fe5b049050809150509392505050565b6000838311158290612646576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561260b5780820151818401526020810190506125f0565b50505050905090810190601f1680156126385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122072dd904d57b0fb2d801b3270d5cc0918f7e927311376684212a58c4d2e01115764736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77000000000000000000000000bb8a43724de8bc071d7278baccb19363545fe758000000000000000000000000212dd60d4bf0da8372fe8116474602d429e5735f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806379d62d56116100c3578063db2e21bc1161007c578063db2e21bc14610484578063e0fd9ed01461048e578063e3d670d7146104ae578063f2fde38b14610506578063fa28f2e51461054a578063facbf93b146105a257610158565b806379d62d561461033d5780638da5cb5b1461037157806392ec13f2146103a5578063ad004e20146103c3578063c14cba3e146103cd578063c601f3521461040157610158565b806348cd4cb11161011557806348cd4cb1146102af5780634afdd0e7146102cd5780634e71d92d146102eb57806351b42b00146102f55780636773938714610315578063715018a61461033357610158565b806302329a291461015d578063083c6323146101a357806318a5bbdc146101c15780632e17de781461023557806339b866b01461026357806341f264f114610281575b600080fd5b61018b6004803603602081101561017357600080fd5b810190808035151590602001909291905050506105c0565b60405180821515815260200191505060405180910390f35b6101ab610694565b6040518082815260200191505060405180910390f35b610203600480360360208110156101d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061069a565b604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390f35b6102616004803603602081101561024b57600080fd5b81019080803590602001909291905050506106d0565b005b61026b610a39565b6040518082815260200191505060405180910390f35b6102ad6004803603602081101561029757600080fd5b8101908080359060200190929190505050610a57565b005b6102b7610e45565b6040518082815260200191505060405180910390f35b6102d5610e4b565b6040518082815260200191505060405180910390f35b6102f3610e51565b005b6102fd610f68565b60405180821515815260200191505060405180910390f35b61031d611245565b6040518082815260200191505060405180910390f35b61033b61124b565b005b6103456113b8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103796113de565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103ad611407565b6040518082815260200191505060405180910390f35b6103cb61140d565b005b6103d56116ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104436004803603602081101561041757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611714565b604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b61048c6117e4565b005b6104966119c2565b60405180821515815260200191505060405180910390f35b6104f0600480360360208110156104c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ad6565b6040518082815260200191505060405180910390f35b6105486004803603602081101561051c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aee565b005b61058c6004803603602081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ce0565b6040518082815260200191505060405180910390f35b6105aa611e32565b6040518082815260200191505060405180910390f35b60006105ca611f08565b73ffffffffffffffffffffffffffffffffffffffff166105e86113de565b73ffffffffffffffffffffffffffffffffffffffff1614610671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600660006101000a81548160ff02191690831515021790555060019050919050565b60045481565b600a6020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b600660009054906101000a900460ff16610752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b4360045410156107ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4c503a2077726f6e6720616d6f756e740000000000000000000000000000000081525060200191505060405180910390fd5b61089282611f10565b6108a583826121a590919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561097b57600080fd5b505af115801561098f573d6000803e3d6000fd5b505050506040513d60208110156109a557600080fd5b8101908080519060200190929190505050610a28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c503a20756e61626c6520746f207472616e7366657220636f696e730000000081525060200191505060405180910390fd5b610a34826001546121ef565b505050565b6000610a52600554600b54611ebe90919063ffffffff16565b905090565b600660009054906101000a900460ff16610ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b436004541015610b51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b600033905060003090506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610caa576000610bae83612315565b9050610c05600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301548261244b90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550610ca2600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154600b546121a590919063ffffffff16565b600b81905550505b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8383866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610d5b57600080fd5b505af1158015610d6f573d6000803e3d6000fd5b505050506040513d6020811015610d8557600080fd5b8101908080519060200190929190505050610d9f57600080fd5b610df183600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244b90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e40826001546121ef565b505050565b60035481565b60015481565b600660009054906101000a900460ff16610ed3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b436004541015610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b6000339050610f5981611f10565b610f65816001546121ef565b50565b6000610f72611f08565b73ffffffffffffffffffffffffffffffffffffffff16610f906113de565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660006101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61107a6113de565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561110357600080fd5b505afa158015611117573d6000803e3d6000fd5b505050506040513d602081101561112d57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561119157600080fd5b505af11580156111a5573d6000803e3d6000fd5b505050506040513d60208110156111bb57600080fd5b810190808051906020019092919050505061123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f446561637469766174696f6e3a207472616e73666572206661696c757265000081525060200191505060405180910390fd5b6001905090565b600b5481565b611253611f08565b73ffffffffffffffffffffffffffffffffffffffff166112716113de565b73ffffffffffffffffffffffffffffffffffffffff16146112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b600660009054906101000a900460ff1661148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4661726d3a206973206e6f74206163746976650000000000000000000000000081525060200191505060405180910390fd5b436004541015611507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4661726d3a20697320636c6f736564000000000000000000000000000000000081525060200191505060405180910390fd5b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061155982611f10565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561163157600080fd5b505af1158015611645573d6000803e3d6000fd5b505050506040513d602081101561165b57600080fd5b81019080805190602001909291905050506116de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c503a20756e61626c6520746f207472616e7366657220636f696e730000000081525060200191505060405180910390fd5b6116ea826001546121ef565b5050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600080600061172586612315565b905061172f612659565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050866117c582606001518461244b90919063ffffffff16565b82600001516117d38a611ce0565b955095509550955050509193509193565b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561190557600080fd5b505af1158015611919573d6000803e3d6000fd5b505050506040513d602081101561192f57600080fd5b81019080805190602001909291905050506119b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4c503a20756e61626c6520746f207472616e7366657220636f696e730000000081525060200191505060405180910390fd5b6119be826001546121ef565b5050565b60006119cc611f08565b73ffffffffffffffffffffffffffffffffffffffff166119ea6113de565b73ffffffffffffffffffffffffffffffffffffffff1614611a73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b43600381905550611a9160055460035461244b90919063ffffffff16565b600481905550611aae600554600954611e3890919063ffffffff16565b600b819055506001600660006101000a81548160ff0219169083151502179055506001905090565b60086020528060005260406000206000915090505481565b611af6611f08565b73ffffffffffffffffffffffffffffffffffffffff16611b146113de565b73ffffffffffffffffffffffffffffffffffffffff1614611b9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126896026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611db057600080fd5b505afa158015611dc4573d6000803e3d6000fd5b505050506040513d6020811015611dda57600080fd5b810190808051906020019092919050505090506000811115611e2657611e1d81611e0f60025485611e3890919063ffffffff16565b611ebe90919063ffffffff16565b92505050611e2d565b6000925050505b919050565b60055481565b600080831415611e4b5760009050611eb8565b6000828402905082848281611e5c57fe5b0414611eb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126af6021913960400191505060405180910390fd5b809150505b92915050565b6000611f0083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124d3565b905092915050565b600033905090565b6000611f1b82612315565b90506000611f74600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301548361244b90919063ffffffff16565b90506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003018190555061201381600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004015461244b90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004018190555061206e81600b546121a590919063ffffffff16565b600b81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561210757600080fd5b505af115801561211b573d6000803e3d6000fd5b505050506040513d602081101561213157600080fd5b810190808051906020019092919050505061214b57600080fd5b7ffce6d5860f911bc27ece1365300332d2ddbe20c1adc46ee2eddd8f72c48053b28383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b60006121e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612599565b905092915050565b6121f7612659565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090508181600001818152505061228883611ce0565b8160200181815250504381604001818152505080600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050505050565b600061231f612659565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050600043905060006123bb8360400151836121a590919063ffffffff16565b905060045482106123e2576123df83604001516004546121a590919063ffffffff16565b90505b600061240d826123ff600554600b54611ebe90919063ffffffff16565b611e3890919063ffffffff16565b9050600061243c60025461242e876020015185611e3890919063ffffffff16565b611ebe90919063ffffffff16565b90508095505050505050919050565b6000808284019050838110156124c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808311829061257f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612544578082015181840152602081019050612529565b50505050905090810190601f1680156125715780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161258b57fe5b049050809150509392505050565b6000838311158290612646576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561260b5780820151818401526020810190506125f0565b50505050905090810190601f1680156126385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122072dd904d57b0fb2d801b3270d5cc0918f7e927311376684212a58c4d2e01115764736f6c634300060c0033

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

000000000000000000000000bb8a43724de8bc071d7278baccb19363545fe758000000000000000000000000212dd60d4bf0da8372fe8116474602d429e5735f

-----Decoded View---------------
Arg [0] : _LP (address): 0xBB8a43724dE8BC071d7278bAcCB19363545fE758
Arg [1] : _STBU (address): 0x212DD60D4Bf0DA8372fe8116474602d429E5735F

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000bb8a43724de8bc071d7278baccb19363545fe758
Arg [1] : 000000000000000000000000212dd60d4bf0da8372fe8116474602d429e5735f


Deployed Bytecode Sourcemap

98:6506:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2085:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;256:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;653:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4171:371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2261:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2845:571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;225:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;169:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3520:132;;;:::i;:::-;;1764:212;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;706:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1710:145:3;;;:::i;:::-;;362:18:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1078:85:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;611:35:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3778:289;;;:::i;:::-;;335:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6024:306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6337:264;;;:::i;:::-;;1405:250;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;387:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2004:240:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2443:293:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;285:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2085:113;2139:4;1301:12:3;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2164:6:2::1;2155;;:15;;;;;;;;;;;;;;;;;;2187:4;2180:11;;2085:113:::0;;;:::o;256:23::-;;;;:::o;653:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4171:371::-;1172:6;;;;;;;;;;;1164:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232:12;1220:8;;:24;;1212:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4231:11:::1;4245:10;4231:24;;4265:13;4281:7;:12;4289:3;4281:12;;;;;;;;;;;;;;;;4265:28;;4323:7;4311:8;:19;;4303:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;4361:11;4368:3;4361:6;:11::i;:::-;4397:21;4410:7;4397:8;:12;;:21;;;;:::i;:::-;4382:7;:12;4390:3;4382:12;;;;;;;;;;;;;;;:36;;;;4436:7;;;;;;;;;;;:16;;;4453:3;4458:7;4436:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;4428:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;4509:26;4526:3;4531;;4509:16;:26::i;:::-;1274:1;;4171:371:::0;:::o;2261:115::-;2310:7;2336:33;2357:11;;2336:16;;:20;;:33;;;;:::i;:::-;2329:40;;2261:115;:::o;2845:571::-;1172:6;;;;;;;;;;;1164:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232:12;1220:8;;:24;;1212:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2914:12:::1;2929:10;2914:25;;2949:10;2970:4;2949:26;;3005:1;2989:7;:13;2997:4;2989:13;;;;;;;;;;;;;;;;:17;2985:278;;;3022:12;3037:22;3054:4;3037:16;:22::i;:::-;3022:37;;3112:49;3124:7;:13;3132:4;3124:13;;;;;;;;;;;;;;;:36;;;3112:7;:11;;:49;;;;:::i;:::-;3073:7;:13;3081:4;3073:13;;;;;;;;;;;;;;;:36;;:88;;;;3194:58;3215:7;:13;3223:4;3215:13;;;;;;;;;;;;;;;:36;;;3194:16;;:20;;:58;;;;:::i;:::-;3175:16;:77;;;;2985:278;;3280:7;;;;;;;;;;;:20;;;3301:4;3307:2;3311:7;3280:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;3272:48;;;::::0;::::1;;3346:26;3364:7;3346;:13;3354:4;3346:13;;;;;;;;;;;;;;;;:17;;:26;;;;:::i;:::-;3330:7;:13;3338:4;3330:13;;;;;;;;;;;;;;;:42;;;;3382:27;3399:4;3405:3;;3382:16;:27::i;:::-;1274:1;;2845:571:::0;:::o;225:25::-;;;;:::o;169:18::-;;;;:::o;3520:132::-;1172:6;;;;;;;;;;;1164:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232:12;1220:8;;:24;;1212:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3564:11:::1;3578:10;3564:24;;3598:11;3605:3;3598:6;:11::i;:::-;3619:26;3636:3;3641;;3619:16;:26::i;:::-;1274:1;3520:132::o:0;1764:212::-;1812:4;1301:12:3;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1837:5:2::1;1828:6;;:14;;;;;;;;;;;;;;;;;;1860:4;;;;;;;;;;;:13;;;1874:7;:5;:7::i;:::-;1883:4;;;;;;;;;;;:14;;;1906:4;1883:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;1860:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;1852:96;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;1965:4;1958:11;;1764:212:::0;:::o;706:31::-;;;;:::o;1710:145:3:-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1816:1:::1;1779:40;;1800:6;::::0;::::1;;;;;;;;1779:40;;;;;;;;;;;;1846:1;1829:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1710:145::o:0;362:18:2:-;;;;;;;;;;;;;:::o;1078:85:3:-;1124:7;1150:6;;;;;;;;;;;1143:13;;1078:85;:::o;611:35:2:-;;;;:::o;3778:289::-;1172:6;;;;;;;;;;;1164:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232:12;1220:8;;:24;;1212:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3832:11:::1;3846:10;3832:24;;3866:13;3882:7;:12;3890:3;3882:12;;;;;;;;;;;;;;;;3866:28;;3904:11;3911:3;3904:6;:11::i;:::-;3940:1;3925:7;:12;3933:3;3925:12;;;;;;;;;;;;;;;:16;;;;3959:7;;;;;;;;;;;:16;;;3976:3;3981:8;3959:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;3951:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;4033:26;4050:3;4055;;4033:16;:26::i;:::-;1274:1;;3778:289::o:0;335:21::-;;;;;;;;;;;;;:::o;6024:306::-;6084:7;6093;6102;6111;6130:14;6147:25;6164:7;6147:16;:25::i;:::-;6130:42;;6182:21;;:::i;:::-;6206:7;:16;6214:7;6206:16;;;;;;;;;;;;;;;6182:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6240:7;6249:37;6260:2;:25;;;6249:6;:10;;:37;;;;:::i;:::-;6288:2;:7;;;6297:25;6314:7;6297:16;:25::i;:::-;6232:91;;;;;;;;;;6024:306;;;;;:::o;6337:264::-;6383:12;6398:10;6383:25;;6418:13;6434:7;:13;6442:4;6434:13;;;;;;;;;;;;;;;;6418:29;;6473:1;6457:7;:13;6465:4;6457:13;;;;;;;;;;;;;;;:17;;;;6492:7;;;;;;;;;;;:16;;;6509:4;6515:8;6492:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6484:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6567:27;6584:4;6590:3;;6567:16;:27::i;:::-;6337:264;;:::o;1405:250::-;1450:4;1301:12:3;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1478:12:2::1;1465:10;:25;;;;1511:27;1526:11;;1511:10;;:14;;:27;;;;:::i;:::-;1500:8;:38;;;;1567:37;1592:11;;1567:20;;:24;;:37;;;;:::i;:::-;1548:16;:56;;;;1623:4;1614:6;;:13;;;;;;;;;;;;;;;;;;1644:4;1637:11;;1405:250:::0;:::o;387:43::-;;;;;;;;;;;;;;;;;:::o;2004:240:3:-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112:1:::1;2092:22;;:8;:22;;;;2084:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2201:8;2172:38;;2193:6;::::0;::::1;;;;;;;;2172:38;;;;;;;;;;;;2229:8;2220:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2004:240:::0;:::o;2443:293:2:-;2506:7;2525:16;2544:7;:15;2552:6;2544:15;;;;;;;;;;;;;;;;2525:34;;2569:14;2586:7;;;;;;;;;;;:17;;;2612:4;2586:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2569:49;;2641:1;2632:6;:10;2628:84;;;2665:36;2694:6;2665:24;2678:10;;2665:8;:12;;:24;;;;:::i;:::-;:28;;:36;;;;:::i;:::-;2658:43;;;;;;2628:84;2728:1;2721:8;;;;2443:293;;;;:::o;285:26::-;;;;:::o;2147:459:4:-;2205:7;2451:1;2446;:6;2442:45;;;2475:1;2468:8;;;;2442:45;2497:9;2513:1;2509;:5;2497:17;;2541:1;2536;2532;:5;;;;;;:10;2524:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2598:1;2591:8;;;2147:459;;;;;:::o;3068:130::-;3126:7;3152:39;3156:1;3159;3152:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3145:46;;3068:130;;;;:::o;557:104:0:-;610:15;644:10;637:17;;557:104;:::o;4942:425:2:-;4990:12;5005:21;5022:3;5005:16;:21::i;:::-;4990:36;;5036:13;5052:48;5064:7;:12;5072:3;5064:12;;;;;;;;;;;;;;;:35;;;5052:7;:11;;:48;;;;:::i;:::-;5036:64;;5148:1;5110:7;:12;5118:3;5110:12;;;;;;;;;;;;;;;:35;;:39;;;;5187:36;5217:5;5187:7;:12;5195:3;5187:12;;;;;;;;;;;;;;;:25;;;:29;;:36;;;;:::i;:::-;5159:7;:12;5167:3;5159:12;;;;;;;;;;;;;;;:25;;:64;;;;5252:27;5273:5;5252:16;;:20;;:27;;;;:::i;:::-;5233:16;:46;;;;5297:4;;;;;;;;;;;:13;;;5311:3;5316:5;5297:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5289:34;;;;;;5338:22;5347:3;5352:7;5338:22;;;;;;;;;;;;;;;;;;;;;;;;;;4942:425;;;:::o;1288:134:4:-;1346:7;1372:43;1376:1;1379;1372:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1365:50;;1288:134;;;;:::o;4615:257:2:-;4690:21;;:::i;:::-;4714:7;:15;4722:6;4714:15;;;;;;;;;;;;;;;4690:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4749:4;4739:2;:7;;:14;;;;;4774:24;4791:6;4774:16;:24::i;:::-;4763:2;:8;;:35;;;;;4823:12;4808:2;:12;;:27;;;;;4863:2;4845:7;:15;4853:6;4845:15;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4615:257;;;:::o;5443:524::-;5507:7;5525:21;;:::i;:::-;5549:7;:15;5557:6;5549:15;;;;;;;;;;;;;;;5525:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5574:20;5597:12;5574:35;;5619:20;5642:30;5659:2;:12;;;5642;:16;;:30;;;;:::i;:::-;5619:53;;5701:8;;5685:12;:24;5682:95;;5740:26;5753:2;:12;;;5740:8;;:12;;:26;;;;:::i;:::-;5725:41;;5682:95;5786:18;5807:51;5845:12;5807:33;5828:11;;5807:16;;:20;;:33;;;;:::i;:::-;:37;;:51;;;;:::i;:::-;5786:72;;5868:20;5891:40;5920:10;;5891:24;5906:2;:8;;;5891:10;:14;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;5868:63;;5948:12;5941:19;;;;;;;5443:524;;;:::o;841:176:4:-;899:7;918:9;934:1;930;:5;918:17;;958:1;953;:6;;945:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009:1;1002:8;;;841:176;;;;:::o;3680:272::-;3766:7;3797:1;3793;:5;3800:12;3785:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3823:9;3839:1;3835;:5;;;;;;3823:17;;3944:1;3937:8;;;3680:272;;;;;:::o;1713:187::-;1799:7;1831:1;1826;:6;;1834:12;1818:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1857:9;1873:1;1869;:5;1857:17;;1892:1;1885:8;;;1713:187;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://72dd904d57b0fb2d801b3270d5cc0918f7e927311376684212a58c4d2e011157

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.