Contract 0x676CF948e84560808EEfb7Af9D3a46e0d6A6F988

 
Txn Hash Method
Block
From
To
Value [Txn Fee]
0x442bcdc261eb1eed1c066c146b062a3fb70db736999e322741a9f9460934ebf90x60806040202130752022-08-14 8:19:02230 days 12 hrs agoMycelium: Deployer IN  Create: RewardReader0 ETH0.001305495723 ETH0.090703826
[ Download CSV Export 
Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
RewardReader

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan on 2022-09-05
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

interface IVester {
    function rewardTracker() external view returns (address);

    function claimForAccount(address _account, address _receiver) external returns (uint256);

    function claimable(address _account) external view returns (uint256);

    function cumulativeClaimAmounts(address _account) external view returns (uint256);

    function claimedAmounts(address _account) external view returns (uint256);

    function pairAmounts(address _account) external view returns (uint256);

    function getVestedAmount(address _account) external view returns (uint256);

    function transferredAverageStakedAmounts(address _account) external view returns (uint256);

    function transferredCumulativeRewards(address _account) external view returns (uint256);

    function cumulativeRewardDeductions(address _account) external view returns (uint256);

    function bonusRewards(address _account) external view returns (uint256);

    function transferStakeValues(address _sender, address _receiver) external;

    function setTransferredAverageStakedAmounts(address _account, uint256 _amount) external;

    function setTransferredCumulativeRewards(address _account, uint256 _amount) external;

    function setCumulativeRewardDeductions(address _account, uint256 _amount) external;

    function setBonusRewards(address _account, uint256 _amount) external;

    function getMaxVestableAmount(address _account) external view returns (uint256);

    function getCombinedAverageStakedAmount(address _account) external view returns (uint256);
}

interface IRewardTracker {
    function depositBalances(address _account, address _depositToken) external view returns (uint256);

    function stakedAmounts(address _account) external view returns (uint256);

    function updateRewards() external;

    function stake(address _depositToken, uint256 _amount) external;

    function stakeForAccount(
        address _fundingAccount,
        address _account,
        address _depositToken,
        uint256 _amount
    ) external;

    function unstake(address _depositToken, uint256 _amount) external;

    function unstakeForAccount(
        address _account,
        address _depositToken,
        uint256 _amount,
        address _receiver
    ) external;

    function tokensPerInterval() external view returns (uint256);

    function claim(address _receiver) external returns (uint256);

    function claimForAccount(address _account, address _receiver) external returns (uint256);

    function claimable(address _account) external view returns (uint256);

    function averageStakedAmounts(address _account) external view returns (uint256);

    function cumulativeRewards(address _account) external view returns (uint256);
}

contract RewardReader {
    using SafeMath for uint256;

    function getDepositBalances(
        address _account,
        address[] memory _depositTokens,
        address[] memory _rewardTrackers
    ) public view returns (uint256[] memory) {
        uint256[] memory amounts = new uint256[](_rewardTrackers.length);
        for (uint256 i = 0; i < _rewardTrackers.length; i++) {
            IRewardTracker rewardTracker = IRewardTracker(_rewardTrackers[i]);
            amounts[i] = rewardTracker.depositBalances(_account, _depositTokens[i]);
        }
        return amounts;
    }

    function getStakingInfo(address _account, address[] memory _rewardTrackers) public view returns (uint256[] memory) {
        uint256 propsLength = 5;
        uint256[] memory amounts = new uint256[](_rewardTrackers.length * propsLength);
        for (uint256 i = 0; i < _rewardTrackers.length; i++) {
            IRewardTracker rewardTracker = IRewardTracker(_rewardTrackers[i]);
            amounts[i * propsLength] = rewardTracker.claimable(_account);
            amounts[i * propsLength + 1] = rewardTracker.tokensPerInterval();
            amounts[i * propsLength + 2] = rewardTracker.averageStakedAmounts(_account);
            amounts[i * propsLength + 3] = rewardTracker.cumulativeRewards(_account);
            amounts[i * propsLength + 4] = IERC20(_rewardTrackers[i]).totalSupply();
        }
        return amounts;
    }

    function getVestingInfoV2(address _account, address[] memory _vesters) public view returns (uint256[] memory) {
        uint256 propsLength = 12;
        uint256[] memory amounts = new uint256[](_vesters.length * propsLength);
        for (uint256 i = 0; i < _vesters.length; i++) {
            IVester vester = IVester(_vesters[i]);
            IRewardTracker rewardTracker = IRewardTracker(vester.rewardTracker());
            amounts[i * propsLength] = vester.pairAmounts(_account);
            amounts[i * propsLength + 1] = vester.getVestedAmount(_account);
            amounts[i * propsLength + 2] = IERC20(_vesters[i]).balanceOf(_account);
            amounts[i * propsLength + 3] = vester.claimedAmounts(_account);
            amounts[i * propsLength + 4] = vester.claimable(_account);
            amounts[i * propsLength + 5] = vester.getMaxVestableAmount(_account);
            amounts[i * propsLength + 6] = vester.getCombinedAverageStakedAmount(_account);
            amounts[i * propsLength + 7] = rewardTracker.cumulativeRewards(_account);
            amounts[i * propsLength + 8] = vester.transferredCumulativeRewards(_account);
            amounts[i * propsLength + 9] = vester.bonusRewards(_account);
            amounts[i * propsLength + 10] = rewardTracker.averageStakedAmounts(_account);
            amounts[i * propsLength + 11] = vester.transferredAverageStakedAmounts(_account);
        }
        return amounts;
    }
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address[]","name":"_depositTokens","type":"address[]"},{"internalType":"address[]","name":"_rewardTrackers","type":"address[]"}],"name":"getDepositBalances","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address[]","name":"_rewardTrackers","type":"address[]"}],"name":"getStakingInfo","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address[]","name":"_vesters","type":"address[]"}],"name":"getVestingInfoV2","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b50611004806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063575157e414610046578063937a0be8146101c9578063e1fc2a381461027a575b600080fd5b6101796004803603606081101561005c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561008657600080fd5b82018360208201111561009857600080fd5b803590602001918460208302840111600160201b831117156100b957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561010857600080fd5b82018360208201111561011a57600080fd5b803590602001918460208302840111600160201b8311171561013b57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061032b945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101b557818101518382015260200161019d565b505050509050019250505060405180910390f35b610179600480360360408110156101df57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561020957600080fd5b82018360208201111561021b57600080fd5b803590602001918460208302840111600160201b8311171561023c57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061045e945050505050565b6101796004803603604081101561029057600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156102ba57600080fd5b8201836020820111156102cc57600080fd5b803590602001918460208302840111600160201b831117156102ed57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506107ba945050505050565b60608082516001600160401b038111801561034557600080fd5b5060405190808252806020026020018201604052801561036f578160200160208202803683370190505b50905060005b835181101561045557600084828151811061038c57fe5b60200260200101519050806001600160a01b031663f5d9d63e888885815181106103b257fe5b60200260200101516040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561040757600080fd5b505afa15801561041b573d6000803e3d6000fd5b505050506040513d602081101561043157600080fd5b5051835184908490811061044157fe5b602090810291909101015250600101610375565b50949350505050565b60606000600590506060818451026001600160401b038111801561048157600080fd5b506040519080825280602002602001820160405280156104ab578160200160208202803683370190505b50905060005b84518110156104555760008582815181106104c857fe5b60200260200101519050806001600160a01b031663402914f5886040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561051f57600080fd5b505afa158015610533573d6000803e3d6000fd5b505050506040513d602081101561054957600080fd5b50518351849084870290811061055b57fe5b602002602001018181525050806001600160a01b031663a8d936276040518163ffffffff1660e01b815260040160206040518083038186803b1580156105a057600080fd5b505afa1580156105b4573d6000803e3d6000fd5b505050506040513d60208110156105ca57600080fd5b5051835184906001858802019081106105df57fe5b602002602001018181525050806001600160a01b031663a3180217886040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561063857600080fd5b505afa15801561064c573d6000803e3d6000fd5b505050506040513d602081101561066257600080fd5b50518351849060028588020190811061067757fe5b602002602001018181525050806001600160a01b0316633792def3886040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156106d057600080fd5b505afa1580156106e4573d6000803e3d6000fd5b505050506040513d60208110156106fa57600080fd5b50518351849060038588020190811061070f57fe5b60200260200101818152505085828151811061072757fe5b60200260200101516001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561076757600080fd5b505afa15801561077b573d6000803e3d6000fd5b505050506040513d602081101561079157600080fd5b5051835184906004858802019081106107a657fe5b6020908102919091010152506001016104b1565b60606000600c90506060818451026001600160401b03811180156107dd57600080fd5b50604051908082528060200260200182016040528015610807578160200160208202803683370190505b50905060005b845181101561045557600085828151811061082457fe5b602002602001015190506000816001600160a01b0316636bcb411a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561086957600080fd5b505afa15801561087d573d6000803e3d6000fd5b505050506040513d602081101561089357600080fd5b505160408051635d50e72960e01b81526001600160a01b038b81166004830152915192935090841691635d50e72991602480820192602092909190829003018186803b1580156108e257600080fd5b505afa1580156108f6573d6000803e3d6000fd5b505050506040513d602081101561090c57600080fd5b50518451859085880290811061091e57fe5b602002602001018181525050816001600160a01b031663d5a73fdd896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561097757600080fd5b505afa15801561098b573d6000803e3d6000fd5b505050506040513d60208110156109a157600080fd5b5051845185906001868902019081106109b657fe5b6020026020010181815250508683815181106109ce57fe5b60200260200101516001600160a01b03166370a08231896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610a2257600080fd5b505afa158015610a36573d6000803e3d6000fd5b505050506040513d6020811015610a4c57600080fd5b505184518590600286890201908110610a6157fe5b602002602001018181525050816001600160a01b03166371417b32896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610aba57600080fd5b505afa158015610ace573d6000803e3d6000fd5b505050506040513d6020811015610ae457600080fd5b505184518590600386890201908110610af957fe5b602002602001018181525050816001600160a01b031663402914f5896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610b5257600080fd5b505afa158015610b66573d6000803e3d6000fd5b505050506040513d6020811015610b7c57600080fd5b505184518590600486890201908110610b9157fe5b602002602001018181525050816001600160a01b03166308f26c76896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610bea57600080fd5b505afa158015610bfe573d6000803e3d6000fd5b505050506040513d6020811015610c1457600080fd5b505184518590600586890201908110610c2957fe5b602002602001018181525050816001600160a01b03166345f01ee6896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610c8257600080fd5b505afa158015610c96573d6000803e3d6000fd5b505050506040513d6020811015610cac57600080fd5b505184518590600686890201908110610cc157fe5b602002602001018181525050806001600160a01b0316633792def3896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d6020811015610d4457600080fd5b505184518590600786890201908110610d5957fe5b602002602001018181525050816001600160a01b031663b71bce2a896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610db257600080fd5b505afa158015610dc6573d6000803e3d6000fd5b505050506040513d6020811015610ddc57600080fd5b505184518590600886890201908110610df157fe5b602002602001018181525050816001600160a01b031663a2545fa5896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610e4a57600080fd5b505afa158015610e5e573d6000803e3d6000fd5b505050506040513d6020811015610e7457600080fd5b505184518590600986890201908110610e8957fe5b602002602001018181525050806001600160a01b031663a3180217896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ee257600080fd5b505afa158015610ef6573d6000803e3d6000fd5b505050506040513d6020811015610f0c57600080fd5b505184518590600a86890201908110610f2157fe5b602002602001018181525050816001600160a01b0316637337035c896040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610f7a57600080fd5b505afa158015610f8e573d6000803e3d6000fd5b505050506040513d6020811015610fa457600080fd5b505184518590600b86890201908110610fb957fe5b6020908102919091010152505060010161080d56fea2646970667358221220b2fcba0aeccb3e6bc69788fa2dbd8c1e9c4f850a7d584e51e645018a2f7e4eee64736f6c634300060c0033

Deployed ByteCode Sourcemap

11025:2922:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11089:535;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11089:535:0;;;;;;;;;;;;;;;-1:-1:-1;;;11089:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11089:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11089:535:0;;;;;;;;-1:-1:-1;11089:535:0;;-1:-1:-1;;;;;11089:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11089:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11089:535:0;;-1:-1:-1;11089:535:0;;-1:-1:-1;;;;;11089:535:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11632:843;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11632:843:0;;;;;;;;;;;;;;;-1:-1:-1;;;11632:843:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11632:843:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11632:843:0;;-1:-1:-1;11632:843:0;;-1:-1:-1;;;;;11632:843:0:i;12483:1461::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12483:1461:0;;;;;;;;;;;;;;;-1:-1:-1;;;12483:1461:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12483:1461:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12483:1461:0;;-1:-1:-1;12483:1461:0;;-1:-1:-1;;;;;12483:1461:0:i;11089:535::-;11257:16;11286:24;11327:15;:22;-1:-1:-1;;;;;11313:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11313:37:0;;11286:64;;11366:9;11361:231;11385:15;:22;11381:1;:26;11361:231;;;11429:28;11475:15;11491:1;11475:18;;;;;;;;;;;;;;11429:65;;11522:13;-1:-1:-1;;;;;11522:29:0;;11552:8;11562:14;11577:1;11562:17;;;;;;;;;;;;;;11522:58;;;;;;;;;;;;;-1:-1:-1;;;;;11522:58:0;;;;;;-1:-1:-1;;;;;11522:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11522:58:0;11509:10;;:7;;11517:1;;11509:10;;;;;;;;;;;;;;;:71;-1:-1:-1;11409:3:0;;11361:231;;;-1:-1:-1;11609:7:0;11089:535;-1:-1:-1;;;;11089:535:0:o;11632:843::-;11729:16;11758:19;11780:1;11758:23;;11792:24;11858:11;11833:15;:22;:36;-1:-1:-1;;;;;11819:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11819:51:0;;11792:78;;11886:9;11881:562;11905:15;:22;11901:1;:26;11881:562;;;11949:28;11995:15;12011:1;11995:18;;;;;;;;;;;;;;11949:65;;12056:13;-1:-1:-1;;;;;12056:23:0;;12080:8;12056:33;;;;;;;;;;;;;-1:-1:-1;;;;;12056:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12056:33:0;12029:24;;:7;;12037:15;;;;12029:24;;;;;;;;;;;:60;;;;;12135:13;-1:-1:-1;;;;;12135:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12135:33:0;12104:28;;:7;;12130:1;12112:15;;;:19;;12104:28;;;;;;;;;;;:64;;;;;12214:13;-1:-1:-1;;;;;12214:34:0;;12249:8;12214:44;;;;;;;;;;;;;-1:-1:-1;;;;;12214:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12214:44:0;12183:28;;:7;;12209:1;12191:15;;;:19;;12183:28;;;;;;;;;;;:75;;;;;12304:13;-1:-1:-1;;;;;12304:31:0;;12336:8;12304:41;;;;;;;;;;;;;-1:-1:-1;;;;;12304:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12304:41:0;12273:28;;:7;;12299:1;12281:15;;;:19;;12273:28;;;;;;;;;;;:72;;;;;12398:15;12414:1;12398:18;;;;;;;;;;;;;;-1:-1:-1;;;;;12391:38:0;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12391:40:0;12360:28;;:7;;12386:1;12368:15;;;:19;;12360:28;;;;;;;;;;;;;;;:71;-1:-1:-1;11929:3:0;;11881:562;;12483:1461;12575:16;12604:19;12626:2;12604:24;;12639;12698:11;12680:8;:15;:29;-1:-1:-1;;;;;12666:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12666:44:0;;12639:71;;12726:9;12721:1191;12745:8;:15;12741:1;:19;12721:1191;;;12782:14;12807:8;12816:1;12807:11;;;;;;;;;;;;;;12782:37;;12834:28;12880:6;-1:-1:-1;;;;;12880:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12880:22:0;12945:28;;;-1:-1:-1;;;12945:28:0;;-1:-1:-1;;;;;12945:28:0;;;;;;;;;12880:22;;-1:-1:-1;12945:18:0;;;;;;:28;;;;;12880:22;;12945:28;;;;;;;;:18;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12945:28:0;12918:24;;:7;;12926:15;;;;12918:24;;;;;;;;;;;:55;;;;;13019:6;-1:-1:-1;;;;;13019:22:0;;13042:8;13019:32;;;;;;;;;;;;;-1:-1:-1;;;;;13019:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13019:32:0;12988:28;;:7;;13014:1;12996:15;;;:19;;12988:28;;;;;;;;;;;:63;;;;;13104:8;13113:1;13104:11;;;;;;;;;;;;;;-1:-1:-1;;;;;13097:29:0;;13127:8;13097:39;;;;;;;;;;;;;-1:-1:-1;;;;;13097:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13097:39:0;13066:28;;:7;;13092:1;13074:15;;;:19;;13066:28;;;;;;;;;;;:70;;;;;13182:6;-1:-1:-1;;;;;13182:21:0;;13204:8;13182:31;;;;;;;;;;;;;-1:-1:-1;;;;;13182:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13182:31:0;13151:28;;:7;;13177:1;13159:15;;;:19;;13151:28;;;;;;;;;;;:62;;;;;13259:6;-1:-1:-1;;;;;13259:16:0;;13276:8;13259:26;;;;;;;;;;;;;-1:-1:-1;;;;;13259:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13259:26:0;13228:28;;:7;;13254:1;13236:15;;;:19;;13228:28;;;;;;;;;;;:57;;;;;13331:6;-1:-1:-1;;;;;13331:27:0;;13359:8;13331:37;;;;;;;;;;;;;-1:-1:-1;;;;;13331:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13331:37:0;13300:28;;:7;;13326:1;13308:15;;;:19;;13300:28;;;;;;;;;;;:68;;;;;13414:6;-1:-1:-1;;;;;13414:37:0;;13452:8;13414:47;;;;;;;;;;;;;-1:-1:-1;;;;;13414:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13414:47:0;13383:28;;:7;;13409:1;13391:15;;;:19;;13383:28;;;;;;;;;;;:78;;;;;13507:13;-1:-1:-1;;;;;13507:31:0;;13539:8;13507:41;;;;;;;;;;;;;-1:-1:-1;;;;;13507:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13507:41:0;13476:28;;:7;;13502:1;13484:15;;;:19;;13476:28;;;;;;;;;;;:72;;;;;13594:6;-1:-1:-1;;;;;13594:35:0;;13630:8;13594:45;;;;;;;;;;;;;-1:-1:-1;;;;;13594:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13594:45:0;13563:28;;:7;;13589:1;13571:15;;;:19;;13563:28;;;;;;;;;;;:76;;;;;13685:6;-1:-1:-1;;;;;13685:19:0;;13705:8;13685:29;;;;;;;;;;;;;-1:-1:-1;;;;;13685:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13685:29:0;13654:28;;:7;;13680:1;13662:15;;;:19;;13654:28;;;;;;;;;;;:60;;;;;13761:13;-1:-1:-1;;;;;13761:34:0;;13796:8;13761:44;;;;;;;;;;;;;-1:-1:-1;;;;;13761:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13761:44:0;13729:29;;:7;;13755:2;13737:15;;;:20;;13729:29;;;;;;;;;;;:76;;;;;13852:6;-1:-1:-1;;;;;13852:38:0;;13891:8;13852:48;;;;;;;;;;;;;-1:-1:-1;;;;;13852:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13852:48:0;13820:29;;:7;;13846:2;13828:15;;;:20;;13820:29;;;;;;;;;;;;;;;:80;-1:-1:-1;;12762:3:0;;12721:1191;

Metadata Hash

b2fcba0aeccb3e6bc69788fa2dbd8c1e9c4f850a7d584e51e645018a2f7e4eee
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.