ETH Price: $3,115.30 (-5.60%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer204532402024-08-04 5:57:11181 days ago1722751031IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00008351
Transfer99065092020-04-20 1:53:021748 days ago1587347582IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000183
Transfer97706922020-03-30 3:49:091769 days ago1585540149IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000061
Transfer96732282020-03-15 1:54:141784 days ago1584237254IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000021041
Transfer95802412020-02-29 18:09:141799 days ago1582999754IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00007211
Transfer93994842020-02-01 23:26:431827 days ago1580599603IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000086521.2
Transfer93051712020-01-18 12:12:231841 days ago1579349543IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000072091
Transfer92533292020-01-10 13:28:171849 days ago1578662897IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00007211
Transfer92355172020-01-07 19:56:221852 days ago1578426982IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00007211
Transfer92217032020-01-05 17:20:561854 days ago1578244856IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000044251.5
Transfer92203882020-01-05 12:28:171854 days ago1578227297IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000061
Transfer91942552020-01-01 5:01:371858 days ago1577854897IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00005711
Transfer91847892019-12-30 7:25:481860 days ago1577690748IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000072111
Transfer90326752019-12-01 13:39:501889 days ago1575207590IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00039295
Transfer90083532019-11-27 6:16:341893 days ago1574835394IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000117771.5
Transfer90080802019-11-27 5:08:441893 days ago1574831324IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000062
Transfer89738362019-11-21 10:08:151899 days ago1574330895IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000248
Transfer89738332019-11-21 10:07:471899 days ago1574330867IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000248
Transfer89532172019-11-17 23:21:501903 days ago1574032910IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000112061.2
Transfer88528452019-11-01 13:09:281919 days ago1572613768IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000078511
Transfer88275042019-10-28 11:16:441923 days ago1572261404IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000117771.5
Approve88185572019-10-27 0:39:531924 days ago1572136793IN
0xF5C00Ff3...7b82Accf8
0 ETH0.0004542410
Transfer88169452019-10-26 18:32:091925 days ago1572114729IN
0xF5C00Ff3...7b82Accf8
0 ETH0.0001021.7
Transfer88168442019-10-26 18:08:251925 days ago1572113305IN
0xF5C00Ff3...7b82Accf8
0 ETH0.000091.5
Transfer88168252019-10-26 18:03:091925 days ago1572112989IN
0xF5C00Ff3...7b82Accf8
0 ETH0.00008251.5
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BBT

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-10-20
*/

pragma solidity "0.5.11";

/* =========================================================================================================*/
// ----------------------------------------------------------------------------
// Bit-Bet (BBT) token contract
//
// Total supply: 10M
// Decimals    : 18
// ----------------------------------------------------------------------------

/**
 * @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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    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.

     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

	function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
        uint256 c = add(a,m);
        uint256 d = sub(c,1);
        return div(mul(d,m),m);
    }
}

contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public;
}

contract TransferAndCallFallBack {
    function receiveToken(address from, uint256 tokens, address token, bytes memory data) public;
}

// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        emit OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract BBT is IERC20, Owned {
    using SafeMath for uint;
    
    string public symbol = "BBT";
    string public  name = "Bit-Bet";
    uint8 public decimals = 18;
    uint private _totalSupply;
    uint256 internal extras = 100;
	bool public migrationComplete = false;

    address public donation;
    address public distribution;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor(address _donation, address _distribution) public {
        owner = msg.sender;
        donation = _donation;
        distribution = _distribution;
        _mint(owner, 10e6 * 10**uint(decimals));
    }

    function transferAndCall(address to, uint value, bytes memory data) public returns (bool) 
    {
        require(transfer(to, value));
        TransferAndCallFallBack(to).receiveToken(msg.sender, value, address(this), data);
    }

    function approveAndCall(address spender, uint tokens, bytes memory data) public returns (bool success) 
    {
        require(approve(spender, tokens));
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data);
        return true;
    }

	function migrateBalances(address[] calldata addresses, uint256[] calldata amount) external onlyOwner returns(bool success){
		require(!migrationComplete, "Migration of balances has taken place.");
		for (uint index = 0; index < addresses.length; index++) {
			_transfer(owner, addresses[index], amount[index]);
		}
		success = true;
	}

	function completeMigration() external onlyOwner returns(bool success){
		migrationComplete = true;
		success = true;
	}

    // ------------------------------------------------------------------------
    // Don't Accept ETH
    // ------------------------------------------------------------------------
    function () external payable {
        revert();
    }
    
    // ------------------------------------------------------------------------
    // Calculates onePercent of the uint256 amount sent
    // ------------------------------------------------------------------------
    function _onePercent(uint256 _tokens) internal view returns (uint256){
        uint roundValue = _tokens.ceil(extras);
        uint onePercentofTokens = roundValue.mul(extras).div(extras * 10**uint(2));
        return onePercentofTokens;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    // ------------------------------------------------------------------------
    // Get the total Supply
    // ------------------------------------------------------------------------
    function totalSupply() public view returns (uint){
       return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    // ------------------------------------------------------------------------
    // internal function applies Deductions upon transfer function
    // ------------------------------------------------------------------------
    function _transferAndBurn(address from, address to, uint tokens) internal {
        // calculate 1% of the tokens
        uint256 onePercentofTokens = _onePercent(tokens);
        
        // burn 1% of tokens
        _burn(from, onePercentofTokens);
        
        // transfer 1% to donation wallet
        _transfer(from, donation, onePercentofTokens);
        
        // distribute 1% to token holders
        _transfer(from, distribution, onePercentofTokens);

        // distribute 97% to recipient
		_transfer(from, to, tokens.sub(onePercentofTokens.mul(3)));
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transferAndBurn(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transferAndBurn(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

	/**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

	/**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

	/**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount, "ERC20: burn amount exceeds allowance"));
    }

	/**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"migrateBalances","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"migrationComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"completeMigration","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distribution","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"donation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_donation","type":"address"},{"internalType":"address","name":"_distribution","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040526040518060400160405280600381526020017f4242540000000000000000000000000000000000000000000000000000000000815250600190805190602001906200005192919062000496565b506040518060400160405280600781526020017f4269742d42657400000000000000000000000000000000000000000000000000815250600290805190602001906200009f92919062000496565b506012600360006101000a81548160ff021916908360ff16021790555060646005556000600660006101000a81548160ff021916908315150217905550348015620000e957600080fd5b50604051620028dd380380620028dd833981810160405260408110156200010f57600080fd5b810190808051906020019092919080519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002396000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900460ff1660ff16600a0a62989680026200024160201b60201c565b505062000545565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000301816004546200040d60201b62001c2f1790919060201c565b6004819055506200036081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200040d60201b62001c2f1790919060201c565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808284019050838110156200048c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004d957805160ff19168380011785556200050a565b828001600101855582156200050a579182015b8281111562000509578251825591602001919060010190620004ec565b5b5090506200051991906200051d565b5090565b6200054291905b808211156200053e57600081600090555060010162000524565b5090565b90565b61238880620005556000396000f3fe6080604052600436106101355760003560e01c80635ee58efc116100ab57806395d89b411161006f57806395d89b41146107fa578063a457c2d71461088a578063a9059cbb146108fd578063cae9ca5114610970578063dd62ed3e14610a7a578063f2fde38b14610aff57610135565b80635ee58efc1461063557806370a082311461068c57806379cc6790146106f15780638da5cb5b1461074c5780638edeb15d146107a357610135565b80632bff884f116100fd5780632bff884f146103ee578063313ce5671461041d578063395093511461044e5780634000aea0146104c157806342966c68146105cb5780634886f62c1461060657610135565b806301e625fc1461013a57806306fdde031461022d578063095ea7b3146102bd57806318160ddd1461033057806323b872dd1461035b575b600080fd5b34801561014657600080fd5b506102136004803603604081101561015d57600080fd5b810190808035906020019064010000000081111561017a57600080fd5b82018360208201111561018c57600080fd5b803590602001918460208302840111640100000000831117156101ae57600080fd5b9091929391929390803590602001906401000000008111156101cf57600080fd5b8201836020820111156101e157600080fd5b8035906020019184602083028401116401000000008311171561020357600080fd5b9091929391929390505050610b50565b604051808215151515815260200191505060405180910390f35b34801561023957600080fd5b50610242610ca2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610282578082015181840152602081019050610267565b50505050905090810190601f1680156102af5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c957600080fd5b50610316600480360360408110156102e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d40565b604051808215151515815260200191505060405180910390f35b34801561033c57600080fd5b50610345610d57565b6040518082815260200191505060405180910390f35b34801561036757600080fd5b506103d46004803603606081101561037e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d61565b604051808215151515815260200191505060405180910390f35b3480156103fa57600080fd5b50610403610e2c565b604051808215151515815260200191505060405180910390f35b34801561042957600080fd5b50610432610e3f565b604051808260ff1660ff16815260200191505060405180910390f35b34801561045a57600080fd5b506104a76004803603604081101561047157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e52565b604051808215151515815260200191505060405180910390f35b3480156104cd57600080fd5b506105b1600480360360608110156104e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561052b57600080fd5b82018360208201111561053d57600080fd5b8035906020019184600183028401116401000000008311171561055f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610ef7565b604051808215151515815260200191505060405180910390f35b3480156105d757600080fd5b50610604600480360360208110156105ee57600080fd5b8101908080359060200190929190505050611053565b005b34801561061257600080fd5b5061061b611060565b604051808215151515815260200191505060405180910390f35b34801561064157600080fd5b5061064a6110dd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069857600080fd5b506106db600480360360208110156106af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b3480156106fd57600080fd5b5061074a6004803603604081101561071457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114c565b005b34801561075857600080fd5b5061076161115a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107af57600080fd5b506107b861117f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080657600080fd5b5061080f6111a5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561084f578082015181840152602081019050610834565b50505050905090810190601f16801561087c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561089657600080fd5b506108e3600480360360408110156108ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611243565b604051808215151515815260200191505060405180910390f35b34801561090957600080fd5b506109566004803603604081101561092057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611302565b604051808215151515815260200191505060405180910390f35b34801561097c57600080fd5b50610a606004803603606081101561099357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156109da57600080fd5b8201836020820111156109ec57600080fd5b80359060200191846001830284011164010000000083111715610a0e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611319565b604051808215151515815260200191505060405180910390f35b348015610a8657600080fd5b50610ae960048036036040811015610a9d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611479565b6040518082815260200191505060405180910390f35b348015610b0b57600080fd5b50610b4e60048036036020811015610b2257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611500565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bab57600080fd5b600660009054906101000a900460ff1615610c11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061220c6026913960400191505060405180910390fd5b60008090505b85859050811015610c9557610c886000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878784818110610c5357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16868685818110610c7c57fe5b90506020020135611617565b8080600101915050610c17565b5060019050949350505050565b60028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d385780601f10610d0d57610100808354040283529160200191610d38565b820191906000526020600020905b815481529060010190602001808311610d1b57829003601f168201915b505050505081565b6000610d4d3384846118d1565b6001905092915050565b6000600454905090565b6000610d6e848484611ac8565b610e218433610e1c8560405180606001604052806028815260200161227960289139600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b6118d1565b600190509392505050565b600660009054906101000a900460ff1681565b600360009054906101000a900460ff1681565b6000610eed3384610ee885600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f90919063ffffffff16565b6118d1565b6001905092915050565b6000610f038484611302565b610f0c57600080fd5b8373ffffffffffffffffffffffffffffffffffffffff1663f8a6172e338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610fe5578082015181840152602081019050610fca565b50505050905090810190601f1680156110125780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561103457600080fd5b505af1158015611048573d6000803e3d6000fd5b505050509392505050565b61105d3382611cb7565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bb57600080fd5b6001600660006101000a81548160ff0219169083151502179055506001905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111568282611e71565b5050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561123b5780601f106112105761010080835404028352916020019161123b565b820191906000526020600020905b81548152906001019060200180831161121e57829003601f168201915b505050505081565b60006112f833846112f38560405180606001604052806025815260200161232f60259139600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b6118d1565b6001905092915050565b600061130f338484611ac8565b6001905092915050565b60006113258484610d40565b61132e57600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156114075780820151818401526020810190506113ec565b50505050905090810190601f1680156114345780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561145657600080fd5b505af115801561146a573d6000803e3d6000fd5b50505050600190509392505050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461155957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561169d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122e66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121a56023913960400191505060405180910390fd5b61178f8160405180606001604052806026815260200161223260269139600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061182481600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061230b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121ea6022913960400191505060405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000611ad382611f32565b9050611adf8482611cb7565b611b0c84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611617565b611b3984600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611617565b611b698484611b64611b55600386611f8990919063ffffffff16565b8661200f90919063ffffffff16565b611617565b50505050565b6000838311158290611c1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be1578082015181840152602081019050611bc6565b50505050905090810190601f168015611c0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611cad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122c56021913960400191505060405180910390fd5b611da9816040518060600160405280602281526020016121c860229139600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e018160045461200f90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611e7b8282611cb7565b611f2e8233611f29846040518060600160405280602481526020016122a160249139600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b6118d1565b5050565b600080611f4a6005548461205990919063ffffffff16565b90506000611f7d6002600a0a60055402611f6f60055485611f8990919063ffffffff16565b61209490919063ffffffff16565b90508092505050919050565b600080831415611f9c5760009050612009565b6000828402905082848281611fad57fe5b0414612004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122586021913960400191505060405180910390fd5b809150505b92915050565b600061205183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b6f565b905092915050565b6000806120668484611c2f565b9050600061207582600161200f565b905061208a6120848286611f89565b85612094565b9250505092915050565b60006120d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120de565b905092915050565b6000808311829061218a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561214f578082015181840152602081019050612134565b50505050905090810190601f16801561217c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161219657fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734d6967726174696f6e206f662062616c616e636573206861732074616b656e20706c6163652e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820f1c20ced090bf3f400231c52110589ef9fdf68070db33f50716580d8172305a764736f6c634300050b003200000000000000000000000017c2220b055bfe300a34f5933e5a0332b9d5050700000000000000000000000059a0cd6187da96bfb66d1a2e7621f93bedeef115

Deployed Bytecode

0x6080604052600436106101355760003560e01c80635ee58efc116100ab57806395d89b411161006f57806395d89b41146107fa578063a457c2d71461088a578063a9059cbb146108fd578063cae9ca5114610970578063dd62ed3e14610a7a578063f2fde38b14610aff57610135565b80635ee58efc1461063557806370a082311461068c57806379cc6790146106f15780638da5cb5b1461074c5780638edeb15d146107a357610135565b80632bff884f116100fd5780632bff884f146103ee578063313ce5671461041d578063395093511461044e5780634000aea0146104c157806342966c68146105cb5780634886f62c1461060657610135565b806301e625fc1461013a57806306fdde031461022d578063095ea7b3146102bd57806318160ddd1461033057806323b872dd1461035b575b600080fd5b34801561014657600080fd5b506102136004803603604081101561015d57600080fd5b810190808035906020019064010000000081111561017a57600080fd5b82018360208201111561018c57600080fd5b803590602001918460208302840111640100000000831117156101ae57600080fd5b9091929391929390803590602001906401000000008111156101cf57600080fd5b8201836020820111156101e157600080fd5b8035906020019184602083028401116401000000008311171561020357600080fd5b9091929391929390505050610b50565b604051808215151515815260200191505060405180910390f35b34801561023957600080fd5b50610242610ca2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610282578082015181840152602081019050610267565b50505050905090810190601f1680156102af5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c957600080fd5b50610316600480360360408110156102e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d40565b604051808215151515815260200191505060405180910390f35b34801561033c57600080fd5b50610345610d57565b6040518082815260200191505060405180910390f35b34801561036757600080fd5b506103d46004803603606081101561037e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d61565b604051808215151515815260200191505060405180910390f35b3480156103fa57600080fd5b50610403610e2c565b604051808215151515815260200191505060405180910390f35b34801561042957600080fd5b50610432610e3f565b604051808260ff1660ff16815260200191505060405180910390f35b34801561045a57600080fd5b506104a76004803603604081101561047157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e52565b604051808215151515815260200191505060405180910390f35b3480156104cd57600080fd5b506105b1600480360360608110156104e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561052b57600080fd5b82018360208201111561053d57600080fd5b8035906020019184600183028401116401000000008311171561055f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610ef7565b604051808215151515815260200191505060405180910390f35b3480156105d757600080fd5b50610604600480360360208110156105ee57600080fd5b8101908080359060200190929190505050611053565b005b34801561061257600080fd5b5061061b611060565b604051808215151515815260200191505060405180910390f35b34801561064157600080fd5b5061064a6110dd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069857600080fd5b506106db600480360360208110156106af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b3480156106fd57600080fd5b5061074a6004803603604081101561071457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114c565b005b34801561075857600080fd5b5061076161115a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107af57600080fd5b506107b861117f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080657600080fd5b5061080f6111a5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561084f578082015181840152602081019050610834565b50505050905090810190601f16801561087c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561089657600080fd5b506108e3600480360360408110156108ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611243565b604051808215151515815260200191505060405180910390f35b34801561090957600080fd5b506109566004803603604081101561092057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611302565b604051808215151515815260200191505060405180910390f35b34801561097c57600080fd5b50610a606004803603606081101561099357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156109da57600080fd5b8201836020820111156109ec57600080fd5b80359060200191846001830284011164010000000083111715610a0e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611319565b604051808215151515815260200191505060405180910390f35b348015610a8657600080fd5b50610ae960048036036040811015610a9d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611479565b6040518082815260200191505060405180910390f35b348015610b0b57600080fd5b50610b4e60048036036020811015610b2257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611500565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bab57600080fd5b600660009054906101000a900460ff1615610c11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061220c6026913960400191505060405180910390fd5b60008090505b85859050811015610c9557610c886000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878784818110610c5357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16868685818110610c7c57fe5b90506020020135611617565b8080600101915050610c17565b5060019050949350505050565b60028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d385780601f10610d0d57610100808354040283529160200191610d38565b820191906000526020600020905b815481529060010190602001808311610d1b57829003601f168201915b505050505081565b6000610d4d3384846118d1565b6001905092915050565b6000600454905090565b6000610d6e848484611ac8565b610e218433610e1c8560405180606001604052806028815260200161227960289139600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b6118d1565b600190509392505050565b600660009054906101000a900460ff1681565b600360009054906101000a900460ff1681565b6000610eed3384610ee885600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f90919063ffffffff16565b6118d1565b6001905092915050565b6000610f038484611302565b610f0c57600080fd5b8373ffffffffffffffffffffffffffffffffffffffff1663f8a6172e338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610fe5578082015181840152602081019050610fca565b50505050905090810190601f1680156110125780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561103457600080fd5b505af1158015611048573d6000803e3d6000fd5b505050509392505050565b61105d3382611cb7565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bb57600080fd5b6001600660006101000a81548160ff0219169083151502179055506001905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111568282611e71565b5050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561123b5780601f106112105761010080835404028352916020019161123b565b820191906000526020600020905b81548152906001019060200180831161121e57829003601f168201915b505050505081565b60006112f833846112f38560405180606001604052806025815260200161232f60259139600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b6118d1565b6001905092915050565b600061130f338484611ac8565b6001905092915050565b60006113258484610d40565b61132e57600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156114075780820151818401526020810190506113ec565b50505050905090810190601f1680156114345780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561145657600080fd5b505af115801561146a573d6000803e3d6000fd5b50505050600190509392505050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461155957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561169d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122e66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121a56023913960400191505060405180910390fd5b61178f8160405180606001604052806026815260200161223260269139600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061182481600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061230b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121ea6022913960400191505060405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000611ad382611f32565b9050611adf8482611cb7565b611b0c84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611617565b611b3984600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611617565b611b698484611b64611b55600386611f8990919063ffffffff16565b8661200f90919063ffffffff16565b611617565b50505050565b6000838311158290611c1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be1578082015181840152602081019050611bc6565b50505050905090810190601f168015611c0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611cad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122c56021913960400191505060405180910390fd5b611da9816040518060600160405280602281526020016121c860229139600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e018160045461200f90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611e7b8282611cb7565b611f2e8233611f29846040518060600160405280602481526020016122a160249139600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6f9092919063ffffffff16565b6118d1565b5050565b600080611f4a6005548461205990919063ffffffff16565b90506000611f7d6002600a0a60055402611f6f60055485611f8990919063ffffffff16565b61209490919063ffffffff16565b90508092505050919050565b600080831415611f9c5760009050612009565b6000828402905082848281611fad57fe5b0414612004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122586021913960400191505060405180910390fd5b809150505b92915050565b600061205183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b6f565b905092915050565b6000806120668484611c2f565b9050600061207582600161200f565b905061208a6120848286611f89565b85612094565b9250505092915050565b60006120d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120de565b905092915050565b6000808311829061218a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561214f578082015181840152602081019050612134565b50505050905090810190601f16801561217c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161219657fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734d6967726174696f6e206f662062616c616e636573206861732074616b656e20706c6163652e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820f1c20ced090bf3f400231c52110589ef9fdf68070db33f50716580d8172305a764736f6c634300050b0032

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

00000000000000000000000017c2220b055bfe300a34f5933e5a0332b9d5050700000000000000000000000059a0cd6187da96bfb66d1a2e7621f93bedeef115

-----Decoded View---------------
Arg [0] : _donation (address): 0x17c2220b055BfE300a34f5933E5a0332b9D50507
Arg [1] : _distribution (address): 0x59a0cD6187dA96bFb66D1a2e7621f93bedEef115

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000017c2220b055bfe300a34f5933e5a0332b9d50507
Arg [1] : 00000000000000000000000059a0cd6187da96bfb66d1a2e7621f93bedeef115


Deployed Bytecode Sourcemap

10215:10707:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12344:8;;;11641:341;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11641:341:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11641:341:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;11641:341:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;11641:341:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11641:341:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;11641:341:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;11641:341:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11641:341:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10323:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10323:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10323:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16583:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16583:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16583:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13998:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13998:86:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15556:307;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15556:307:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15556:307:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10459:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10459:37:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10361:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10361:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17139:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17139:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17139:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11112:234;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11112:234:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11112:234:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;11112:234:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;11112:234:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;11112:234:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;11112:234:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20673:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20673:81:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20673:81:0;;;;;;;;;;;;;;;;;:::i;:::-;;11987:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11987:122:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10535:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10535:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14147:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14147:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14147:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20816:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20816:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20816:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6808:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6808:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10505:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10505:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10288:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10288:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10288:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17848:257;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17848:257:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17848:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16076:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16076:163:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16076:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11354:282;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11354:282:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11354:282:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;11354:282:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;11354:282:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;11354:282:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;11354:282:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16302:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16302:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16302:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7002:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7002:153:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7002:153:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11641:341;11750:12;6968:5;;;;;;;;;;;6954:19;;:10;:19;;;6946:28;;;;;;11777:17;;;;;;;;;;;11776:18;11768:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11847:10;11860:1;11847:14;;11842:117;11871:9;;:16;;11863:5;:24;11842:117;;;11904:49;11914:5;;;;;;;;;;;11921:9;;11931:5;11921:16;;;;;;;;;;;;;;;11939:6;;11946:5;11939:13;;;;;;;;;;;;;11904:9;:49::i;:::-;11889:7;;;;;;;11842:117;;;;11973:4;11963:14;;11641:341;;;;;;:::o;10323:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16583:150::-;16649:4;16666:37;16675:10;16687:7;16696:6;16666:8;:37::i;:::-;16721:4;16714:11;;16583:150;;;;:::o;13998:86::-;14042:4;14064:12;;14057:19;;13998:86;:::o;15556:307::-;15645:4;15662:43;15679:6;15687:9;15698:6;15662:16;:43::i;:::-;15716:117;15725:6;15733:10;15745:87;15781:6;15745:87;;;;;;;;;;;;;;;;;:11;:19;15757:6;15745:19;;;;;;;;;;;;;;;:31;15765:10;15745:31;;;;;;;;;;;;;;;;:35;;:87;;;;;:::i;:::-;15716:8;:117::i;:::-;15851:4;15844:11;;15556:307;;;;;:::o;10459:37::-;;;;;;;;;;;;;:::o;10361:26::-;;;;;;;;;;;;;:::o;17139:206::-;17219:4;17236:79;17245:10;17257:7;17266:48;17303:10;17266:11;:23;17278:10;17266:23;;;;;;;;;;;;;;;:32;17290:7;17266:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;17236:8;:79::i;:::-;17333:4;17326:11;;17139:206;;;;:::o;11112:234::-;11196:4;11227:19;11236:2;11240:5;11227:8;:19::i;:::-;11219:28;;;;;;11282:2;11258:40;;;11299:10;11311:5;11326:4;11333;11258:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11258:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11258:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11258:80:0;;;;11112:234;;;;;:::o;20673:81::-;20721:25;20727:10;20739:6;20721:5;:25::i;:::-;20673:81;:::o;11987:122::-;12043:12;6968:5;;;;;;;;;;;6954:19;;:10;:19;;;6946:28;;;;;;12081:4;12061:17;;:24;;;;;;;;;;;;;;;;;;12100:4;12090:14;;11987:122;:::o;10535:27::-;;;;;;;;;;;;;:::o;14147:110::-;14204:7;14231:9;:18;14241:7;14231:18;;;;;;;;;;;;;;;;14224:25;;14147:110;;;:::o;20816:103::-;20885:26;20895:7;20904:6;20885:9;:26::i;:::-;20816:103;;:::o;6808:20::-;;;;;;;;;;;;;:::o;10505:23::-;;;;;;;;;;;;;:::o;10288:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17848:257::-;17933:4;17950:125;17959:10;17971:7;17980:94;18017:15;17980:94;;;;;;;;;;;;;;;;;:11;:23;17992:10;17980:23;;;;;;;;;;;;;;;:32;18004:7;17980:32;;;;;;;;;;;;;;;;:36;;:94;;;;;:::i;:::-;17950:8;:125::i;:::-;18093:4;18086:11;;17848:257;;;;:::o;16076:163::-;16145:4;16162:47;16179:10;16191:9;16202:6;16162:16;:47::i;:::-;16227:4;16220:11;;16076:163;;;;:::o;11354:282::-;11443:12;11482:24;11490:7;11499:6;11482:7;:24::i;:::-;11474:33;;;;;;11541:7;11518:47;;;11566:10;11578:6;11594:4;11601;11518:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11518:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11518:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11518:88:0;;;;11624:4;11617:11;;11354:282;;;;;:::o;16302:134::-;16374:7;16401:11;:18;16413:5;16401:18;;;;;;;;;;;;;;;:27;16420:7;16401:27;;;;;;;;;;;;;;;;16394:34;;16302:134;;;;:::o;7002:153::-;6968:5;;;;;;;;;;;6954:19;;:10;:19;;;6946:28;;;;;;7109:9;7081:38;;7102:5;;;;;;;;;;;7081:38;;;;;;;;;;;;7138:9;7130:5;;:17;;;;;;;;;;;;;;;;;;7002:153;:::o;13328:471::-;13444:1;13426:20;;:6;:20;;;;13418:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13528:1;13507:23;;:9;:23;;;;13499:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13603;13625:6;13603:71;;;;;;;;;;;;;;;;;:9;:17;13613:6;13603:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13583:9;:17;13593:6;13583:17;;;;;;;;;;;;;;;:91;;;;13708:32;13733:6;13708:9;:20;13718:9;13708:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13685:9;:20;13695:9;13685:20;;;;;;;;;;;;;;;:55;;;;13773:9;13756:35;;13765:6;13756:35;;;13784:6;13756:35;;;;;;;;;;;;;;;;;;13328:471;;;:::o;19811:338::-;19922:1;19905:19;;:5;:19;;;;19897:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20003:1;19984:21;;:7;:21;;;;19976:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20087:6;20057:11;:18;20069:5;20057:18;;;;;;;;;;;;;;;:27;20076:7;20057:27;;;;;;;;;;;;;;;:36;;;;20125:7;20109:32;;20118:5;20109:32;;;20134:6;20109:32;;;;;;;;;;;;;;;;;;19811:338;;;:::o;14495:589::-;14619:26;14648:19;14660:6;14648:11;:19::i;:::-;14619:48;;14718:31;14724:4;14730:18;14718:5;:31::i;:::-;14813:45;14823:4;14829:8;;;;;;;;;;;14839:18;14813:9;:45::i;:::-;14922:49;14932:4;14938:12;;;;;;;;;;;14952:18;14922:9;:49::i;:::-;15018:58;15028:4;15034:2;15038:37;15049:25;15072:1;15049:18;:22;;:25;;;;:::i;:::-;15038:6;:10;;:37;;;;:::i;:::-;15018:9;:58::i;:::-;14495:589;;;;:::o;2259:192::-;2345:7;2378:1;2373;:6;;2381:12;2365:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2365:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2405:9;2421:1;2417;:5;2405:17;;2442:1;2435:8;;;2259:192;;;;;:::o;1217:181::-;1275:7;1295:9;1311:1;1307;:5;1295:17;;1336:1;1331;:6;;1323:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1389:1;1382:8;;;1217:181;;;;:::o;19026:348::-;19121:1;19102:21;;:7;:21;;;;19094:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19195:68;19218:6;19195:68;;;;;;;;;;;;;;;;;:9;:18;19205:7;19195:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;19174:9;:18;19184:7;19174:18;;;;;;;;;;;;;;;:89;;;;19289:24;19306:6;19289:12;;:16;;:24;;;;:::i;:::-;19274:12;:39;;;;19355:1;19329:37;;19338:7;19329:37;;;19359:6;19329:37;;;;;;;;;;;;;;;;;;19026:348;;:::o;20332:228::-;20404:22;20410:7;20419:6;20404:5;:22::i;:::-;20437:115;20446:7;20455:10;20467:84;20504:6;20467:84;;;;;;;;;;;;;;;;;:11;:20;20479:7;20467:20;;;;;;;;;;;;;;;:32;20488:10;20467:32;;;;;;;;;;;;;;;;:36;;:84;;;;;:::i;:::-;20437:8;:115::i;:::-;20332:228;;:::o;12591:247::-;12652:7;12671:15;12689:20;12702:6;;12689:7;:12;;:20;;;;:::i;:::-;12671:38;;12720:23;12746:48;12791:1;12782:2;:11;12773:6;;:20;12746:22;12761:6;;12746:10;:14;;:22;;;;:::i;:::-;:26;;:48;;;;:::i;:::-;12720:74;;12812:18;12805:25;;;;12591:247;;;:::o;2702:471::-;2760:7;3010:1;3005;:6;3001:47;;;3035:1;3028:8;;;;3001:47;3060:9;3076:1;3072;:5;3060:17;;3105:1;3100;3096;:5;;;;;;:10;3088:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3164:1;3157:8;;;2702:471;;;;;:::o;1673:136::-;1731:7;1758:43;1762:1;1765;1758:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1751:50;;1673:136;;;;:::o;6145:171::-;6204:7;6224:9;6236:8;6240:1;6242;6236:3;:8::i;:::-;6224:20;;6255:9;6267:8;6271:1;6273;6267:3;:8::i;:::-;6255:20;;6293:15;6297:8;6301:1;6303;6297:3;:8::i;:::-;6306:1;6293:3;:15::i;:::-;6286:22;;;;6145:171;;;;:::o;3641:132::-;3699:7;3726:39;3730:1;3733;3726:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3719:46;;3641:132;;;;:::o;4410:345::-;4496:7;4595:1;4591;:5;4598:12;4583:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4583:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4622:9;4638:1;4634;:5;;;;;;4622:17;;4746:1;4739:8;;;4410:345;;;;;:::o

Swarm Source

bzzr://f1c20ced090bf3f400231c52110589ef9fdf68070db33f50716580d8172305a7

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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