ETH Price: $2,957.56 (-5.22%)
Gas: 7 Gwei

Contract

0x51CFacfD143b6226dB451dAdd006e46E721C13f4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Withdraw196874082024-04-19 5:28:4777 days ago1713504527IN
0x51CFacfD...E721C13f4
0 ETH0.001084377.47413377
Claim196868542024-04-19 3:36:5977 days ago1713497819IN
0x51CFacfD...E721C13f4
0 ETH0.0002753711.70352704
Withdraw196867632024-04-19 3:18:4777 days ago1713496727IN
0x51CFacfD...E721C13f4
0 ETH0.0041993715.45462213
Deposit196866752024-04-19 3:00:5977 days ago1713495659IN
0x51CFacfD...E721C13f4
0 ETH0.0027089821.8918679
Withdraw196856112024-04-18 23:26:3577 days ago1713482795IN
0x51CFacfD...E721C13f4
0 ETH0.00128157.14793122
Deposit196855862024-04-18 23:21:2377 days ago1713482483IN
0x51CFacfD...E721C13f4
0 ETH0.001572729.91041055
Deposit196851592024-04-18 21:55:4777 days ago1713477347IN
0x51CFacfD...E721C13f4
0 ETH0.002409478.01998891
Claim196846782024-04-18 20:19:1177 days ago1713471551IN
0x51CFacfD...E721C13f4
0 ETH0.0002501410.63116709
Withdraw196846142024-04-18 20:06:2377 days ago1713470783IN
0x51CFacfD...E721C13f4
0 ETH0.0003799410.08418725
Withdraw196846132024-04-18 20:06:1177 days ago1713470771IN
0x51CFacfD...E721C13f4
0 ETH0.000397610.5528653
Withdraw196845762024-04-18 19:58:3577 days ago1713470315IN
0x51CFacfD...E721C13f4
0 ETH0.000355759.44519043
Withdraw196845762024-04-18 19:58:3577 days ago1713470315IN
0x51CFacfD...E721C13f4
0 ETH0.000355269.43219859
Claim196845552024-04-18 19:54:2377 days ago1713470063IN
0x51CFacfD...E721C13f4
0 ETH0.000223959.51813389
Withdraw196845482024-04-18 19:52:5977 days ago1713469979IN
0x51CFacfD...E721C13f4
0 ETH0.000371849.87237365
Withdraw196845482024-04-18 19:52:5977 days ago1713469979IN
0x51CFacfD...E721C13f4
0 ETH0.000371849.87237365
Withdraw196845312024-04-18 19:49:3577 days ago1713469775IN
0x51CFacfD...E721C13f4
0 ETH0.000339099.00304676
Withdraw196845302024-04-18 19:49:2377 days ago1713469763IN
0x51CFacfD...E721C13f4
0 ETH0.000268659.4266171
Withdraw196845292024-04-18 19:49:1177 days ago1713469751IN
0x51CFacfD...E721C13f4
0 ETH0.000269379.45160652
Withdraw196845202024-04-18 19:47:1177 days ago1713469631IN
0x51CFacfD...E721C13f4
0 ETH0.000262999.22788935
Withdraw196845182024-04-18 19:46:4777 days ago1713469607IN
0x51CFacfD...E721C13f4
0 ETH0.000277599.74025685
Withdraw196845102024-04-18 19:45:1177 days ago1713469511IN
0x51CFacfD...E721C13f4
0 ETH0.000262729.21849241
Withdraw196845052024-04-18 19:44:1177 days ago1713469451IN
0x51CFacfD...E721C13f4
0 ETH0.0002869910.07010553
Claim196843902024-04-18 19:21:1177 days ago1713468071IN
0x51CFacfD...E721C13f4
0 ETH0.0002782611.8266121
Claim196842752024-04-18 18:58:1177 days ago1713466691IN
0x51CFacfD...E721C13f4
0 ETH0.0002558310.87331927
Deposit196842742024-04-18 18:57:5977 days ago1713466679IN
0x51CFacfD...E721C13f4
0 ETH0.0037362311.14765304
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
196838512024-04-18 17:32:4777 days ago1713461567
0x51CFacfD...E721C13f4
3.42 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Staking

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-18
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, 'Address: insufficient balance');

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

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, 'Address: low-level call failed');
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, 'Address: low-level call with value failed');
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, 'Address: insufficient balance for call');
        require(isContract(target), 'Address: call to non-contract');

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, 'Address: low-level static call failed');
    }

    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), 'Address: static call to non-contract');

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, 'SafeMath: addition overflow');

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, 'SafeMath: subtraction overflow');
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, 'SafeMath: division by 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;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, 'SafeMath: modulo by zero');
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

abstract contract Context {
    bytes32 private constant Context_SLOT_0 = 0xd02ed56f90ce73a4a38780c0671279abaeb33b8aca8358f4ab227e1228a4ab22;
    // 8af0c42ed8058a3af8000000 = StrToHex("Context constructor");
    bytes32 private constant NAME_HASH = 0x00000000000000000000000000000000000000000000008AC723040089E80000;

    constructor() {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(Context_SLOT_0, NAME_HASH)
        }
    }

    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract Ownable is Context {
    address private _owner;

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

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address payable newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function decimals() external view returns (uint8);

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

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

    function getOwner() external view returns (address);

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

    function transfer(address recipient, uint256 amount) external returns (bool);

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

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

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

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            'SafeERC20: approve from non-zero to non-zero allowance'
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

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

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(
            value,
            'SafeERC20: decreased allowance below zero'
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        bytes memory returndata = address(token).functionCall(data, 'SafeERC20: low-level call failed');
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), 'SafeERC20: ERC20 operation did not succeed');
        }
    }
}

contract Staking is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    struct UserInfo {
        uint256 amount;
        uint256 pendingReward;
        uint256 rewardDebt;
    }
    mapping(address => UserInfo) public userInfo;

    IERC20 sToken;
    uint256 public lastRewardTime;
    uint256 public accPerShare;
    uint256 public totalStaked;

    uint256 public totalReward;

    uint256 public rewardPerSec;

    constructor(IERC20 _sToken) {
        sToken = _sToken;
    }

    function getMultiplier(uint256 _from, uint256 _to) public pure returns (uint256) {
        return _to.sub(_from);
    }

    function updateRate() public {
        if (block.timestamp <= lastRewardTime) {
            return;
        }
        if (totalStaked == 0) {
            lastRewardTime = block.timestamp;
            return;
        }
        uint256 multiplier = getMultiplier(lastRewardTime, block.timestamp);
        accPerShare = accPerShare.add(multiplier.mul(rewardPerSec).mul(1e12).div(totalStaked));
        lastRewardTime = block.timestamp;
    }

    function deposit(uint256 _amount) public {
        updateRate();
        UserInfo storage user = userInfo[msg.sender];
        if (user.amount > 0) {
            user.pendingReward = user.pendingReward.add(user.amount.mul(accPerShare).div(1e12).sub(user.rewardDebt));
        }
        if (_amount > 0) {
            sToken.safeTransferFrom(address(msg.sender), address(this), _amount);
            user.amount = user.amount.add(_amount);
        }
        user.rewardDebt = user.amount.mul(accPerShare).div(1e12);
        totalStaked = totalStaked.add(_amount);
    }

    function withdraw(uint256 _amount) public {
        updateRate();
        UserInfo storage user = userInfo[msg.sender];
        require(user.amount >= _amount, 'Insufficient amount!');
        user.pendingReward = user.pendingReward.add(user.amount.mul(accPerShare).div(1e12).sub(user.rewardDebt));
        if (_amount > 0) {
            user.amount = user.amount.sub(_amount);
            sToken.safeTransfer(address(msg.sender), _amount);
        }
        user.rewardDebt = user.amount.mul(accPerShare).div(1e12);
        totalStaked = totalStaked.sub(_amount);
    }

    function claim() public {
        UserInfo storage user = userInfo[msg.sender];
        if (user.pendingReward != 0) {
            uint256 amount = user.pendingReward;
            uint256 bal = address(this).balance;
            if (user.pendingReward > bal) {
                amount = bal;
                rewardPerSec = 0;
            }
            payable(msg.sender).transfer(amount);
            user.pendingReward = user.pendingReward.sub(amount);
        }
    }

    function updateReward() public payable onlyOwner {
        updateRate();
        require(msg.value != 0, 'No reward!');
        totalReward = totalReward.add(msg.value);
        rewardPerSec = address(this).balance.div(7 days);
    }

    function pendingReward(address _user) external view returns (uint256) {
        UserInfo storage user = userInfo[_user];
        uint256 _accPerShare = accPerShare;
        if (block.timestamp > lastRewardTime && totalStaked != 0) {
            uint256 multiplier = getMultiplier(lastRewardTime, block.timestamp);
            _accPerShare = _accPerShare.add(multiplier.mul(rewardPerSec).mul(1e12).div(totalStaked));
        }
        return user.amount.mul(_accPerShare).div(1e12).sub(user.rewardDebt);
    }

    function getNextRewardTime() external view returns (uint256) {
        uint256 reward = address(this).balance;
        if (rewardPerSec == 0) {
            return block.timestamp;
        }
        uint256 restTime = reward.div(rewardPerSec);
        return block.timestamp.add(restTime);
    }

    function withdrawETH(uint256 _ethAmount) public payable onlyOwner {
        payable(msg.sender).transfer(_ethAmount);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_sToken","type":"address"}],"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":"accPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getNextRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerSec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateReward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"pendingReward","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200210f3803806200210f83398181016040528101906200003791906200017a565b688ac723040089e800007fd02ed56f90ce73a4a38780c0671279abaeb33b8aca8358f4ab227e1228a4ab22556000620000756200015b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000208565b600033905090565b6000815190506200017481620001ee565b92915050565b6000602082840312156200018d57600080fd5b60006200019d8482850162000163565b91505092915050565b6000620001b382620001ce565b9050919050565b6000620001c782620001a6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620001f981620001ba565b81146200020557600080fd5b50565b611ef780620002186000396000f3fe60806040526004361061010d5760003560e01c80638dbb1e3a11610095578063d2890a0111610064578063d2890a011461032e578063f14210a614610359578063f2fde38b14610375578063f36c0a721461039e578063f40f0f52146103a857610114565b80638dbb1e3a146102865780639231cf74146102c3578063b6b55f25146102ee578063c7fee63e1461031757610114565b80634f41e95d116100dc5780634f41e95d146101c3578063715018a6146101ee578063750142e614610205578063817b1cd2146102305780638da5cb5b1461025b57610114565b80631959a002146101195780632e1a7d4d1461015857806349bd9259146101815780634e71d92d146101ac57610114565b3661011457005b600080fd5b34801561012557600080fd5b50610140600480360381019061013b91906115bc565b6103e5565b60405161014f93929190611beb565b60405180910390f35b34801561016457600080fd5b5061017f600480360381019061017a9190611637565b61040f565b005b34801561018d57600080fd5b506101966105d2565b6040516101a39190611bd0565b60405180910390f35b3480156101b857600080fd5b506101c1610620565b005b3480156101cf57600080fd5b506101d8610701565b6040516101e59190611bd0565b60405180910390f35b3480156101fa57600080fd5b50610203610707565b005b34801561021157600080fd5b5061021a61085a565b6040516102279190611bd0565b60405180910390f35b34801561023c57600080fd5b50610245610860565b6040516102529190611bd0565b60405180910390f35b34801561026757600080fd5b50610270610866565b60405161027d9190611a13565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190611660565b61088f565b6040516102ba9190611bd0565b60405180910390f35b3480156102cf57600080fd5b506102d86108ac565b6040516102e59190611bd0565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190611637565b6108b2565b005b34801561032357600080fd5b5061032c610a3e565b005b34801561033a57600080fd5b50610343610ad8565b6040516103509190611bd0565b60405180910390f35b610373600480360381019061036e9190611637565b610ade565b005b34801561038157600080fd5b5061039c600480360381019061039791906115e5565b610bbd565b005b6103a6610d7f565b005b3480156103b457600080fd5b506103cf60048036038101906103ca91906115bc565b610e99565b6040516103dc9190611bd0565b60405180910390f35b60016020528060005260406000206000915090508060000154908060010154908060020154905083565b610417610a3e565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905081816000015410156104a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049890611bb0565b60405180910390fd5b6104fd6104ea82600201546104dc64e8d4a510006104ce6004548760000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b61107590919063ffffffff16565b82600101546110bf90919063ffffffff16565b8160010181905550600082111561057b5761052582826000015461107590919063ffffffff16565b816000018190555061057a3383600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661111d9092919063ffffffff16565b5b6105ab64e8d4a5100061059d6004548460000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b81600201819055506105c88260055461107590919063ffffffff16565b6005819055505050565b600080479050600060075414156105ec574291505061061d565b60006106036007548361102b90919063ffffffff16565b905061061881426110bf90919063ffffffff16565b925050505b90565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160010154146106fe57600081600101549050600047905080836001015411156106955780915060006007819055505b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156106db573d6000803e3d6000fd5b506106f382846001015461107590919063ffffffff16565b836001018190555050505b50565b60075481565b61070f6111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079390611b30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b60055481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006108a4838361107590919063ffffffff16565b905092915050565b60035481565b6108ba610a3e565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154111561096f57610966610953826002015461094564e8d4a510006109376004548760000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b61107590919063ffffffff16565b82600101546110bf90919063ffffffff16565b81600101819055505b60008211156109e7576109c7333084600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111ab909392919063ffffffff16565b6109de8282600001546110bf90919063ffffffff16565b81600001819055505b610a1764e8d4a51000610a096004548460000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b8160020181905550610a34826005546110bf90919063ffffffff16565b6005819055505050565b6003544211610a4c57610ad6565b60006005541415610a635742600381905550610ad6565b6000610a716003544261088f565b9050610ac7610ab6600554610aa864e8d4a51000610a9a60075487610fb090919063ffffffff16565b610fb090919063ffffffff16565b61102b90919063ffffffff16565b6004546110bf90919063ffffffff16565b60048190555042600381905550505b565b60045481565b610ae66111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90611b30565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb9573d6000803e3d6000fd5b5050565b610bc56111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611b30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611ab0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d876111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611b30565b60405180910390fd5b610e1c610a3e565b6000341415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611b90565b60405180910390fd5b610e75346006546110bf90919063ffffffff16565b600681905550610e9162093a804761102b90919063ffffffff16565b600781905550565b600080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600454905060035442118015610ef85750600060055414155b15610f63576000610f0b6003544261088f565b9050610f5f610f50600554610f4264e8d4a51000610f3460075487610fb090919063ffffffff16565b610fb090919063ffffffff16565b61102b90919063ffffffff16565b836110bf90919063ffffffff16565b9150505b610fa78260020154610f9964e8d4a51000610f8b858760000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b61107590919063ffffffff16565b92505050919050565b600080831415610fc35760009050611025565b60008284610fd19190611cdb565b9050828482610fe09190611caa565b14611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790611b10565b60405180910390fd5b809150505b92915050565b600061106d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611234565b905092915050565b60006110b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611297565b905092915050565b60008082846110ce9190611c54565b905083811015611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90611ad0565b60405180910390fd5b8091505092915050565b61119e8363a9059cbb60e01b848460405160240161113c929190611a65565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506112fb565b505050565b600033905090565b61122e846323b872dd60e01b8585856040516024016111cc93929190611a2e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506112fb565b50505050565b6000808311829061127b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112729190611a8e565b60405180910390fd5b506000838561128a9190611caa565b9050809150509392505050565b60008383111582906112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d69190611a8e565b60405180910390fd5b50600083856112ee9190611d35565b9050809150509392505050565b600061135d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166113c29092919063ffffffff16565b90506000815111156113bd578080602001905181019061137d919061160e565b6113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390611b70565b60405180910390fd5b5b505050565b60606113d184846000856113da565b90509392505050565b60608247101561141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690611af0565b60405180910390fd5b611428856114ee565b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90611b50565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161149091906119fc565b60006040518083038185875af1925050503d80600081146114cd576040519150601f19603f3d011682016040523d82523d6000602084013e6114d2565b606091505b50915091506114e2828286611501565b92505050949350505050565b600080823b905060008111915050919050565b6060831561151157829050611561565b6000835111156115245782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589190611a8e565b60405180910390fd5b9392505050565b60008135905061157781611e65565b92915050565b60008135905061158c81611e7c565b92915050565b6000815190506115a181611e93565b92915050565b6000813590506115b681611eaa565b92915050565b6000602082840312156115ce57600080fd5b60006115dc84828501611568565b91505092915050565b6000602082840312156115f757600080fd5b60006116058482850161157d565b91505092915050565b60006020828403121561162057600080fd5b600061162e84828501611592565b91505092915050565b60006020828403121561164957600080fd5b6000611657848285016115a7565b91505092915050565b6000806040838503121561167357600080fd5b6000611681858286016115a7565b9250506020611692858286016115a7565b9150509250929050565b6116a581611d69565b82525050565b60006116b682611c22565b6116c08185611c38565b93506116d0818560208601611dc3565b80840191505092915050565b60006116e782611c2d565b6116f18185611c43565b9350611701818560208601611dc3565b61170a81611e54565b840191505092915050565b6000611722602683611c43565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611788601b83611c43565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006117c8602683611c43565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182e602183611c43565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611894602083611c43565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006118d4601d83611c43565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000611914602a83611c43565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b600061197a600a83611c43565b91507f4e6f2072657761726421000000000000000000000000000000000000000000006000830152602082019050919050565b60006119ba601483611c43565b91507f496e73756666696369656e7420616d6f756e74210000000000000000000000006000830152602082019050919050565b6119f681611db9565b82525050565b6000611a0882846116ab565b915081905092915050565b6000602082019050611a28600083018461169c565b92915050565b6000606082019050611a43600083018661169c565b611a50602083018561169c565b611a5d60408301846119ed565b949350505050565b6000604082019050611a7a600083018561169c565b611a8760208301846119ed565b9392505050565b60006020820190508181036000830152611aa881846116dc565b905092915050565b60006020820190508181036000830152611ac981611715565b9050919050565b60006020820190508181036000830152611ae98161177b565b9050919050565b60006020820190508181036000830152611b09816117bb565b9050919050565b60006020820190508181036000830152611b2981611821565b9050919050565b60006020820190508181036000830152611b4981611887565b9050919050565b60006020820190508181036000830152611b69816118c7565b9050919050565b60006020820190508181036000830152611b8981611907565b9050919050565b60006020820190508181036000830152611ba98161196d565b9050919050565b60006020820190508181036000830152611bc9816119ad565b9050919050565b6000602082019050611be560008301846119ed565b92915050565b6000606082019050611c0060008301866119ed565b611c0d60208301856119ed565b611c1a60408301846119ed565b949350505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000611c5f82611db9565b9150611c6a83611db9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9f57611c9e611df6565b5b828201905092915050565b6000611cb582611db9565b9150611cc083611db9565b925082611cd057611ccf611e25565b5b828204905092915050565b6000611ce682611db9565b9150611cf183611db9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d2a57611d29611df6565b5b828202905092915050565b6000611d4082611db9565b9150611d4b83611db9565b925082821015611d5e57611d5d611df6565b5b828203905092915050565b6000611d7482611d99565b9050919050565b6000611d8682611d99565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611de1578082015181840152602081019050611dc6565b83811115611df0576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b611e6e81611d69565b8114611e7957600080fd5b50565b611e8581611d7b565b8114611e9057600080fd5b50565b611e9c81611d8d565b8114611ea757600080fd5b50565b611eb381611db9565b8114611ebe57600080fd5b5056fea26469706673582212205c6c50192163e5ebc8fcde0560ea3aa9168e1ea18da044c62ff5cb85cdcca52564736f6c63430008000033000000000000000000000000da63feff6e6d75cd7a862cd56c625045dcf26e88

Deployed Bytecode

0x60806040526004361061010d5760003560e01c80638dbb1e3a11610095578063d2890a0111610064578063d2890a011461032e578063f14210a614610359578063f2fde38b14610375578063f36c0a721461039e578063f40f0f52146103a857610114565b80638dbb1e3a146102865780639231cf74146102c3578063b6b55f25146102ee578063c7fee63e1461031757610114565b80634f41e95d116100dc5780634f41e95d146101c3578063715018a6146101ee578063750142e614610205578063817b1cd2146102305780638da5cb5b1461025b57610114565b80631959a002146101195780632e1a7d4d1461015857806349bd9259146101815780634e71d92d146101ac57610114565b3661011457005b600080fd5b34801561012557600080fd5b50610140600480360381019061013b91906115bc565b6103e5565b60405161014f93929190611beb565b60405180910390f35b34801561016457600080fd5b5061017f600480360381019061017a9190611637565b61040f565b005b34801561018d57600080fd5b506101966105d2565b6040516101a39190611bd0565b60405180910390f35b3480156101b857600080fd5b506101c1610620565b005b3480156101cf57600080fd5b506101d8610701565b6040516101e59190611bd0565b60405180910390f35b3480156101fa57600080fd5b50610203610707565b005b34801561021157600080fd5b5061021a61085a565b6040516102279190611bd0565b60405180910390f35b34801561023c57600080fd5b50610245610860565b6040516102529190611bd0565b60405180910390f35b34801561026757600080fd5b50610270610866565b60405161027d9190611a13565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190611660565b61088f565b6040516102ba9190611bd0565b60405180910390f35b3480156102cf57600080fd5b506102d86108ac565b6040516102e59190611bd0565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190611637565b6108b2565b005b34801561032357600080fd5b5061032c610a3e565b005b34801561033a57600080fd5b50610343610ad8565b6040516103509190611bd0565b60405180910390f35b610373600480360381019061036e9190611637565b610ade565b005b34801561038157600080fd5b5061039c600480360381019061039791906115e5565b610bbd565b005b6103a6610d7f565b005b3480156103b457600080fd5b506103cf60048036038101906103ca91906115bc565b610e99565b6040516103dc9190611bd0565b60405180910390f35b60016020528060005260406000206000915090508060000154908060010154908060020154905083565b610417610a3e565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905081816000015410156104a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049890611bb0565b60405180910390fd5b6104fd6104ea82600201546104dc64e8d4a510006104ce6004548760000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b61107590919063ffffffff16565b82600101546110bf90919063ffffffff16565b8160010181905550600082111561057b5761052582826000015461107590919063ffffffff16565b816000018190555061057a3383600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661111d9092919063ffffffff16565b5b6105ab64e8d4a5100061059d6004548460000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b81600201819055506105c88260055461107590919063ffffffff16565b6005819055505050565b600080479050600060075414156105ec574291505061061d565b60006106036007548361102b90919063ffffffff16565b905061061881426110bf90919063ffffffff16565b925050505b90565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160010154146106fe57600081600101549050600047905080836001015411156106955780915060006007819055505b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156106db573d6000803e3d6000fd5b506106f382846001015461107590919063ffffffff16565b836001018190555050505b50565b60075481565b61070f6111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079390611b30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b60055481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006108a4838361107590919063ffffffff16565b905092915050565b60035481565b6108ba610a3e565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154111561096f57610966610953826002015461094564e8d4a510006109376004548760000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b61107590919063ffffffff16565b82600101546110bf90919063ffffffff16565b81600101819055505b60008211156109e7576109c7333084600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111ab909392919063ffffffff16565b6109de8282600001546110bf90919063ffffffff16565b81600001819055505b610a1764e8d4a51000610a096004548460000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b8160020181905550610a34826005546110bf90919063ffffffff16565b6005819055505050565b6003544211610a4c57610ad6565b60006005541415610a635742600381905550610ad6565b6000610a716003544261088f565b9050610ac7610ab6600554610aa864e8d4a51000610a9a60075487610fb090919063ffffffff16565b610fb090919063ffffffff16565b61102b90919063ffffffff16565b6004546110bf90919063ffffffff16565b60048190555042600381905550505b565b60045481565b610ae66111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90611b30565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb9573d6000803e3d6000fd5b5050565b610bc56111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611b30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611ab0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d876111a3565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611b30565b60405180910390fd5b610e1c610a3e565b6000341415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611b90565b60405180910390fd5b610e75346006546110bf90919063ffffffff16565b600681905550610e9162093a804761102b90919063ffffffff16565b600781905550565b600080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600454905060035442118015610ef85750600060055414155b15610f63576000610f0b6003544261088f565b9050610f5f610f50600554610f4264e8d4a51000610f3460075487610fb090919063ffffffff16565b610fb090919063ffffffff16565b61102b90919063ffffffff16565b836110bf90919063ffffffff16565b9150505b610fa78260020154610f9964e8d4a51000610f8b858760000154610fb090919063ffffffff16565b61102b90919063ffffffff16565b61107590919063ffffffff16565b92505050919050565b600080831415610fc35760009050611025565b60008284610fd19190611cdb565b9050828482610fe09190611caa565b14611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790611b10565b60405180910390fd5b809150505b92915050565b600061106d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611234565b905092915050565b60006110b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611297565b905092915050565b60008082846110ce9190611c54565b905083811015611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90611ad0565b60405180910390fd5b8091505092915050565b61119e8363a9059cbb60e01b848460405160240161113c929190611a65565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506112fb565b505050565b600033905090565b61122e846323b872dd60e01b8585856040516024016111cc93929190611a2e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506112fb565b50505050565b6000808311829061127b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112729190611a8e565b60405180910390fd5b506000838561128a9190611caa565b9050809150509392505050565b60008383111582906112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d69190611a8e565b60405180910390fd5b50600083856112ee9190611d35565b9050809150509392505050565b600061135d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166113c29092919063ffffffff16565b90506000815111156113bd578080602001905181019061137d919061160e565b6113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390611b70565b60405180910390fd5b5b505050565b60606113d184846000856113da565b90509392505050565b60608247101561141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690611af0565b60405180910390fd5b611428856114ee565b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90611b50565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161149091906119fc565b60006040518083038185875af1925050503d80600081146114cd576040519150601f19603f3d011682016040523d82523d6000602084013e6114d2565b606091505b50915091506114e2828286611501565b92505050949350505050565b600080823b905060008111915050919050565b6060831561151157829050611561565b6000835111156115245782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589190611a8e565b60405180910390fd5b9392505050565b60008135905061157781611e65565b92915050565b60008135905061158c81611e7c565b92915050565b6000815190506115a181611e93565b92915050565b6000813590506115b681611eaa565b92915050565b6000602082840312156115ce57600080fd5b60006115dc84828501611568565b91505092915050565b6000602082840312156115f757600080fd5b60006116058482850161157d565b91505092915050565b60006020828403121561162057600080fd5b600061162e84828501611592565b91505092915050565b60006020828403121561164957600080fd5b6000611657848285016115a7565b91505092915050565b6000806040838503121561167357600080fd5b6000611681858286016115a7565b9250506020611692858286016115a7565b9150509250929050565b6116a581611d69565b82525050565b60006116b682611c22565b6116c08185611c38565b93506116d0818560208601611dc3565b80840191505092915050565b60006116e782611c2d565b6116f18185611c43565b9350611701818560208601611dc3565b61170a81611e54565b840191505092915050565b6000611722602683611c43565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611788601b83611c43565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006117c8602683611c43565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182e602183611c43565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611894602083611c43565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006118d4601d83611c43565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000611914602a83611c43565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b600061197a600a83611c43565b91507f4e6f2072657761726421000000000000000000000000000000000000000000006000830152602082019050919050565b60006119ba601483611c43565b91507f496e73756666696369656e7420616d6f756e74210000000000000000000000006000830152602082019050919050565b6119f681611db9565b82525050565b6000611a0882846116ab565b915081905092915050565b6000602082019050611a28600083018461169c565b92915050565b6000606082019050611a43600083018661169c565b611a50602083018561169c565b611a5d60408301846119ed565b949350505050565b6000604082019050611a7a600083018561169c565b611a8760208301846119ed565b9392505050565b60006020820190508181036000830152611aa881846116dc565b905092915050565b60006020820190508181036000830152611ac981611715565b9050919050565b60006020820190508181036000830152611ae98161177b565b9050919050565b60006020820190508181036000830152611b09816117bb565b9050919050565b60006020820190508181036000830152611b2981611821565b9050919050565b60006020820190508181036000830152611b4981611887565b9050919050565b60006020820190508181036000830152611b69816118c7565b9050919050565b60006020820190508181036000830152611b8981611907565b9050919050565b60006020820190508181036000830152611ba98161196d565b9050919050565b60006020820190508181036000830152611bc9816119ad565b9050919050565b6000602082019050611be560008301846119ed565b92915050565b6000606082019050611c0060008301866119ed565b611c0d60208301856119ed565b611c1a60408301846119ed565b949350505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000611c5f82611db9565b9150611c6a83611db9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9f57611c9e611df6565b5b828201905092915050565b6000611cb582611db9565b9150611cc083611db9565b925082611cd057611ccf611e25565b5b828204905092915050565b6000611ce682611db9565b9150611cf183611db9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d2a57611d29611df6565b5b828202905092915050565b6000611d4082611db9565b9150611d4b83611db9565b925082821015611d5e57611d5d611df6565b5b828203905092915050565b6000611d7482611d99565b9050919050565b6000611d8682611d99565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611de1578082015181840152602081019050611dc6565b83811115611df0576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b611e6e81611d69565b8114611e7957600080fd5b50565b611e8581611d7b565b8114611e9057600080fd5b50565b611e9c81611d8d565b8114611ea757600080fd5b50565b611eb381611db9565b8114611ebe57600080fd5b5056fea26469706673582212205c6c50192163e5ebc8fcde0560ea3aa9168e1ea18da044c62ff5cb85cdcca52564736f6c63430008000033

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

000000000000000000000000da63feff6e6d75cd7a862cd56c625045dcf26e88

-----Decoded View---------------
Arg [0] : _sToken (address): 0xda63FefF6e6d75cd7a862CD56C625045dcf26e88

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000da63feff6e6d75cd7a862cd56c625045dcf26e88


Deployed Bytecode Sourcemap

9200:4034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9419:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;10912:581;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12760:301;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11501:481;;;;;;;;;;;;;:::i;:::-;;9631:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5881:148;;;;;;;;;;;;;:::i;:::-;;9596:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9561;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5667:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9738:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9492:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:580;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9867:449;;;;;;;;;;;;;:::i;:::-;;9528:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13069:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6037:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11990:238;;;:::i;:::-;;12236:516;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9419:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10912:581::-;10965:12;:10;:12::i;:::-;10988:21;11012:8;:20;11021:10;11012:20;;;;;;;;;;;;;;;10988:44;;11066:7;11051:4;:11;;;:22;;11043:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11130:83;11153:59;11196:4;:15;;;11153:38;11186:4;11153:28;11169:11;;11153:4;:11;;;:15;;:28;;;;:::i;:::-;:32;;:38;;;;:::i;:::-;:42;;:59;;;;:::i;:::-;11130:4;:18;;;:22;;:83;;;;:::i;:::-;11109:4;:18;;:104;;;;11238:1;11228:7;:11;11224:146;;;11270:24;11286:7;11270:4;:11;;;:15;;:24;;;;:::i;:::-;11256:4;:11;;:38;;;;11309:49;11337:10;11350:7;11309:6;;;;;;;;;;;:19;;;;:49;;;;;:::i;:::-;11224:146;11398:38;11431:4;11398:28;11414:11;;11398:4;:11;;;:15;;:28;;;;:::i;:::-;:32;;:38;;;;:::i;:::-;11380:4;:15;;:56;;;;11461:24;11477:7;11461:11;;:15;;:24;;;;:::i;:::-;11447:11;:38;;;;10912:581;;:::o;12760:301::-;12812:7;12832:14;12849:21;12832:38;;12901:1;12885:12;;:17;12881:72;;;12926:15;12919:22;;;;;12881:72;12963:16;12982:24;12993:12;;12982:6;:10;;:24;;;;:::i;:::-;12963:43;;13024:29;13044:8;13024:15;:19;;:29;;;;:::i;:::-;13017:36;;;;12760:301;;:::o;11501:481::-;11536:21;11560:8;:20;11569:10;11560:20;;;;;;;;;;;;;;;11536:44;;11617:1;11595:4;:18;;;:23;11591:384;;11635:14;11652:4;:18;;;11635:35;;11685:11;11699:21;11685:35;;11760:3;11739:4;:18;;;:24;11735:112;;;11793:3;11784:12;;11830:1;11815:12;:16;;;;11735:112;11869:10;11861:28;;:36;11890:6;11861:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11933:30;11956:6;11933:4;:18;;;:22;;:30;;;;:::i;:::-;11912:4;:18;;:51;;;;11591:384;;;11501:481;:::o;9631:27::-;;;;:::o;5881:148::-;5804:12;:10;:12::i;:::-;5794:22;;:6;;;;;;;;;;:22;;;5786:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5988:1:::1;5951:40;;5972:6;::::0;::::1;;;;;;;;5951:40;;;;;;;;;;;;6019:1;6002:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;5881:148::o:0;9596:26::-;;;;:::o;9561:::-;;;;:::o;5667:79::-;5705:7;5732:6;;;;;;;;;;;5725:13;;5667:79;:::o;9738:121::-;9810:7;9837:14;9845:5;9837:3;:7;;:14;;;;:::i;:::-;9830:21;;9738:121;;;;:::o;9492:29::-;;;;:::o;10324:580::-;10376:12;:10;:12::i;:::-;10399:21;10423:8;:20;10432:10;10423:20;;;;;;;;;;;;;;;10399:44;;10472:1;10458:4;:11;;;:15;10454:152;;;10511:83;10534:59;10577:4;:15;;;10534:38;10567:4;10534:28;10550:11;;10534:4;:11;;;:15;;:28;;;;:::i;:::-;:32;;:38;;;;:::i;:::-;:42;;:59;;;;:::i;:::-;10511:4;:18;;;:22;;:83;;;;:::i;:::-;10490:4;:18;;:104;;;;10454:152;10630:1;10620:7;:11;10616:165;;;10648:68;10680:10;10701:4;10708:7;10648:6;;;;;;;;;;;:23;;;;:68;;;;;;:::i;:::-;10745:24;10761:7;10745:4;:11;;;:15;;:24;;;;:::i;:::-;10731:4;:11;;:38;;;;10616:165;10809:38;10842:4;10809:28;10825:11;;10809:4;:11;;;:15;;:28;;;;:::i;:::-;:32;;:38;;;;:::i;:::-;10791:4;:15;;:56;;;;10872:24;10888:7;10872:11;;:15;;:24;;;;:::i;:::-;10858:11;:38;;;;10324:580;;:::o;9867:449::-;9930:14;;9911:15;:33;9907:72;;9961:7;;9907:72;10008:1;9993:11;;:16;9989:102;;;10043:15;10026:14;:32;;;;10073:7;;9989:102;10101:18;10122:46;10136:14;;10152:15;10122:13;:46::i;:::-;10101:67;;10193:72;10209:55;10252:11;;10209:38;10242:4;10209:28;10224:12;;10209:10;:14;;:28;;;;:::i;:::-;:32;;:38;;;;:::i;:::-;:42;;:55;;;;:::i;:::-;10193:11;;:15;;:72;;;;:::i;:::-;10179:11;:86;;;;10293:15;10276:14;:32;;;;9867:449;;:::o;9528:26::-;;;;:::o;13069:125::-;5804:12;:10;:12::i;:::-;5794:22;;:6;;;;;;;;;;:22;;;5786:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13154:10:::1;13146:28;;:40;13175:10;13146:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;13069:125:::0;:::o;6037:252::-;5804:12;:10;:12::i;:::-;5794:22;;:6;;;;;;;;;;:22;;;5786:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6154:1:::1;6134:22;;:8;:22;;;;6126:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6244:8;6215:38;;6236:6;::::0;::::1;;;;;;;;6215:38;;;;;;;;;;;;6273:8;6264:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;6037:252:::0;:::o;11990:238::-;5804:12;:10;:12::i;:::-;5794:22;;:6;;;;;;;;;;:22;;;5786:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12050:12:::1;:10;:12::i;:::-;12094:1;12081:9;:14;;12073:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;12135:26;12151:9;12135:11;;:15;;:26;;;;:::i;:::-;12121:11;:40;;;;12187:33;12213:6;12187:21;:25;;:33;;;;:::i;:::-;12172:12;:48;;;;11990:238::o:0;12236:516::-;12297:7;12317:21;12341:8;:15;12350:5;12341:15;;;;;;;;;;;;;;;12317:39;;12367:20;12390:11;;12367:34;;12434:14;;12416:15;:32;:52;;;;;12467:1;12452:11;;:16;;12416:52;12412:255;;;12485:18;12506:46;12520:14;;12536:15;12506:13;:46::i;:::-;12485:67;;12582:73;12599:55;12642:11;;12599:38;12632:4;12599:28;12614:12;;12599:10;:14;;:28;;;;:::i;:::-;:32;;:38;;;;:::i;:::-;:42;;:55;;;;:::i;:::-;12582:12;:16;;:73;;;;:::i;:::-;12567:88;;12412:255;;12684:60;12728:4;:15;;;12684:39;12718:4;12684:29;12700:12;12684:4;:11;;;:15;;:29;;;;:::i;:::-;:33;;:39;;;;:::i;:::-;:43;;:60;;;;:::i;:::-;12677:67;;;;12236:516;;;:::o;3512:250::-;3570:7;3599:1;3594;:6;3590:47;;;3624:1;3617:8;;;;3590:47;3649:9;3665:1;3661;:5;;;;:::i;:::-;3649:17;;3694:1;3689;3685;:5;;;;:::i;:::-;:10;3677:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;3753:1;3746:8;;;3512:250;;;;;:::o;3770:132::-;3828:7;3855:39;3859:1;3862;3855:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3848:46;;3770:132;;;;:::o;3168:136::-;3226:7;3253:43;3257:1;3260;3253:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3246:50;;3168:136;;;;:::o;2979:181::-;3037:7;3057:9;3073:1;3069;:5;;;;:::i;:::-;3057:17;;3098:1;3093;:6;;3085:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3151:1;3144:8;;;2979:181;;;;:::o;7324:177::-;7407:86;7427:5;7457:23;;;7482:2;7486:5;7434:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7407:19;:86::i;:::-;7324:177;;;:::o;5000:98::-;5053:7;5080:10;5073:17;;5000:98;:::o;7509:205::-;7610:96;7630:5;7660:27;;;7689:4;7695:2;7699:5;7637:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7610:19;:96::i;:::-;7509:205;;;;:::o;3910:278::-;3996:7;4028:1;4024;:5;4031:12;4016:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4055:9;4071:1;4067;:5;;;;:::i;:::-;4055:17;;4179:1;4172:8;;;3910:278;;;;;:::o;3312:192::-;3398:7;3431:1;3426;:6;;3434:12;3418:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;3458:9;3474:1;3470;:5;;;;:::i;:::-;3458:17;;3495:1;3488:8;;;3312:192;;;;;:::o;8762:431::-;8843:23;8869:69;8897:4;8869:69;;;;;;;;;;;;;;;;;8877:5;8869:27;;;;:69;;;;;:::i;:::-;8843:95;;8973:1;8953:10;:17;:21;8949:237;;;9108:10;9097:30;;;;;;;;;;;;:::i;:::-;9089:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8949:237;8762:431;;;:::o;797:229::-;934:12;966:52;988:6;996:4;1002:1;1005:12;966:21;:52::i;:::-;959:59;;797:229;;;;;:::o;1268:511::-;1438:12;1496:5;1471:21;:30;;1463:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1563:18;1574:6;1563:10;:18::i;:::-;1555:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1629:12;1643:23;1670:6;:11;;1689:5;1696:4;1670:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1628:73;;;;1719:52;1737:7;1746:10;1758:12;1719:17;:52::i;:::-;1712:59;;;;1268:511;;;;;;:::o;85:196::-;145:4;162:12;229:7;217:20;209:28;;272:1;265:4;:8;258:15;;;85:196;;;:::o;2398:550::-;2548:12;2577:7;2573:368;;;2608:10;2601:17;;;;2573:368;2675:1;2655:10;:17;:21;2651:279;;;2758:10;2752:17;2819:15;2806:10;2802:2;2798:19;2791:44;2706:148;2901:12;2894:20;;;;;;;;;;;:::i;:::-;;;;;;;;2398:550;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:155::-;;244:6;231:20;222:29;;260:41;295:5;260:41;:::i;:::-;212:95;;;;:::o;313:137::-;;398:6;392:13;383:22;;414:30;438:5;414:30;:::i;:::-;373:77;;;;:::o;456:139::-;;540:6;527:20;518:29;;556:33;583:5;556:33;:::i;:::-;508:87;;;;:::o;601:262::-;;709:2;697:9;688:7;684:23;680:32;677:2;;;725:1;722;715:12;677:2;768:1;793:53;838:7;829:6;818:9;814:22;793:53;:::i;:::-;783:63;;739:117;667:196;;;;:::o;869:278::-;;985:2;973:9;964:7;960:23;956:32;953:2;;;1001:1;998;991:12;953:2;1044:1;1069:61;1122:7;1113:6;1102:9;1098:22;1069:61;:::i;:::-;1059:71;;1015:125;943:204;;;;:::o;1153:278::-;;1269:2;1257:9;1248:7;1244:23;1240:32;1237:2;;;1285:1;1282;1275:12;1237:2;1328:1;1353:61;1406:7;1397:6;1386:9;1382:22;1353:61;:::i;:::-;1343:71;;1299:125;1227:204;;;;:::o;1437:262::-;;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1561:1;1558;1551:12;1513:2;1604:1;1629:53;1674:7;1665:6;1654:9;1650:22;1629:53;:::i;:::-;1619:63;;1575:117;1503:196;;;;:::o;1705:407::-;;;1830:2;1818:9;1809:7;1805:23;1801:32;1798:2;;;1846:1;1843;1836:12;1798:2;1889:1;1914:53;1959:7;1950:6;1939:9;1935:22;1914:53;:::i;:::-;1904:63;;1860:117;2016:2;2042:53;2087:7;2078:6;2067:9;2063:22;2042:53;:::i;:::-;2032:63;;1987:118;1788:324;;;;;:::o;2118:118::-;2205:24;2223:5;2205:24;:::i;:::-;2200:3;2193:37;2183:53;;:::o;2242:373::-;;2374:38;2406:5;2374:38;:::i;:::-;2428:88;2509:6;2504:3;2428:88;:::i;:::-;2421:95;;2525:52;2570:6;2565:3;2558:4;2551:5;2547:16;2525:52;:::i;:::-;2602:6;2597:3;2593:16;2586:23;;2350:265;;;;;:::o;2621:364::-;;2737:39;2770:5;2737:39;:::i;:::-;2792:71;2856:6;2851:3;2792:71;:::i;:::-;2785:78;;2872:52;2917:6;2912:3;2905:4;2898:5;2894:16;2872:52;:::i;:::-;2949:29;2971:6;2949:29;:::i;:::-;2944:3;2940:39;2933:46;;2713:272;;;;;:::o;2991:370::-;;3154:67;3218:2;3213:3;3154:67;:::i;:::-;3147:74;;3251:34;3247:1;3242:3;3238:11;3231:55;3317:8;3312:2;3307:3;3303:12;3296:30;3352:2;3347:3;3343:12;3336:19;;3137:224;;;:::o;3367:325::-;;3530:67;3594:2;3589:3;3530:67;:::i;:::-;3523:74;;3627:29;3623:1;3618:3;3614:11;3607:50;3683:2;3678:3;3674:12;3667:19;;3513:179;;;:::o;3698:370::-;;3861:67;3925:2;3920:3;3861:67;:::i;:::-;3854:74;;3958:34;3954:1;3949:3;3945:11;3938:55;4024:8;4019:2;4014:3;4010:12;4003:30;4059:2;4054:3;4050:12;4043:19;;3844:224;;;:::o;4074:365::-;;4237:67;4301:2;4296:3;4237:67;:::i;:::-;4230:74;;4334:34;4330:1;4325:3;4321:11;4314:55;4400:3;4395:2;4390:3;4386:12;4379:25;4430:2;4425:3;4421:12;4414:19;;4220:219;;;:::o;4445:330::-;;4608:67;4672:2;4667:3;4608:67;:::i;:::-;4601:74;;4705:34;4701:1;4696:3;4692:11;4685:55;4766:2;4761:3;4757:12;4750:19;;4591:184;;;:::o;4781:327::-;;4944:67;5008:2;5003:3;4944:67;:::i;:::-;4937:74;;5041:31;5037:1;5032:3;5028:11;5021:52;5099:2;5094:3;5090:12;5083:19;;4927:181;;;:::o;5114:374::-;;5277:67;5341:2;5336:3;5277:67;:::i;:::-;5270:74;;5374:34;5370:1;5365:3;5361:11;5354:55;5440:12;5435:2;5430:3;5426:12;5419:34;5479:2;5474:3;5470:12;5463:19;;5260:228;;;:::o;5494:308::-;;5657:67;5721:2;5716:3;5657:67;:::i;:::-;5650:74;;5754:12;5750:1;5745:3;5741:11;5734:33;5793:2;5788:3;5784:12;5777:19;;5640:162;;;:::o;5808:318::-;;5971:67;6035:2;6030:3;5971:67;:::i;:::-;5964:74;;6068:22;6064:1;6059:3;6055:11;6048:43;6117:2;6112:3;6108:12;6101:19;;5954:172;;;:::o;6132:118::-;6219:24;6237:5;6219:24;:::i;:::-;6214:3;6207:37;6197:53;;:::o;6256:271::-;;6408:93;6497:3;6488:6;6408:93;:::i;:::-;6401:100;;6518:3;6511:10;;6390:137;;;;:::o;6533:222::-;;6664:2;6653:9;6649:18;6641:26;;6677:71;6745:1;6734:9;6730:17;6721:6;6677:71;:::i;:::-;6631:124;;;;:::o;6761:442::-;;6948:2;6937:9;6933:18;6925:26;;6961:71;7029:1;7018:9;7014:17;7005:6;6961:71;:::i;:::-;7042:72;7110:2;7099:9;7095:18;7086:6;7042:72;:::i;:::-;7124;7192:2;7181:9;7177:18;7168:6;7124:72;:::i;:::-;6915:288;;;;;;:::o;7209:332::-;;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7335:206;;;;;:::o;7547:313::-;;7698:2;7687:9;7683:18;7675:26;;7747:9;7741:4;7737:20;7733:1;7722:9;7718:17;7711:47;7775:78;7848:4;7839:6;7775:78;:::i;:::-;7767:86;;7665:195;;;;:::o;7866:419::-;;8070:2;8059:9;8055:18;8047:26;;8119:9;8113:4;8109:20;8105:1;8094:9;8090:17;8083:47;8147:131;8273:4;8147:131;:::i;:::-;8139:139;;8037:248;;;:::o;8291:419::-;;8495:2;8484:9;8480:18;8472:26;;8544:9;8538:4;8534:20;8530:1;8519:9;8515:17;8508:47;8572:131;8698:4;8572:131;:::i;:::-;8564:139;;8462:248;;;:::o;8716:419::-;;8920:2;8909:9;8905:18;8897:26;;8969:9;8963:4;8959:20;8955:1;8944:9;8940:17;8933:47;8997:131;9123:4;8997:131;:::i;:::-;8989:139;;8887:248;;;:::o;9141:419::-;;9345:2;9334:9;9330:18;9322:26;;9394:9;9388:4;9384:20;9380:1;9369:9;9365:17;9358:47;9422:131;9548:4;9422:131;:::i;:::-;9414:139;;9312:248;;;:::o;9566:419::-;;9770:2;9759:9;9755:18;9747:26;;9819:9;9813:4;9809:20;9805:1;9794:9;9790:17;9783:47;9847:131;9973:4;9847:131;:::i;:::-;9839:139;;9737:248;;;:::o;9991:419::-;;10195:2;10184:9;10180:18;10172:26;;10244:9;10238:4;10234:20;10230:1;10219:9;10215:17;10208:47;10272:131;10398:4;10272:131;:::i;:::-;10264:139;;10162:248;;;:::o;10416:419::-;;10620:2;10609:9;10605:18;10597:26;;10669:9;10663:4;10659:20;10655:1;10644:9;10640:17;10633:47;10697:131;10823:4;10697:131;:::i;:::-;10689:139;;10587:248;;;:::o;10841:419::-;;11045:2;11034:9;11030:18;11022:26;;11094:9;11088:4;11084:20;11080:1;11069:9;11065:17;11058:47;11122:131;11248:4;11122:131;:::i;:::-;11114:139;;11012:248;;;:::o;11266:419::-;;11470:2;11459:9;11455:18;11447:26;;11519:9;11513:4;11509:20;11505:1;11494:9;11490:17;11483:47;11547:131;11673:4;11547:131;:::i;:::-;11539:139;;11437:248;;;:::o;11691:222::-;;11822:2;11811:9;11807:18;11799:26;;11835:71;11903:1;11892:9;11888:17;11879:6;11835:71;:::i;:::-;11789:124;;;;:::o;11919:442::-;;12106:2;12095:9;12091:18;12083:26;;12119:71;12187:1;12176:9;12172:17;12163:6;12119:71;:::i;:::-;12200:72;12268:2;12257:9;12253:18;12244:6;12200:72;:::i;:::-;12282;12350:2;12339:9;12335:18;12326:6;12282:72;:::i;:::-;12073:288;;;;;;:::o;12367:98::-;;12452:5;12446:12;12436:22;;12425:40;;;:::o;12471:99::-;;12557:5;12551:12;12541:22;;12530:40;;;:::o;12576:147::-;;12714:3;12699:18;;12689:34;;;;:::o;12729:169::-;;12847:6;12842:3;12835:19;12887:4;12882:3;12878:14;12863:29;;12825:73;;;;:::o;12904:305::-;;12963:20;12981:1;12963:20;:::i;:::-;12958:25;;12997:20;13015:1;12997:20;:::i;:::-;12992:25;;13151:1;13083:66;13079:74;13076:1;13073:81;13070:2;;;13157:18;;:::i;:::-;13070:2;13201:1;13198;13194:9;13187:16;;12948:261;;;;:::o;13215:185::-;;13272:20;13290:1;13272:20;:::i;:::-;13267:25;;13306:20;13324:1;13306:20;:::i;:::-;13301:25;;13345:1;13335:2;;13350:18;;:::i;:::-;13335:2;13392:1;13389;13385:9;13380:14;;13257:143;;;;:::o;13406:348::-;;13469:20;13487:1;13469:20;:::i;:::-;13464:25;;13503:20;13521:1;13503:20;:::i;:::-;13498:25;;13691:1;13623:66;13619:74;13616:1;13613:81;13608:1;13601:9;13594:17;13590:105;13587:2;;;13698:18;;:::i;:::-;13587:2;13746:1;13743;13739:9;13728:20;;13454:300;;;;:::o;13760:191::-;;13820:20;13838:1;13820:20;:::i;:::-;13815:25;;13854:20;13872:1;13854:20;:::i;:::-;13849:25;;13893:1;13890;13887:8;13884:2;;;13898:18;;:::i;:::-;13884:2;13943:1;13940;13936:9;13928:17;;13805:146;;;;:::o;13957:96::-;;14023:24;14041:5;14023:24;:::i;:::-;14012:35;;14002:51;;;:::o;14059:104::-;;14133:24;14151:5;14133:24;:::i;:::-;14122:35;;14112:51;;;:::o;14169:90::-;;14246:5;14239:13;14232:21;14221:32;;14211:48;;;:::o;14265:126::-;;14342:42;14335:5;14331:54;14320:65;;14310:81;;;:::o;14397:77::-;;14463:5;14452:16;;14442:32;;;:::o;14480:307::-;14548:1;14558:113;14572:6;14569:1;14566:13;14558:113;;;14657:1;14652:3;14648:11;14642:18;14638:1;14633:3;14629:11;14622:39;14594:2;14591:1;14587:10;14582:15;;14558:113;;;14689:6;14686:1;14683:13;14680:2;;;14769:1;14760:6;14755:3;14751:16;14744:27;14680:2;14529:258;;;;:::o;14793:180::-;14841:77;14838:1;14831:88;14938:4;14935:1;14928:15;14962:4;14959:1;14952:15;14979:180;15027:77;15024:1;15017:88;15124:4;15121:1;15114:15;15148:4;15145:1;15138:15;15165:102;;15257:2;15253:7;15248:2;15241:5;15237:14;15233:28;15223:38;;15213:54;;;:::o;15273:122::-;15346:24;15364:5;15346:24;:::i;:::-;15339:5;15336:35;15326:2;;15385:1;15382;15375:12;15326:2;15316:79;:::o;15401:138::-;15482:32;15508:5;15482:32;:::i;:::-;15475:5;15472:43;15462:2;;15529:1;15526;15519:12;15462:2;15452:87;:::o;15545:116::-;15615:21;15630:5;15615:21;:::i;:::-;15608:5;15605:32;15595:2;;15651:1;15648;15641:12;15595:2;15585:76;:::o;15667:122::-;15740:24;15758:5;15740:24;:::i;:::-;15733:5;15730:35;15720:2;;15779:1;15776;15769:12;15720:2;15710:79;:::o

Swarm Source

ipfs://5c6c50192163e5ebc8fcde0560ea3aa9168e1ea18da044c62ff5cb85cdcca525

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  ]
[ 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.