FTM Price: $0.99 (-4.73%)
Gas: 33 GWei

Contract

0xaB9F86eFd519eb9B110542FAF984780e3D99E697
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Withdraw680504302023-09-10 14:55:22200 days ago1694357722IN
0xaB9F86eF...e3D99E697
0 FTM0.08488821577.75778527
Withdraw508785132022-11-14 18:57:30500 days ago1668452250IN
0xaB9F86eF...e3D99E697
0 FTM0.0155175112.67430545
Withdraw501771862022-10-28 16:48:34517 days ago1666975714IN
0xaB9F86eF...e3D99E697
0 FTM0.0074808254.31905931
Withdraw468235882022-09-12 14:39:07563 days ago1662993547IN
0xaB9F86eF...e3D99E697
0 FTM0.02938957236.69203408
Get Reward468235602022-09-12 14:38:16563 days ago1662993496IN
0xaB9F86eF...e3D99E697
0 FTM0.03215369298.97061143
Withdraw466074312022-09-08 20:21:29567 days ago1662668489IN
0xaB9F86eF...e3D99E697
0 FTM0.01528763104.04071701
Get Reward459999022022-08-30 12:52:21576 days ago1661863941IN
0xaB9F86eF...e3D99E697
0 FTM0.000486924.68344787
Withdraw459996722022-08-30 12:48:06576 days ago1661863686IN
0xaB9F86eF...e3D99E697
0 FTM0.001087177.58165013
Withdraw454584202022-08-22 17:23:38584 days ago1661189018IN
0xaB9F86eF...e3D99E697
0 FTM0.0005773.78047418
Withdraw453888432022-08-21 17:25:51585 days ago1661102751IN
0xaB9F86eF...e3D99E697
0 FTM0.000239621.67092247
Get Reward453888302022-08-21 17:25:30585 days ago1661102730IN
0xaB9F86eF...e3D99E697
0 FTM0.000178051.67859008
Withdraw452529442022-08-19 18:58:48587 days ago1660935528IN
0xaB9F86eF...e3D99E697
0 FTM0.000472583.09655744
Get Reward451423652022-08-18 3:55:25589 days ago1660794925IN
0xaB9F86eF...e3D99E697
0 FTM0.000154081.1826851
Get Reward443337592022-08-06 9:46:01601 days ago1659779161IN
0xaB9F86eF...e3D99E697
0 FTM0.0113236986.913448
Get Reward439175002022-07-31 8:40:11607 days ago1659256811IN
0xaB9F86eF...e3D99E697
0 FTM0.000293882.7704707
Withdraw438084202022-07-29 18:16:01608 days ago1659118561IN
0xaB9F86eF...e3D99E697
0 FTM0.04993873395.37267082
Get Reward437863752022-07-29 10:12:22609 days ago1659089542IN
0xaB9F86eF...e3D99E697
0 FTM0.0017156314.19111352
Withdraw412569322022-06-24 22:14:06643 days ago1656108846IN
0xaB9F86eF...e3D99E697
0 FTM0.0045799730.01
Withdraw410519422022-06-22 3:33:34646 days ago1655868814IN
0xaB9F86eF...e3D99E697
0 FTM0.0015511210.81620122
Withdraw409694642022-06-20 23:59:01647 days ago1655769541IN
0xaB9F86eF...e3D99E697
0 FTM0.0046932830.75
Withdraw409427602022-06-20 15:15:02647 days ago1655738102IN
0xaB9F86eF...e3D99E697
0 FTM0.00728350.78520346
Get Reward409427052022-06-20 15:13:47647 days ago1655738027IN
0xaB9F86eF...e3D99E697
0 FTM0.0035528234.1368
Deposit408985862022-06-20 0:50:17648 days ago1655686217IN
0xaB9F86eF...e3D99E697
0 FTM0.06307543333.28633349
Get Reward407822952022-06-18 10:39:31650 days ago1655548771IN
0xaB9F86eF...e3D99E697
0 FTM0.01453898120.26128097
Deposit406123842022-06-16 1:33:37652 days ago1655343217IN
0xaB9F86eF...e3D99E697
0 FTM0.01928359129.68731541
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
328274452022-03-07 22:53:00752 days ago1646693580  Contract Creation0 FTM
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x1741b224...D2E07A363
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Gauge

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-04-28
*/

/**
 *Submitted for verification at FtmScan.com on 2022-01-18
*/

pragma solidity ^0.6.7;


// 
//^0.7.5;
library SafeMath {
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "add: +");

        return c;
    }
    function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, errorMessage);

        return c;
    }
    function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "sub: -");
    }
    function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

        return c;
    }
    function mul(uint a, uint b) internal pure returns (uint) {
        // 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;
        }

        uint c = a * b;
        require(c / a == b, "mul: *");

        return c;
    }
    function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        if (a == 0) {
            return 0;
        }

        uint c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }
    function div(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "div: /");
    }
    function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b > 0, errorMessage);
        uint c = a / b;

        return c;
    }
}

library Address {
    function isContract(address account) internal view returns (bool) {
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != 0x0 && codehash != accountHash);
    }
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call{value:amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    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);
}

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 {
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "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");
        }
    }
}

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

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

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

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () public {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

interface IGaugeProxy {
    function getTreasury() external view returns (address);
    function getDepositFeeRate() external view returns (uint256);
}

contract Gauge is ReentrancyGuard {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    IERC20 public SPIRIT;
    IERC20 public inSPIRIT;

    IERC20 public immutable TOKEN;
    address public immutable DISTRIBUTION;
    uint256 public constant DURATION = 7 days;

    uint256 public periodFinish = 0;
    uint256 public rewardRate = 0;
    uint256 public lastUpdateTime;
    uint256 public rewardPerTokenStored;

    modifier onlyDistribution() {
        require(msg.sender == DISTRIBUTION, "Caller is not RewardsDistribution contract");
        _;
    }

    mapping(address => uint256) public userRewardPerTokenPaid;
    mapping(address => uint256) public rewards;

    uint256 private _totalSupply;
    uint public derivedSupply;
    mapping(address => uint256) private _balances;
    mapping(address => uint256) public derivedBalances;
    mapping(address => uint) private _base;

    constructor(address _spirit, address _inSpirit, address _token) public {
        SPIRIT = IERC20(_spirit);
        inSPIRIT = IERC20(_inSpirit);
        TOKEN = IERC20(_token);
        DISTRIBUTION = msg.sender;
    }

    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) external view returns (uint256) {
        return _balances[account];
    }

    function lastTimeRewardApplicable() public view returns (uint256) {
        return Math.min(block.timestamp, periodFinish);
    }

    function rewardPerToken() public view returns (uint256) {
        if (derivedSupply == 0) {
            return 0;
        }

        if (_totalSupply == 0) {
            return rewardPerTokenStored;
        }
        return
            rewardPerTokenStored.add(
                lastTimeRewardApplicable().sub(lastUpdateTime).mul(rewardRate).mul(1e18).div(derivedSupply)
            );
    }

    function derivedBalance(address account) public view returns (uint) {
        if(inSPIRIT.totalSupply() == 0) return 0;
        uint _balance = _balances[account];
        uint _derived = _balance.mul(40).div(100);
        uint _adjusted = (_totalSupply.mul(inSPIRIT.balanceOf(account)).div(inSPIRIT.totalSupply())).mul(60).div(100);
        return Math.min(_derived.add(_adjusted), _balance);
    }

    function kick(address account) public {
        uint _derivedBalance = derivedBalances[account];
        derivedSupply = derivedSupply.sub(_derivedBalance);
        _derivedBalance = derivedBalance(account);
        derivedBalances[account] = _derivedBalance;
        derivedSupply = derivedSupply.add(_derivedBalance);
    }

    function earned(address account) public view returns (uint256) {
        return derivedBalances[account].mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).div(1e18).add(rewards[account]);
    }

    function getRewardForDuration() external view returns (uint256) {
        return rewardRate.mul(DURATION);
    }

    function depositAll() external {
        _deposit(TOKEN.balanceOf(msg.sender), msg.sender);
    }

    function deposit(uint256 amount) external {
        _deposit(amount, msg.sender);
    }

    function depositFor(uint256 amount, address account) external {
        _deposit(amount, account);
    }

    function _deposit(uint amount, address account) internal nonReentrant updateReward(account) {
        IGaugeProxy guageProxy = IGaugeProxy(DISTRIBUTION);
        address treasury = guageProxy.getTreasury();
        uint256 depositFeeRate = guageProxy.getDepositFeeRate();

        require(treasury != address(0x0), "deposit(Gauge): treasury haven't been set");
        require(amount > 0, "deposit(Gauge): cannot stake 0");

        uint256 feeAmount = amount.mul(depositFeeRate).div(10000);
        uint256 userAmount = amount.sub(feeAmount);

        _balances[account] = _balances[account].add(userAmount);
        _totalSupply = _totalSupply.add(userAmount);

        TOKEN.safeTransferFrom(account, address(this), amount);
        TOKEN.safeTransfer(treasury, feeAmount);

        emit Staked(account, userAmount);
    }

    function withdrawAll() external {
        _withdraw(_balances[msg.sender]);
    }

    function withdraw(uint256 amount) external {
        _withdraw(amount);
    }

    function _withdraw(uint amount) internal nonReentrant updateReward(msg.sender) {
        require(amount > 0, "Cannot withdraw 0");
        _totalSupply = _totalSupply.sub(amount);
        _balances[msg.sender] = _balances[msg.sender].sub(amount);
        TOKEN.safeTransfer(msg.sender, amount);
        emit Withdrawn(msg.sender, amount);
    }

    function getReward() public nonReentrant updateReward(msg.sender) {
        uint256 reward = rewards[msg.sender];
        if (reward > 0) {
            rewards[msg.sender] = 0;
            SPIRIT.safeTransfer(msg.sender, reward);
            emit RewardPaid(msg.sender, reward);
        }
    }

    function exit() external {
       _withdraw(_balances[msg.sender]);
        getReward();
    }

    function notifyRewardAmount(uint256 reward) external onlyDistribution updateReward(address(0)) {
        SPIRIT.safeTransferFrom(DISTRIBUTION, address(this), reward);
        if (block.timestamp >= periodFinish) {
            rewardRate = reward.div(DURATION);
        } else {
            uint256 remaining = periodFinish.sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardRate);
            rewardRate = reward.add(leftover).div(DURATION);
        }

        // Ensure the provided reward amount is not more than the balance in the contract.
        // This keeps the reward rate in the right range, preventing overflows due to
        // very high values of rewardRate in the earned and rewardsPerToken functions;
        // Reward + leftover must be less than 2^256 / 10^18 to avoid overflow.
        uint balance = SPIRIT.balanceOf(address(this));
        require(rewardRate <= balance.div(DURATION), "Provided reward too high");

        lastUpdateTime = block.timestamp;
        periodFinish = block.timestamp.add(DURATION);
        emit RewardAdded(reward);
    }

    modifier updateReward(address account) {
        rewardPerTokenStored = rewardPerToken();
        lastUpdateTime = lastTimeRewardApplicable();
        if (account != address(0)) {
            rewards[account] = earned(account);
            userRewardPerTokenPaid[account] = rewardPerTokenStored;
        }
        _;
        if (account != address(0)) {
            kick(account);
        }
    }

    event RewardAdded(uint256 reward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, uint256 reward);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_spirit","type":"address"},{"internalType":"address","name":"_inSpirit","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DISTRIBUTION","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPIRIT","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"depositFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"derivedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"derivedBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"derivedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSPIRIT","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"kick","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ce5760003560e01c806382bfefc811610104578063cd3daf9d116100a2578063df136d6511610071578063df136d65146106a9578063e9fad8ee146106c7578063ebe2b12b146106d1578063f05cc5b6146106ef576101ce565b8063cd3daf9d1461060b578063d35e254414610629578063d7da4bb014610681578063de5f62681461069f576101ce565b806396c55175116100de57806396c5517514610547578063a7fa806b1461058b578063b6b55f25146105bf578063c8f33c91146105ed576101ce565b806382bfefc8146104b1578063853828b6146104e55780638b876347146104ef576101ce565b80633c6b16ab1161017157806370a082311161014b57806370a08231146103e95780637b0a47ee146104415780637c91e4eb1461045f57806380faa57d14610493576101ce565b80633c6b16ab146103595780633d18b9121461038757806363fb415b14610391576101ce565b80631be05289116101ad5780631be05289146102a15780631c1f78eb146102bf5780632e1a7d4d146102dd57806336efd16f1461030b576101ce565b80628cc262146101d35780630700037d1461022b57806318160ddd14610283575b600080fd5b610215600480360360208110156101e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610723565b6040518082815260200191505060405180910390f35b61026d6004803603602081101561024157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610841565b6040518082815260200191505060405180910390f35b61028b610859565b6040518082815260200191505060405180910390f35b6102a9610863565b6040518082815260200191505060405180910390f35b6102c761086a565b6040518082815260200191505060405180910390f35b610309600480360360208110156102f357600080fd5b8101908080359060200190929190505050610889565b005b6103576004803603604081101561032157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610895565b005b6103856004803603602081101561036f57600080fd5b81019080803590602001909291905050506108a3565b005b61038f610d1a565b005b6103d3600480360360208110156103a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ff7565b6040518082815260200191505060405180910390f35b61042b600480360360208110156103ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061100f565b6040518082815260200191505060405180910390f35b610449611058565b6040518082815260200191505060405180910390f35b61046761105e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61049b611082565b6040518082815260200191505060405180910390f35b6104b9611095565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ed6110b9565b005b6105316004803603602081101561050557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b6105896004803603602081101561055d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061111b565b005b6105936111e8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105eb600480360360208110156105d557600080fd5b810190808035906020019092919050505061120e565b005b6105f561121b565b6040518082815260200191505060405180910390f35b610613611221565b6040518082815260200191505060405180910390f35b61066b6004803603602081101561063f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112c3565b6040518082815260200191505060405180910390f35b6106896115c4565b6040518082815260200191505060405180910390f35b6106a76115ca565b005b6106b1611697565b6040518082815260200191505060405180910390f35b6106cf61169d565b005b6106d96116ef565b6040518082815260200191505060405180910390f35b6106f76116f5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600061083a600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461082c670de0b6b3a764000061081e6107d0600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c2611221565b61171b90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176590919063ffffffff16565b61180890919063ffffffff16565b61185290919063ffffffff16565b9050919050565b60086020528060005260406000206000915090505481565b6000600954905090565b62093a8081565b600061088462093a8060045461176590919063ffffffff16565b905090565b610892816118da565b50565b61089f8282611c48565b5050565b7f000000000000000000000000420b17f69618610de18cacd1499460efb29e1d8f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806127c2602a913960400191505060405180910390fd5b6000610951611221565b60068190555061095f611082565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2c576109a281610723565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610a9b7f000000000000000000000000420b17f69618610de18cacd1499460efb29e1d8f3084600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612200909392919063ffffffff16565b6003544210610ac557610aba62093a808361180890919063ffffffff16565b600481905550610b28565b6000610adc4260035461171b90919063ffffffff16565b90506000610af56004548361176590919063ffffffff16565b9050610b1f62093a80610b11838761185290919063ffffffff16565b61180890919063ffffffff16565b60048190555050505b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610bb357600080fd5b505afa158015610bc7573d6000803e3d6000fd5b505050506040513d6020811015610bdd57600080fd5b81019080805190602001909291905050509050610c0662093a808261180890919063ffffffff16565b6004541115610c7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b42600581905550610c9a62093a804261185290919063ffffffff16565b6003819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a150600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1657610d158161111b565b5b5050565b60026000541415610d93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555033610da4611221565b600681905550610db2611082565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e7f57610df581610723565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115610fad576000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5e3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c19092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b50600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fec57610feb8161111b565b5b506001600081905550565b600c6020528060005260406000206000915090505481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60045481565b7f000000000000000000000000420b17f69618610de18cacd1499460efb29e1d8f81565b600061109042600354612363565b905090565b7f000000000000000000000000e3d4c22d0543e050a8b3f713899854ed792fc1bd81565b611101600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118da565b565b60076020528060005260406000206000915090505481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061117481600a5461171b90919063ffffffff16565b600a81905550611183826112c3565b905080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111de81600a5461185290919063ffffffff16565b600a819055505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112188133611c48565b50565b60055481565b600080600a54141561123657600090506112c0565b6000600954141561124b5760065490506112c0565b6112bd6112ac600a5461129e670de0b6b3a7640000611290600454611282600554611274611082565b61171b90919063ffffffff16565b61176590919063ffffffff16565b61176590919063ffffffff16565b61180890919063ffffffff16565b60065461185290919063ffffffff16565b90505b90565b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561132e57600080fd5b505afa158015611342573d6000803e3d6000fd5b505050506040513d602081101561135857600080fd5b8101908080519060200190929190505050141561137857600090506115bf565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006113e560646113d760288561176590919063ffffffff16565b61180890919063ffffffff16565b9050600061159b606461158d603c61157f600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561145e57600080fd5b505afa158015611472573d6000803e3d6000fd5b505050506040513d602081101561148857600080fd5b8101908080519060200190929190505050611571600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a082318d6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561152557600080fd5b505afa158015611539573d6000803e3d6000fd5b505050506040513d602081101561154f57600080fd5b810190808051906020019092919050505060095461176590919063ffffffff16565b61180890919063ffffffff16565b61176590919063ffffffff16565b61180890919063ffffffff16565b90506115b96115b3828461185290919063ffffffff16565b84612363565b93505050505b919050565b600a5481565b6116957f000000000000000000000000e3d4c22d0543e050a8b3f713899854ed792fc1bd73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561165457600080fd5b505afa158015611668573d6000803e3d6000fd5b505050506040513d602081101561167e57600080fd5b810190808051906020019092919050505033611c48565b565b60065481565b6116e5600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118da565b6116ed610d1a565b565b60035481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061175d83836040518060400160405280600681526020017f7375623a202d000000000000000000000000000000000000000000000000000081525061237c565b905092915050565b6000808314156117785760009050611802565b600082840290508284828161178957fe5b04146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f6d756c3a202a000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b809150505b92915050565b600061184a83836040518060400160405280600681526020017f6469763a202f000000000000000000000000000000000000000000000000000081525061243c565b905092915050565b6000808284019050838110156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f6164643a202b000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8091505092915050565b60026000541415611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555033611964611221565b600681905550611972611082565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a3f576119b581610723565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211611ab5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b611aca8260095461171b90919063ffffffff16565b600981905550611b2282600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171b90919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bb033837f000000000000000000000000e3d4c22d0543e050a8b3f713899854ed792fc1bd73ffffffffffffffffffffffffffffffffffffffff166122c19092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c3c57611c3b8161111b565b5b50600160008190555050565b60026000541415611cc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080611cd2611221565b600681905550611ce0611082565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611dad57611d2381610723565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60007f000000000000000000000000420b17f69618610de18cacd1499460efb29e1d8f905060008173ffffffffffffffffffffffffffffffffffffffff16633b19e84a6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e1a57600080fd5b505afa158015611e2e573d6000803e3d6000fd5b505050506040513d6020811015611e4457600080fd5b8101908080519060200190929190505050905060008273ffffffffffffffffffffffffffffffffffffffff1663d7459b996040518163ffffffff1660e01b815260040160206040518083038186803b158015611e9f57600080fd5b505afa158015611eb3573d6000803e3d6000fd5b505050506040513d6020811015611ec957600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806127996029913960400191505060405180910390fd5b60008611611fd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f6465706f736974284761756765293a2063616e6e6f74207374616b652030000081525060200191505060405180910390fd5b6000612001612710611ff3848a61176590919063ffffffff16565b61180890919063ffffffff16565b90506000612018828961171b90919063ffffffff16565b905061206c81600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461185290919063ffffffff16565b600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120c48160095461185290919063ffffffff16565b60098190555061211787308a7f000000000000000000000000e3d4c22d0543e050a8b3f713899854ed792fc1bd73ffffffffffffffffffffffffffffffffffffffff16612200909392919063ffffffff16565b61216284837f000000000000000000000000e3d4c22d0543e050a8b3f713899854ed792fc1bd73ffffffffffffffffffffffffffffffffffffffff166122c19092919063ffffffff16565b8673ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d826040518082815260200191505060405180910390a25050505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121f3576121f28161111b565b5b5060016000819055505050565b6122bb846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612502565b50505050565b61235e8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612502565b505050565b60008183106123725781612374565b825b905092915050565b6000838311158290612429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123ee5780820151818401526020810190506123d3565b50505050905090810190601f16801561241b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124ad578082015181840152602081019050612492565b50505050905090810190601f1680156124da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816124f457fe5b049050809150509392505050565b6125218273ffffffffffffffffffffffffffffffffffffffff1661274d565b612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106125e257805182526020820191506020810190506020830392506125bf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612644576040519150601f19603f3d011682016040523d82523d6000602084013e612649565b606091505b5091509150816126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115612747578080602001905160208110156126e057600080fd5b8101908080519060200190929190505050612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806127ec602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b821415801561278f5750808214155b9250505091905056fe6465706f736974284761756765293a20747265617375727920686176656e2774206265656e2073657443616c6c6572206973206e6f742052657761726473446973747269627574696f6e20636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212207ef151f0814dc644efac582786d2d40d93a0ff777ee6c5447f8eac660e9decb364736f6c634300060c0033

Deployed Bytecode Sourcemap

8719:6893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11408:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9382:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9886:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8966:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11620:114;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13002:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11946:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13861:1113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13447:301;;;:::i;:::-;;9552:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9987:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9054:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8922:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10107:131;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8886:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12911:83;;;:::i;:::-;;9318:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11069:331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8828:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11849:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9090:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10246:402;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10656:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9468:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11742:99;;;:::i;:::-;;9126:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13756:97;;;:::i;:::-;;9016:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8855:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11408:204;11462:7;11489:115;11587:7;:16;11595:7;11587:16;;;;;;;;;;;;;;;;11489:93;11577:4;11489:83;11518:53;11539:22;:31;11562:7;11539:31;;;;;;;;;;;;;;;;11518:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;11489:15;:24;11505:7;11489:24;;;;;;;;;;;;;;;;:28;;:83;;;;:::i;:::-;:87;;:93;;;;:::i;:::-;:97;;:115;;;;:::i;:::-;11482:122;;11408:204;;;:::o;9382:42::-;;;;;;;;;;;;;;;;;:::o;9886:93::-;9932:7;9959:12;;9952:19;;9886:93;:::o;8966:41::-;9001:6;8966:41;:::o;11620:114::-;11675:7;11702:24;9001:6;11702:10;;:14;;:24;;;;:::i;:::-;11695:31;;11620:114;:::o;13002:79::-;13056:17;13066:6;13056:9;:17::i;:::-;13002:79;:::o;11946:106::-;12019:25;12028:6;12036:7;12019:8;:25::i;:::-;11946:106;;:::o;13861:1113::-;9231:12;9217:26;;:10;:26;;;9209:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13952:1:::1;15055:16;:14;:16::i;:::-;15032:20;:39;;;;15099:26;:24;:26::i;:::-;15082:14;:43;;;;15159:1;15140:21;;:7;:21;;;15136:157;;15197:15;15204:7;15197:6;:15::i;:::-;15178:7;:16;15186:7;15178:16;;;;;;;;;;;;;;;:34;;;;15261:20;;15227:22;:31;15250:7;15227:31;;;;;;;;;;;;;;;:54;;;;15136:157;13967:60:::2;13991:12;14013:4;14020:6;13967;;;;;;;;;;;:23;;;;:60;;;;;;:::i;:::-;14061:12;;14042:15;:31;14038:304;;14103:20;9001:6;14103;:10;;:20;;;;:::i;:::-;14090:10;:33;;;;14038:304;;;14156:17;14176:33;14193:15;14176:12;;:16;;:33;;;;:::i;:::-;14156:53;;14224:16;14243:25;14257:10;;14243:9;:13;;:25;;;;:::i;:::-;14224:44;;14296:34;9001:6;14296:20;14307:8;14296:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;14283:10;:47;;;;14038:304;;;14702:12;14717:6;;;;;;;;;;;:16;;;14742:4;14717:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;14702:46;;14781:21;9001:6;14781:7;:11;;:21;;;;:::i;:::-;14767:10;;:35;;14759:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;14861:15;14844:14;:32;;;;14902:29;9001:6;14902:15;:19;;:29;;;;:::i;:::-;14887:12;:44;;;;14947:19;14959:6;14947:19;;;;;;;;;;;;;;;;;;15303:1;15338::::1;15319:21;;:7;:21;;;15315:67;;15357:13;15362:7;15357:4;:13::i;:::-;15315:67;9301:1;13861:1113:::0;:::o;13447:301::-;7608:1;8212:7;;:19;;8204:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7608:1;8345:7;:18;;;;13501:10:::1;15055:16;:14;:16::i;:::-;15032:20;:39;;;;15099:26;:24;:26::i;:::-;15082:14;:43;;;;15159:1;15140:21;;:7;:21;;;15136:157;;15197:15;15204:7;15197:6;:15::i;:::-;15178:7;:16;15186:7;15178:16;;;;;;;;;;;;;;;:34;;;;15261:20;;15227:22;:31;15250:7;15227:31;;;;;;;;;;;;;;;:54;;;;15136:157;13524:14:::2;13541:7;:19;13549:10;13541:19;;;;;;;;;;;;;;;;13524:36;;13584:1;13575:6;:10;13571:170;;;13624:1;13602:7;:19;13610:10;13602:19;;;;;;;;;;;;;;;:23;;;;13640:39;13660:10;13672:6;13640;;;;;;;;;;;:19;;;;:39;;;;;:::i;:::-;13710:10;13699:30;;;13722:6;13699:30;;;;;;;;;;;;;;;;;;13571:170;15303:1;15338::::1;15319:21;;:7;:21;;;15315:67;;15357:13;15362:7;15357:4;:13::i;:::-;15315:67;8376:1;7564::::0;8524:7;:22;;;;13447:301::o;9552:50::-;;;;;;;;;;;;;;;;;:::o;9987:112::-;10046:7;10073:9;:18;10083:7;10073:18;;;;;;;;;;;;;;;;10066:25;;9987:112;;;:::o;9054:29::-;;;;:::o;8922:37::-;;;:::o;10107:131::-;10164:7;10191:39;10200:15;10217:12;;10191:8;:39::i;:::-;10184:46;;10107:131;:::o;8886:29::-;;;:::o;12911:83::-;12954:32;12964:9;:21;12974:10;12964:21;;;;;;;;;;;;;;;;12954:9;:32::i;:::-;12911:83::o;9318:57::-;;;;;;;;;;;;;;;;;:::o;11069:331::-;11118:20;11141:15;:24;11157:7;11141:24;;;;;;;;;;;;;;;;11118:47;;11192:34;11210:15;11192:13;;:17;;:34;;;;:::i;:::-;11176:13;:50;;;;11255:23;11270:7;11255:14;:23::i;:::-;11237:41;;11316:15;11289;:24;11305:7;11289:24;;;;;;;;;;;;;;;:42;;;;11358:34;11376:15;11358:13;;:17;;:34;;;;:::i;:::-;11342:13;:50;;;;11069:331;;:::o;8828:20::-;;;;;;;;;;;;;:::o;11849:89::-;11902:28;11911:6;11919:10;11902:8;:28::i;:::-;11849:89;:::o;9090:29::-;;;;:::o;10246:402::-;10293:7;10334:1;10317:13;;:18;10313:59;;;10359:1;10352:8;;;;10313:59;10404:1;10388:12;;:17;10384:77;;;10429:20;;10422:27;;;;10384:77;10491:149;10534:91;10611:13;;10534:72;10601:4;10534:62;10585:10;;10534:46;10565:14;;10534:26;:24;:26::i;:::-;:30;;:46;;;;:::i;:::-;:50;;:62;;;;:::i;:::-;:66;;:72;;;;:::i;:::-;:76;;:91;;;;:::i;:::-;10491:20;;:24;;:149;;;;:::i;:::-;10471:169;;10246:402;;:::o;10656:405::-;10718:4;10764:1;10738:8;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:27;10735:40;;;10774:1;10767:8;;;;10735:40;10786:13;10802:9;:18;10812:7;10802:18;;;;;;;;;;;;;;;;10786:34;;10831:13;10847:25;10868:3;10847:16;10860:2;10847:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;10831:41;;10883:14;10900:92;10988:3;10900:83;10980:2;10901:73;10951:8;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10901:45;10918:8;;;;;;;;;;;:18;;;10937:7;10918:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10901:12;;:16;;:45;;;;:::i;:::-;:49;;:73;;;;:::i;:::-;10900:79;;:83;;;;:::i;:::-;:87;;:92;;;;:::i;:::-;10883:109;;11010:43;11019:23;11032:9;11019:8;:12;;:23;;;;:::i;:::-;11044:8;11010;:43::i;:::-;11003:50;;;;;10656:405;;;;:::o;9468:25::-;;;;:::o;11742:99::-;11784:49;11793:5;:15;;;11809:10;11793:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11822:10;11784:8;:49::i;:::-;11742:99::o;9126:35::-;;;;:::o;13756:97::-;13791:32;13801:9;:21;13811:10;13801:21;;;;;;;;;;;;;;;;13791:9;:32::i;:::-;13834:11;:9;:11::i;:::-;13756:97::o;9016:31::-;;;;:::o;8855:22::-;;;;;;;;;;;;;:::o;479:103::-;531:4;555:19;559:1;562;555:19;;;;;;;;;;;;;;;;;:3;:19::i;:::-;548:26;;479:103;;;;:::o;774:432::-;826:4;1073:1;1068;:6;1064:47;;;1098:1;1091:8;;;;1064:47;1123:6;1136:1;1132;:5;1123:14;;1165:1;1160;1156;:5;;;;;;:10;1148:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1197:1;1190:8;;;774:432;;;;;:::o;1461:103::-;1513:4;1537:19;1541:1;1544;1537:19;;;;;;;;;;;;;;;;;:3;:19::i;:::-;1530:26;;1461:103;;;;:::o;139:148::-;191:4;208:6;221:1;217;:5;208:14;;246:1;241;:6;;233:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278:1;271:8;;;139:148;;;;:::o;13089:350::-;7608:1;8212:7;;:19;;8204:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7608:1;8345:7;:18;;;;13156:10:::1;15055:16;:14;:16::i;:::-;15032:20;:39;;;;15099:26;:24;:26::i;:::-;15082:14;:43;;;;15159:1;15140:21;;:7;:21;;;15136:157;;15197:15;15204:7;15197:6;:15::i;:::-;15178:7;:16;15186:7;15178:16;;;;;;;;;;;;;;;:34;;;;15261:20;;15227:22;:31;15250:7;15227:31;;;;;;;;;;;;;;;:54;;;;15136:157;13196:1:::2;13187:6;:10;13179:40;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;13245:24;13262:6;13245:12;;:16;;:24;;;;:::i;:::-;13230:12;:39;;;;13304:33;13330:6;13304:9;:21;13314:10;13304:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;13280:9;:21;13290:10;13280:21;;;;;;;;;;;;;;;:57;;;;13348:38;13367:10;13379:6;13348:5;:18;;;;:38;;;;;:::i;:::-;13412:10;13402:29;;;13424:6;13402:29;;;;;;;;;;;;;;;;;;15338:1:::1;15319:21;;:7;:21;;;15315:67;;15357:13;15362:7;15357:4;:13::i;:::-;15315:67;8376:1;7564::::0;8524:7;:22;;;;13089:350;:::o;12060:843::-;7608:1;8212:7;;:19;;8204:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7608:1;8345:7;:18;;;;12143:7:::1;15055:16;:14;:16::i;:::-;15032:20;:39;;;;15099:26;:24;:26::i;:::-;15082:14;:43;;;;15159:1;15140:21;;:7;:21;;;15136:157;;15197:15;15204:7;15197:6;:15::i;:::-;15178:7;:16;15186:7;15178:16;;;;;;;;;;;;;;;:34;;;;15261:20;;15227:22;:31;15250:7;15227:31;;;;;;;;;;;;;;;:54;;;;15136:157;12163:22:::2;12200:12;12163:50;;12224:16;12243:10;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;12224:43;;12278:22;12303:10;:28;;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;12278:55;;12374:3;12354:24;;:8;:24;;;;12346:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12452:1;12443:6;:10;12435:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;12501:17;12521:37;12552:5;12521:26;12532:14;12521:6;:10;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;12501:57;;12569:18;12590:21;12601:9;12590:6;:10;;:21;;;;:::i;:::-;12569:42;;12645:34;12668:10;12645:9;:18;12655:7;12645:18;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;12624:9;:18;12634:7;12624:18;;;;;;;;;;;;;;;:55;;;;12705:28;12722:10;12705:12;;:16;;:28;;;;:::i;:::-;12690:12;:43;;;;12746:54;12769:7;12786:4;12793:6;12746:5;:22;;;;:54;;;;;;:::i;:::-;12811:39;12830:8;12840:9;12811:5;:18;;;;:39;;;;;:::i;:::-;12875:7;12868:27;;;12884:10;12868:27;;;;;;;;;;;;;;;;;;15303:1;;;;;15338::::1;15319:21;;:7;:21;;;15315:67;;15357:13;15362:7;15357:4;:13::i;:::-;15315:67;8376:1;7564::::0;8524:7;:22;;;;12060:843;;:::o;3461:204::-;3562:95;3581:5;3611:27;;;3640:4;3646:2;3650:5;3588:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3562:18;:95::i;:::-;3461:204;;;;:::o;3277:176::-;3360:85;3379:5;3409:23;;;3434:2;3438:5;3386:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3360:18;:85::i;:::-;3277:176;;;:::o;5532:106::-;5590:7;5621:1;5617;:5;:13;;5629:1;5617:13;;;5625:1;5617:13;5610:20;;5532:106;;;;:::o;588:180::-;668:4;698:1;693;:6;;701:12;685:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725:6;738:1;734;:5;725:14;;759:1;752:8;;;588:180;;;;;:::o;1570:179::-;1650:4;1679:1;1675;:5;1682:12;1667:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1706:6;1719:1;1715;:5;;;;;;1706:14;;1740:1;1733:8;;;1570:179;;;;;:::o;4657:598::-;4745:27;4753:5;4745:25;;;:27::i;:::-;4737:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4882:12;4896:23;4931:5;4923:19;;4943:4;4923:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4881:67;;;;4967:7;4959:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5048:1;5028:10;:17;:21;5024:224;;;5170:10;5159:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5151:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5024:224;4657:598;;;;:::o;1779:374::-;1839:4;1856:16;1883:19;1905:66;1883:88;;;;2074:7;2062:20;2050:32;;2114:3;2102:15;;:8;:15;;:42;;;;;2133:11;2121:8;:23;;2102:42;2094:51;;;;1779:374;;;:::o

Swarm Source

ipfs://7ef151f0814dc644efac582786d2d40d93a0ff777ee6c5447f8eac660e9decb3

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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.