ETH Price: $2,165.59 (+0.83%)

Contract

0x7c36fc8D72b6D3D1C45D569Ae703c34D502E5F2f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Manual Send172345902023-05-11 3:58:111049 days ago1683777491IN
0x7c36fc8D...D502E5F2f
0 ETH0.0063854672.6140424
Set Token172344832023-05-11 3:36:351049 days ago1683776195IN
0x7c36fc8D...D502E5F2f
0 ETH0.0023233680.08573437
Update Last Dist...172344012023-05-11 3:20:111049 days ago1683775211IN
0x7c36fc8D...D502E5F2f
0 ETH0.0024736487.10334338
Update Last Dist...172341822023-05-11 2:35:471049 days ago1683772547IN
0x7c36fc8D...D502E5F2f
0 ETH0.001835364.62552121
Update Last Dist...172341542023-05-11 2:30:111049 days ago1683772211IN
0x7c36fc8D...D502E5F2f
0 ETH0.0015821861.80661182
Update Last Dist...172341542023-05-11 2:30:111049 days ago1683772211IN
0x7c36fc8D...D502E5F2f
0 ETH0.0017338661.05377869
Update Last Dist...172341262023-05-11 2:24:231049 days ago1683771863IN
0x7c36fc8D...D502E5F2f
0 ETH0.0018490765.11043188
Update Last Dist...172341202023-05-11 2:23:111049 days ago1683771791IN
0x7c36fc8D...D502E5F2f
0 ETH0.0017907563.05686359
Update Last Dist...172340692023-05-11 2:12:471049 days ago1683771167IN
0x7c36fc8D...D502E5F2f
0 ETH0.0018201864.09330642
Update Last Dist...172340342023-05-11 2:05:471049 days ago1683770747IN
0x7c36fc8D...D502E5F2f
0 ETH0.0018594765.47670122
Update Last Dist...172339812023-05-11 1:55:111049 days ago1683770111IN
0x7c36fc8D...D502E5F2f
0 ETH0.0020208371.15862467
Update Last Dist...172339742023-05-11 1:53:471049 days ago1683770027IN
0x7c36fc8D...D502E5F2f
0 ETH0.0017664269.0037315
Update Last Dist...172339742023-05-11 1:53:471049 days ago1683770027IN
0x7c36fc8D...D502E5F2f
0 ETH0.0019453968.5022529
Add Whitelist172339682023-05-11 1:52:231049 days ago1683769943IN
0x7c36fc8D...D502E5F2f
0 ETH0.0031130567.39371414
Update Last Dist...172339672023-05-11 1:52:111049 days ago1683769931IN
0x7c36fc8D...D502E5F2f
0 ETH0.0020182871.06886495
Update Last Dist...172339542023-05-11 1:49:351049 days ago1683769775IN
0x7c36fc8D...D502E5F2f
0 ETH0.0020309871.51624369
Update Last Dist...172339322023-05-11 1:44:591049 days ago1683769499IN
0x7c36fc8D...D502E5F2f
0 ETH0.0024631286.73268616
Update Last Dist...172339082023-05-11 1:39:591049 days ago1683769199IN
0x7c36fc8D...D502E5F2f
0 ETH0.0019609869.05129797
Update Last Dist...172339022023-05-11 1:38:471049 days ago1683769127IN
0x7c36fc8D...D502E5F2f
0 ETH0.0020451572.01504239
Update Last Dist...172338992023-05-11 1:38:111049 days ago1683769091IN
0x7c36fc8D...D502E5F2f
0 ETH0.0019053767.09296771
Update Last Dist...172338782023-05-11 1:33:591049 days ago1683768839IN
0x7c36fc8D...D502E5F2f
0 ETH0.0020152270.96115731
Add Whitelist172338782023-05-11 1:33:591049 days ago1683768839IN
0x7c36fc8D...D502E5F2f
0 ETH0.0032778370.96115731
Update Last Dist...172338742023-05-11 1:32:591049 days ago1683768779IN
0x7c36fc8D...D502E5F2f
0 ETH0.001982769.8160076
Update Last Dist...172338672023-05-11 1:31:351049 days ago1683768695IN
0x7c36fc8D...D502E5F2f
0 ETH0.0020634672.65965184
Update Last Dist...172338502023-05-11 1:27:591049 days ago1683768479IN
0x7c36fc8D...D502E5F2f
0 ETH0.0021651576.24043513
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SlothDividendDistributor

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-05-11
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.12;
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;
    }
}
abstract contract Context {
    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);
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
interface IERC20 {
    function decimals() external returns (uint8);
    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);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract POOH {
    mapping(address => uint256) public lastDistributeTime;
}
contract SlothDividendDistributor is Ownable {
    using SafeMath for uint256;
    address public _token;
    address public immutable SLOTHSQUAD = address(0x5e58c97F781f98d70F9b72e69629312bF70EBaf4); //Mainnet Sloth
    struct Share {
        uint256 amount;
        uint256 totalExcluded;
        uint256 totalClaimed;
    }
    address[] private shareholders;
    mapping (address => uint256) private shareholderIndexes;
    mapping (address => Share) public shares;
    mapping(address => bool) public whitelists;
    uint256 public totalShares;
    uint256 public totalDividends;
    uint256 public totalClaimed;
    uint256 public dividendsPerShare;
    uint256 private dividendsPerShareAccuracyFactor = 10 ** 36;
    uint256 lastDistributeTime = 0;
    modifier onlyToken() {
        require(msg.sender == _token); _;
    }
    receive() external payable { }
    function setToken(address _pwsb) external onlyOwner {
        _token = _pwsb;
    }
    function deposit(uint256 amount) external onlyToken {
        if (amount > 0) {
            totalDividends = totalDividends.add(amount);
            dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares));
        }
    }
    function setShare(address shareholder, uint256 amount, bool mode) external {
        if(!whitelists[shareholder] && mode){
            require(POOH(_token).lastDistributeTime(shareholder) > lastDistributeTime);
        } else {
            shares[shareholder].amount += amount;
        }
    }
    function distributeDividend(address shareholder) internal {
        if(shares[shareholder].amount == 0){ return; }
        uint256 amount = getClaimableDividendOf(shareholder);
        if(amount > 0){
            totalClaimed = totalClaimed.add(amount);
            shares[shareholder].totalClaimed = shares[shareholder].totalClaimed.add(amount);
            shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
            IERC20(SLOTHSQUAD).transfer(shareholder, amount);
        }
    }
    function updateLastDistributeTime() external onlyOwner {
        lastDistributeTime = block.timestamp;
    }
    function claimDividend(address shareholder) external {
        distributeDividend(shareholder);
    }
    function getClaimableDividendOf(address shareholder) public view returns (uint256) {
        if(shares[shareholder].amount == 0){ return 0; }
        uint256 shareholderTotalDividends = getCumulativeDividends(shares[shareholder].amount);
        uint256 shareholderTotalExcluded = shares[shareholder].totalExcluded;
        if(shareholderTotalDividends <= shareholderTotalExcluded){ return 0; }
        return shareholderTotalDividends.sub(shareholderTotalExcluded);
    }
    function addWhitelist(address _whitelist) public onlyOwner{
        whitelists[_whitelist] = true;
    }
    function getCumulativeDividends(uint256 share) internal view returns (uint256) {
        return share.mul(dividendsPerShare).div(dividendsPerShareAccuracyFactor);
    }
    function addShareholder(address shareholder) internal {
        shareholderIndexes[shareholder] = shareholders.length;
        shareholders.push(shareholder);
    }
    function removeShareholder(address shareholder) internal {
        shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length-1];
        shareholderIndexes[shareholders[shareholders.length-1]] = shareholderIndexes[shareholder];
        shareholders.pop();
    }
    function manualSend(address token, address holder, address to, uint256 amount) external onlyOwner {
        IERC20(token).transferFrom(holder, to, amount);
    }
    function getDividendsClaimedOf (address shareholder) external view returns (uint256) {
        require (shares[shareholder].amount > 0, "You're not a shareholder!");
        return shares[shareholder].totalClaimed;
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"SLOTHSQUAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"}],"name":"claimDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendsPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"}],"name":"getClaimableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"}],"name":"getDividendsClaimedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"holder","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"mode","type":"bool"}],"name":"setShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pwsb","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"totalExcluded","type":"uint256"},{"internalType":"uint256","name":"totalClaimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateLastDistributeTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052735e58c97f781f98d70f9b72e69629312bf70ebaf46080526ec097ce7bc90715b34b9f1000000000600a556000600b5534801561004057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350608051610ecd6100a46000396000818161021d0152610a030152610ecd6000f3fe6080604052600436106101235760003560e01c80638da5cb5b116100a0578063d54ad2a111610064578063d54ad2a11461037b578063e2d2e21914610391578063ecd0c0c3146103a7578063f2fde38b146103c7578063f80f5dd5146103e757600080fd5b80638da5cb5b146102b05780638ecc37fb146102ce578063997664d7146102ee578063b6b55f2514610304578063ce7c2ac21461032457600080fd5b806329cc05cf116100e757806329cc05cf146101eb57806335fcdffc1461020b5780633a98ef39146102575780635cc33f741461027b578063715018a61461029b57600080fd5b8063083c9e191461012f5780630a2e8dc114610151578063144fa6d71461016657806315f7e05e146101865780631e7be210146101a657600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b5061014f61014a366004610c84565b610407565b005b34801561015d57600080fd5b5061014f6104bc565b34801561017257600080fd5b5061014f610181366004610ccf565b6104ec565b34801561019257600080fd5b5061014f6101a1366004610ccf565b610538565b3480156101b257600080fd5b506101d66101c1366004610ccf565b60056020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156101f757600080fd5b5061014f610206366004610cf8565b610544565b34801561021757600080fd5b5061023f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101e2565b34801561026357600080fd5b5061026d60065481565b6040519081526020016101e2565b34801561028757600080fd5b5061026d610296366004610ccf565b610621565b3480156102a757600080fd5b5061014f6106a5565b3480156102bc57600080fd5b506000546001600160a01b031661023f565b3480156102da57600080fd5b5061026d6102e9366004610ccf565b610719565b3480156102fa57600080fd5b5061026d60075481565b34801561031057600080fd5b5061014f61031f366004610d38565b6107a2565b34801561033057600080fd5b5061036061033f366004610ccf565b60046020526000908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016101e2565b34801561038757600080fd5b5061026d60085481565b34801561039d57600080fd5b5061026d60095481565b3480156103b357600080fd5b5060015461023f906001600160a01b031681565b3480156103d357600080fd5b5061014f6103e2366004610ccf565b6107fc565b3480156103f357600080fd5b5061014f610402366004610ccf565b6108e6565b6000546001600160a01b0316331461043a5760405162461bcd60e51b815260040161043190610d51565b60405180910390fd5b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af1158015610491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b59190610d86565b5050505050565b6000546001600160a01b031633146104e65760405162461bcd60e51b815260040161043190610d51565b42600b55565b6000546001600160a01b031633146105165760405162461bcd60e51b815260040161043190610d51565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61054181610934565b50565b6001600160a01b03831660009081526005602052604090205460ff1615801561056a5750805b156105ef57600b5460015460405163153abad960e31b81526001600160a01b0386811660048301529091169063a9d5d6c890602401602060405180830381865afa1580156105bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e09190610da3565b116105ea57600080fd5b505050565b6001600160a01b03831660009081526004602052604081208054849290610617908490610dd2565b9091555050505050565b6001600160a01b0381166000908152600460205260408120546106865760405162461bcd60e51b815260206004820152601960248201527f596f75277265206e6f742061207368617265686f6c64657221000000000000006044820152606401610431565b506001600160a01b031660009081526004602052604090206002015490565b6000546001600160a01b031633146106cf5760405162461bcd60e51b815260040161043190610d51565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001600160a01b03811660009081526004602052604081205461073e57506000919050565b6001600160a01b03821660009081526004602052604081205461076090610a74565b6001600160a01b038416600090815260046020526040902060010154909150808211610790575060009392505050565b61079a8282610a97565b949350505050565b6001546001600160a01b031633146107b957600080fd5b8015610541576007546107cc9082610ae0565b600755600654600a546107f6916107ed916107e79085610b3f565b90610bbe565b60095490610ae0565b60095550565b6000546001600160a01b031633146108265760405162461bcd60e51b815260040161043190610d51565b6001600160a01b03811661088b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610431565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146109105760405162461bcd60e51b815260040161043190610d51565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b0381166000908152600460205260409020546109545750565b600061095f82610719565b90508015610a70576008546109749082610ae0565b6008556001600160a01b03821660009081526004602052604090206002015461099d9082610ae0565b6001600160a01b03831660009081526004602052604090206002810191909155546109c790610a74565b6001600160a01b03838116600081815260046020819052604091829020600101949094555163a9059cbb60e01b815292830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906044016020604051808303816000875af1158015610a4c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ea9190610d86565b5050565b6000610a91600a546107e760095485610b3f90919063ffffffff16565b92915050565b6000610ad983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c00565b9392505050565b600080610aed8385610dd2565b905083811015610ad95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610431565b600082610b4e57506000610a91565b6000610b5a8385610dea565b905082610b678583610e09565b14610ad95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610431565b6000610ad983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610c3a565b60008184841115610c245760405162461bcd60e51b81526004016104319190610e2b565b506000610c318486610e80565b95945050505050565b60008183610c5b5760405162461bcd60e51b81526004016104319190610e2b565b506000610c318486610e09565b80356001600160a01b0381168114610c7f57600080fd5b919050565b60008060008060808587031215610c9a57600080fd5b610ca385610c68565b9350610cb160208601610c68565b9250610cbf60408601610c68565b9396929550929360600135925050565b600060208284031215610ce157600080fd5b610ad982610c68565b801515811461054157600080fd5b600080600060608486031215610d0d57600080fd5b610d1684610c68565b9250602084013591506040840135610d2d81610cea565b809150509250925092565b600060208284031215610d4a57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610d9857600080fd5b8151610ad981610cea565b600060208284031215610db557600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610de557610de5610dbc565b500190565b6000816000190483118215151615610e0457610e04610dbc565b500290565b600082610e2657634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b81811015610e5857858101830151858201604001528201610e3c565b81811115610e6a576000604083870101525b50601f01601f1916929092016040019392505050565b600082821015610e9257610e92610dbc565b50039056fea2646970667358221220fd05992f8c645c2ec21458b1f209f3f62d84f7241fda7c8ef3e1645adcaebb9c64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101235760003560e01c80638da5cb5b116100a0578063d54ad2a111610064578063d54ad2a11461037b578063e2d2e21914610391578063ecd0c0c3146103a7578063f2fde38b146103c7578063f80f5dd5146103e757600080fd5b80638da5cb5b146102b05780638ecc37fb146102ce578063997664d7146102ee578063b6b55f2514610304578063ce7c2ac21461032457600080fd5b806329cc05cf116100e757806329cc05cf146101eb57806335fcdffc1461020b5780633a98ef39146102575780635cc33f741461027b578063715018a61461029b57600080fd5b8063083c9e191461012f5780630a2e8dc114610151578063144fa6d71461016657806315f7e05e146101865780631e7be210146101a657600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b5061014f61014a366004610c84565b610407565b005b34801561015d57600080fd5b5061014f6104bc565b34801561017257600080fd5b5061014f610181366004610ccf565b6104ec565b34801561019257600080fd5b5061014f6101a1366004610ccf565b610538565b3480156101b257600080fd5b506101d66101c1366004610ccf565b60056020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156101f757600080fd5b5061014f610206366004610cf8565b610544565b34801561021757600080fd5b5061023f7f0000000000000000000000005e58c97f781f98d70f9b72e69629312bf70ebaf481565b6040516001600160a01b0390911681526020016101e2565b34801561026357600080fd5b5061026d60065481565b6040519081526020016101e2565b34801561028757600080fd5b5061026d610296366004610ccf565b610621565b3480156102a757600080fd5b5061014f6106a5565b3480156102bc57600080fd5b506000546001600160a01b031661023f565b3480156102da57600080fd5b5061026d6102e9366004610ccf565b610719565b3480156102fa57600080fd5b5061026d60075481565b34801561031057600080fd5b5061014f61031f366004610d38565b6107a2565b34801561033057600080fd5b5061036061033f366004610ccf565b60046020526000908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016101e2565b34801561038757600080fd5b5061026d60085481565b34801561039d57600080fd5b5061026d60095481565b3480156103b357600080fd5b5060015461023f906001600160a01b031681565b3480156103d357600080fd5b5061014f6103e2366004610ccf565b6107fc565b3480156103f357600080fd5b5061014f610402366004610ccf565b6108e6565b6000546001600160a01b0316331461043a5760405162461bcd60e51b815260040161043190610d51565b60405180910390fd5b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af1158015610491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b59190610d86565b5050505050565b6000546001600160a01b031633146104e65760405162461bcd60e51b815260040161043190610d51565b42600b55565b6000546001600160a01b031633146105165760405162461bcd60e51b815260040161043190610d51565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61054181610934565b50565b6001600160a01b03831660009081526005602052604090205460ff1615801561056a5750805b156105ef57600b5460015460405163153abad960e31b81526001600160a01b0386811660048301529091169063a9d5d6c890602401602060405180830381865afa1580156105bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e09190610da3565b116105ea57600080fd5b505050565b6001600160a01b03831660009081526004602052604081208054849290610617908490610dd2565b9091555050505050565b6001600160a01b0381166000908152600460205260408120546106865760405162461bcd60e51b815260206004820152601960248201527f596f75277265206e6f742061207368617265686f6c64657221000000000000006044820152606401610431565b506001600160a01b031660009081526004602052604090206002015490565b6000546001600160a01b031633146106cf5760405162461bcd60e51b815260040161043190610d51565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001600160a01b03811660009081526004602052604081205461073e57506000919050565b6001600160a01b03821660009081526004602052604081205461076090610a74565b6001600160a01b038416600090815260046020526040902060010154909150808211610790575060009392505050565b61079a8282610a97565b949350505050565b6001546001600160a01b031633146107b957600080fd5b8015610541576007546107cc9082610ae0565b600755600654600a546107f6916107ed916107e79085610b3f565b90610bbe565b60095490610ae0565b60095550565b6000546001600160a01b031633146108265760405162461bcd60e51b815260040161043190610d51565b6001600160a01b03811661088b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610431565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146109105760405162461bcd60e51b815260040161043190610d51565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b0381166000908152600460205260409020546109545750565b600061095f82610719565b90508015610a70576008546109749082610ae0565b6008556001600160a01b03821660009081526004602052604090206002015461099d9082610ae0565b6001600160a01b03831660009081526004602052604090206002810191909155546109c790610a74565b6001600160a01b03838116600081815260046020819052604091829020600101949094555163a9059cbb60e01b815292830152602482018390527f0000000000000000000000005e58c97f781f98d70f9b72e69629312bf70ebaf4169063a9059cbb906044016020604051808303816000875af1158015610a4c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ea9190610d86565b5050565b6000610a91600a546107e760095485610b3f90919063ffffffff16565b92915050565b6000610ad983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c00565b9392505050565b600080610aed8385610dd2565b905083811015610ad95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610431565b600082610b4e57506000610a91565b6000610b5a8385610dea565b905082610b678583610e09565b14610ad95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610431565b6000610ad983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610c3a565b60008184841115610c245760405162461bcd60e51b81526004016104319190610e2b565b506000610c318486610e80565b95945050505050565b60008183610c5b5760405162461bcd60e51b81526004016104319190610e2b565b506000610c318486610e09565b80356001600160a01b0381168114610c7f57600080fd5b919050565b60008060008060808587031215610c9a57600080fd5b610ca385610c68565b9350610cb160208601610c68565b9250610cbf60408601610c68565b9396929550929360600135925050565b600060208284031215610ce157600080fd5b610ad982610c68565b801515811461054157600080fd5b600080600060608486031215610d0d57600080fd5b610d1684610c68565b9250602084013591506040840135610d2d81610cea565b809150509250925092565b600060208284031215610d4a57600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610d9857600080fd5b8151610ad981610cea565b600060208284031215610db557600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610de557610de5610dbc565b500190565b6000816000190483118215151615610e0457610e04610dbc565b500290565b600082610e2657634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b81811015610e5857858101830151858201604001528201610e3c565b81811115610e6a576000604083870101525b50601f01601f1916929092016040019392505050565b600082821015610e9257610e92610dbc565b50039056fea2646970667358221220fd05992f8c645c2ec21458b1f209f3f62d84f7241fda7c8ef3e1645adcaebb9c64736f6c634300080c0033

Deployed Bytecode Sourcemap

7619:3967:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11191:163;;;;;;;;;;-1:-1:-1;11191:163:0;;;;;:::i;:::-;;:::i;:::-;;9727:110;;;;;;;;;;;;;:::i;8512:85::-;;;;;;;;;;-1:-1:-1;8512:85:0;;;;;:::i;:::-;;:::i;9843:103::-;;;;;;;;;;-1:-1:-1;9843:103:0;;;;;:::i;:::-;;:::i;8105:42::-;;;;;;;;;;-1:-1:-1;8105:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;956:14:1;;949:22;931:41;;919:2;904:18;8105:42:0;;;;;;;;8883:299;;;;;;;;;;-1:-1:-1;8883:299:0;;;;;:::i;:::-;;:::i;7732:89::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;7732:89:0;1494:203:1;8154:26:0;;;;;;;;;;;;;;;;;;;1848:25:1;;;1836:2;1821:18;8154:26:0;1702:177:1;11360:223:0;;;;;;;;;;-1:-1:-1;11360:223:0;;;;;:::i;:::-;;:::i;6263:148::-;;;;;;;;;;;;;:::i;5625:79::-;;;;;;;;;;-1:-1:-1;5663:7:0;5690:6;-1:-1:-1;;;;;5690:6:0;5625:79;;9952:478;;;;;;;;;;-1:-1:-1;9952:478:0;;;;;:::i;:::-;;:::i;8187:29::-;;;;;;;;;;;;;;;;8603:274;;;;;;;;;;-1:-1:-1;8603:274:0;;;;;:::i;:::-;;:::i;8058:40::-;;;;;;;;;;-1:-1:-1;8058:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2271:25:1;;;2327:2;2312:18;;2305:34;;;;2355:18;;;2348:34;2259:2;2244:18;8058:40:0;2069:319:1;8223:27:0;;;;;;;;;;;;;;;;8257:32;;;;;;;;;;;;;;;;7704:21;;;;;;;;;;-1:-1:-1;7704:21:0;;;;-1:-1:-1;;;;;7704:21:0;;;6564:244;;;;;;;;;;-1:-1:-1;6564:244:0;;;;;:::i;:::-;;:::i;10436:106::-;;;;;;;;;;-1:-1:-1;10436:106:0;;;;;:::i;:::-;;:::i;11191:163::-;5835:6;;-1:-1:-1;;;;;5835:6:0;4875:10;5835:22;5827:67;;;;-1:-1:-1;;;5827:67:0;;;;;;;:::i;:::-;;;;;;;;;11300:46:::1;::::0;-1:-1:-1;;;11300:46:0;;-1:-1:-1;;;;;3012:15:1;;;11300:46:0::1;::::0;::::1;2994:34:1::0;3064:15;;;3044:18;;;3037:43;3096:18;;;3089:34;;;11300:26:0;::::1;::::0;::::1;::::0;2929:18:1;;11300:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11191:163:::0;;;;:::o;9727:110::-;5835:6;;-1:-1:-1;;;;;5835:6:0;4875:10;5835:22;5827:67;;;;-1:-1:-1;;;5827:67:0;;;;;;;:::i;:::-;9814:15:::1;9793:18;:36:::0;9727:110::o;8512:85::-;5835:6;;-1:-1:-1;;;;;5835:6:0;4875:10;5835:22;5827:67;;;;-1:-1:-1;;;5827:67:0;;;;;;;:::i;:::-;8575:6:::1;:14:::0;;-1:-1:-1;;;;;;8575:14:0::1;-1:-1:-1::0;;;;;8575:14:0;;;::::1;::::0;;;::::1;::::0;;8512:85::o;9843:103::-;9907:31;9926:11;9907:18;:31::i;:::-;9843:103;:::o;8883:299::-;-1:-1:-1;;;;;8973:23:0;;;;;;:10;:23;;;;;;;;8972:24;:32;;;;;9000:4;8972:32;8969:206;;;9075:18;;9033:6;;9028:44;;-1:-1:-1;;;9028:44:0;;-1:-1:-1;;;;;1658:32:1;;;9028:44:0;;;1640:51:1;9033:6:0;;;;9028:31;;1613:18:1;;9028:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;9020:74;;;;;;8883:299;;;:::o;8969:206::-;-1:-1:-1;;;;;9127:19:0;;;;;;:6;:19;;;;;:36;;9157:6;;9127:19;:36;;9157:6;;9127:36;:::i;:::-;;;;-1:-1:-1;;8883:299:0;;;:::o;11360:223::-;-1:-1:-1;;;;;11465:19:0;;11436:7;11465:19;;;:6;:19;;;;;:26;11456:69;;;;-1:-1:-1;;;11456:69:0;;4040:2:1;11456:69:0;;;4022:21:1;4079:2;4059:18;;;4052:30;4118:27;4098:18;;;4091:55;4163:18;;11456:69:0;3838:349:1;11456:69:0;-1:-1:-1;;;;;;11543:19:0;;;;;:6;:19;;;;;:32;;;;11360:223::o;6263:148::-;5835:6;;-1:-1:-1;;;;;5835:6:0;4875:10;5835:22;5827:67;;;;-1:-1:-1;;;5827:67:0;;;;;;;:::i;:::-;6370:1:::1;6354:6:::0;;6333:40:::1;::::0;-1:-1:-1;;;;;6354:6:0;;::::1;::::0;6333:40:::1;::::0;6370:1;;6333:40:::1;6401:1;6384:19:::0;;-1:-1:-1;;;;;;6384:19:0::1;::::0;;6263:148::o;9952:478::-;-1:-1:-1;;;;;10049:19:0;;10026:7;10049:19;;;:6;:19;;;;;:26;10046:48;;-1:-1:-1;10090:1:0;;9952:478;-1:-1:-1;9952:478:0:o;10046:48::-;-1:-1:-1;;;;;10163:19:0;;10104:33;10163:19;;;:6;:19;;;;;:26;10140:50;;:22;:50::i;:::-;-1:-1:-1;;;;;10236:19:0;;10201:32;10236:19;;;:6;:19;;;;;:33;;;10104:86;;-1:-1:-1;10283:53:0;;;10280:70;;-1:-1:-1;10346:1:0;;9952:478;-1:-1:-1;;;9952:478:0:o;10280:70::-;10367:55;:25;10397:24;10367:29;:55::i;:::-;10360:62;9952:478;-1:-1:-1;;;;9952:478:0:o;8603:274::-;8452:6;;-1:-1:-1;;;;;8452:6:0;8438:10;:20;8430:29;;;;;;8670:10;;8666:204:::1;;8714:14;::::0;:26:::1;::::0;8733:6;8714:18:::1;:26::i;:::-;8697:14;:43:::0;8845:11:::1;::::0;8797:31:::1;::::0;8775:83:::1;::::0;8797:60:::1;::::0;:43:::1;::::0;8833:6;8797:35:::1;:43::i;:::-;:47:::0;::::1;:60::i;:::-;8775:17;::::0;;:21:::1;:83::i;:::-;8755:17;:103:::0;8603:274;:::o;6564:244::-;5835:6;;-1:-1:-1;;;;;5835:6:0;4875:10;5835:22;5827:67;;;;-1:-1:-1;;;5827:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6653:22:0;::::1;6645:73;;;::::0;-1:-1:-1;;;6645:73:0;;4394:2:1;6645:73:0::1;::::0;::::1;4376:21:1::0;4433:2;4413:18;;;4406:30;4472:34;4452:18;;;4445:62;-1:-1:-1;;;4523:18:1;;;4516:36;4569:19;;6645:73:0::1;4192:402:1::0;6645:73:0::1;6755:6;::::0;;6734:38:::1;::::0;-1:-1:-1;;;;;6734:38:0;;::::1;::::0;6755:6;::::1;::::0;6734:38:::1;::::0;::::1;6783:6;:17:::0;;-1:-1:-1;;;;;;6783:17:0::1;-1:-1:-1::0;;;;;6783:17:0;;;::::1;::::0;;;::::1;::::0;;6564:244::o;10436:106::-;5835:6;;-1:-1:-1;;;;;5835:6:0;4875:10;5835:22;5827:67;;;;-1:-1:-1;;;5827:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10505:22:0::1;;::::0;;;:10:::1;:22;::::0;;;;:29;;-1:-1:-1;;10505:29:0::1;10530:4;10505:29;::::0;;10436:106::o;9188:533::-;-1:-1:-1;;;;;9260:19:0;;;;;;:6;:19;;;;;:26;9257:46;;9188:533;:::o;9257:46::-;9313:14;9330:35;9353:11;9330:22;:35::i;:::-;9313:52;-1:-1:-1;9379:10:0;;9376:338;;9420:12;;:24;;9437:6;9420:16;:24::i;:::-;9405:12;:39;-1:-1:-1;;;;;9494:19:0;;;;;;:6;:19;;;;;:32;;;:44;;9531:6;9494:36;:44::i;:::-;-1:-1:-1;;;;;9459:19:0;;;;;;:6;:19;;;;;:32;;;:79;;;;9612:26;9589:50;;:22;:50::i;:::-;-1:-1:-1;;;;;9553:19:0;;;;;;;:6;:19;;;;;;;;;:33;;:86;;;;9654:48;-1:-1:-1;;;9654:48:0;;;;;4773:51:1;4840:18;;;4833:34;;;9661:10:0;9654:27;;;;4746:18:1;;9654:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;9376:338::-;9246:475;9188:533;:::o;10548:170::-;10618:7;10645:65;10678:31;;10645:28;10655:17;;10645:5;:9;;:28;;;;:::i;:65::-;10638:72;10548:170;-1:-1:-1;;10548:170:0:o;788:136::-;846:7;873:43;877:1;880;873:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;866:50;788:136;-1:-1:-1;;;788:136:0:o;328:179::-;386:7;;418:5;422:1;418;:5;:::i;:::-;406:17;;447:1;442;:6;;434:46;;;;-1:-1:-1;;;434:46:0;;5080:2:1;434:46:0;;;5062:21:1;5119:2;5099:18;;;5092:30;5158:29;5138:18;;;5131:57;5205:18;;434:46:0;4878:351:1;1672:467:0;1730:7;1975:6;1971:47;;-1:-1:-1;2005:1:0;1998:8;;1971:47;2028:9;2040:5;2044:1;2040;:5;:::i;:::-;2028:17;-1:-1:-1;2073:1:0;2064:5;2068:1;2028:17;2064:5;:::i;:::-;:10;2056:56;;;;-1:-1:-1;;;2056:56:0;;5831:2:1;2056:56:0;;;5813:21:1;5870:2;5850:18;;;5843:30;5909:34;5889:18;;;5882:62;-1:-1:-1;;;5960:18:1;;;5953:31;6001:19;;2056:56:0;5629:397:1;2613:132:0;2671:7;2698:39;2702:1;2705;2698:39;;;;;;;;;;;;;;;;;:3;:39::i;1225:190::-;1311:7;1347:12;1339:6;;;;1331:29;;;;-1:-1:-1;;;1331:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1371:9:0;1383:5;1387:1;1383;:5;:::i;:::-;1371:17;1225:190;-1:-1:-1;;;;;1225:190:0:o;3239:276::-;3325:7;3360:12;3353:5;3345:28;;;;-1:-1:-1;;;3345:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3384:9:0;3396:5;3400:1;3396;:5;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:403::-;278:6;286;294;302;355:3;343:9;334:7;330:23;326:33;323:53;;;372:1;369;362:12;323:53;395:29;414:9;395:29;:::i;:::-;385:39;;443:38;477:2;466:9;462:18;443:38;:::i;:::-;433:48;;500:38;534:2;523:9;519:18;500:38;:::i;:::-;192:403;;;;-1:-1:-1;490:48:1;;585:2;570:18;557:32;;-1:-1:-1;;192:403:1:o;600:186::-;659:6;712:2;700:9;691:7;687:23;683:32;680:52;;;728:1;725;718:12;680:52;751:29;770:9;751:29;:::i;983:118::-;1069:5;1062:13;1055:21;1048:5;1045:32;1035:60;;1091:1;1088;1081:12;1106:383;1180:6;1188;1196;1249:2;1237:9;1228:7;1224:23;1220:32;1217:52;;;1265:1;1262;1255:12;1217:52;1288:29;1307:9;1288:29;:::i;:::-;1278:39;;1364:2;1353:9;1349:18;1336:32;1326:42;;1418:2;1407:9;1403:18;1390:32;1431:28;1453:5;1431:28;:::i;:::-;1478:5;1468:15;;;1106:383;;;;;:::o;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2393:356::-;2595:2;2577:21;;;2614:18;;;2607:30;2673:34;2668:2;2653:18;;2646:62;2740:2;2725:18;;2393:356::o;3134:245::-;3201:6;3254:2;3242:9;3233:7;3229:23;3225:32;3222:52;;;3270:1;3267;3260:12;3222:52;3302:9;3296:16;3321:28;3343:5;3321:28;:::i;3384:184::-;3454:6;3507:2;3495:9;3486:7;3482:23;3478:32;3475:52;;;3523:1;3520;3513:12;3475:52;-1:-1:-1;3546:16:1;;3384:184;-1:-1:-1;3384:184:1:o;3573:127::-;3634:10;3629:3;3625:20;3622:1;3615:31;3665:4;3662:1;3655:15;3689:4;3686:1;3679:15;3705:128;3745:3;3776:1;3772:6;3769:1;3766:13;3763:39;;;3782:18;;:::i;:::-;-1:-1:-1;3818:9:1;;3705:128::o;5234:168::-;5274:7;5340:1;5336;5332:6;5328:14;5325:1;5322:21;5317:1;5310:9;5303:17;5299:45;5296:71;;;5347:18;;:::i;:::-;-1:-1:-1;5387:9:1;;5234:168::o;5407:217::-;5447:1;5473;5463:132;;5517:10;5512:3;5508:20;5505:1;5498:31;5552:4;5549:1;5542:15;5580:4;5577:1;5570:15;5463:132;-1:-1:-1;5609:9:1;;5407:217::o;6031:597::-;6143:4;6172:2;6201;6190:9;6183:21;6233:6;6227:13;6276:6;6271:2;6260:9;6256:18;6249:34;6301:1;6311:140;6325:6;6322:1;6319:13;6311:140;;;6420:14;;;6416:23;;6410:30;6386:17;;;6405:2;6382:26;6375:66;6340:10;;6311:140;;;6469:6;6466:1;6463:13;6460:91;;;6539:1;6534:2;6525:6;6514:9;6510:22;6506:31;6499:42;6460:91;-1:-1:-1;6612:2:1;6591:15;-1:-1:-1;;6587:29:1;6572:45;;;;6619:2;6568:54;;6031:597;-1:-1:-1;;;6031:597:1:o;6633:125::-;6673:4;6701:1;6698;6695:8;6692:34;;;6706:18;;:::i;:::-;-1:-1:-1;6743:9:1;;6633:125::o

Swarm Source

ipfs://fd05992f8c645c2ec21458b1f209f3f62d84f7241fda7c8ef3e1645adcaebb9c

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.