ETH Price: $2,686.11 (-1.78%)
Gas: 0.73 Gwei

Contract

0x3f8C74F50c67273993C85aCC963FeACCB5C074f4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer132455812021-09-17 21:09:531246 days ago1631912993IN
0x3f8C74F5...CB5C074f4
0 ETH0.00316505106
Transfer107205142020-08-24 2:50:071636 days ago1598237407IN
0x3f8C74F5...CB5C074f4
0 ETH0.0013400763
Transfer106638042020-08-15 9:17:311645 days ago1597483051IN
0x3f8C74F5...CB5C074f4
0 ETH0.00373591103
Transfer106634122020-08-15 7:52:561645 days ago1597477976IN
0x3f8C74F5...CB5C074f4
0 ETH0.0020207495
Transfer105284972020-07-25 12:05:151666 days ago1595678715IN
0x3f8C74F5...CB5C074f4
0 ETH0.0033830966
Multisend Token105147702020-07-23 8:55:461668 days ago1595494546IN
0x3f8C74F5...CB5C074f4
0 ETH0.0053830868.00000145
Multisend Token105147352020-07-23 8:46:141668 days ago1595493974IN
0x3f8C74F5...CB5C074f4
0 ETH0.0052255566
Multisend Token105146522020-07-23 8:25:211668 days ago1595492721IN
0x3f8C74F5...CB5C074f4
0 ETH0.003839448.5
Multisend Token105145932020-07-23 8:13:041668 days ago1595491984IN
0x3f8C74F5...CB5C074f4
0 ETH0.0054630769
Multisend Token105145332020-07-23 8:01:461668 days ago1595491306IN
0x3f8C74F5...CB5C074f4
0 ETH0.0044922570
Multisend Token105145202020-07-23 7:59:211668 days ago1595491161IN
0x3f8C74F5...CB5C074f4
0 ETH0.004363968.00000145
Multisend Token105145022020-07-23 7:56:271668 days ago1595490987IN
0x3f8C74F5...CB5C074f4
0 ETH0.0056214271
Multisend Token105144742020-07-23 7:48:341668 days ago1595490514IN
0x3f8C74F5...CB5C074f4
0 ETH0.0054630769
Multisend Token105143762020-07-23 7:23:311668 days ago1595489011IN
0x3f8C74F5...CB5C074f4
0 ETH0.005383968.00000134
Multisend Token105143542020-07-23 7:19:221668 days ago1595488762IN
0x3f8C74F5...CB5C074f4
0 ETH0.0043831568.3
Multisend Token105142982020-07-23 7:05:091668 days ago1595487909IN
0x3f8C74F5...CB5C074f4
0 ETH0.0042355566
Multisend Token105142602020-07-23 6:57:241668 days ago1595487444IN
0x3f8C74F5...CB5C074f4
0 ETH0.0042355566
Multisend Token105142122020-07-23 6:46:421668 days ago1595486802IN
0x3f8C74F5...CB5C074f4
0 ETH0.0041713765
Multisend Token105141252020-07-23 6:29:041668 days ago1595485744IN
0x3f8C74F5...CB5C074f4
0 ETH0.0049880263
Multisend Token105141112020-07-23 6:27:131668 days ago1595485633IN
0x3f8C74F5...CB5C074f4
0 ETH0.0052255566.00000145
Multisend Token105140992020-07-23 6:25:171668 days ago1595485517IN
0x3f8C74F5...CB5C074f4
0 ETH0.0053047267.00000145
Multisend Token105140642020-07-23 6:16:511668 days ago1595485011IN
0x3f8C74F5...CB5C074f4
0 ETH0.0051463765.00000145
Multisend Token105140392020-07-23 6:10:401668 days ago1595484640IN
0x3f8C74F5...CB5C074f4
0 ETH0.0039788562
Multisend Token105135992020-07-23 4:33:381668 days ago1595478818IN
0x3f8C74F5...CB5C074f4
0 ETH0.003483744
Transfer105135322020-07-23 4:18:541668 days ago1595477934IN
0x3f8C74F5...CB5C074f4
0 ETH0.0008508440
View all transactions

Advanced mode:
Parent Transaction Hash Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Keomyuniti

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-07-09
*/

pragma solidity 0.4.24;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;

    function balanceOf(address who) public view returns (uint256);

    function transfer(address to, uint256 value) public returns (bool);

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

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view returns (uint256);

    function transferFrom(address from, address to, uint256 value) public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);

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

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {
    mapping(address => mapping(address => uint256)) allowed;

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));

        uint256 _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // require (_value <= _allowance);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);
       emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * 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
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /**
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
       emit  Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool success) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}
/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address internal owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public {
        owner = msg.sender;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) onlyOwner public returns (bool) {
        require(newOwner != address(0x0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;

        return true;
    }
}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
    event Mint(address indexed to, uint256 amount);

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */

    function mint(address _to, uint256 _amount) onlyOwner public returns (bool) {
        totalSupply = SafeMath.add(totalSupply, _amount);
        balances[_to] = balances[_to].add(_amount);
        emit Mint(_to, _amount);
        emit Transfer(0x0000000000000000000000000000000000000000, _to, _amount);
        return true;
    }
}

/**
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract CappedToken is MintableToken {
    uint256 public cap;

   constructor(uint256 _cap) public {
        require(_cap > 0);
        cap = _cap;
    }

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address _to, uint256 _amount) onlyOwner public returns (bool) {
        require(totalSupply.add(_amount) <= cap);

        return super.mint(_to, _amount);
    }
}


/*

Token quantity
2 billions
18 decimals
Name of token is keomyuniti and 
"KEO" is symbolic name

*/


contract Keomyuniti is CappedToken {
    string public constant name = "keomyuniti";
    string public constant symbol = "KEO";
    uint8 public constant decimals = 18;

    constructor()
    CappedToken( 2000000000 * 10 ** uint256(decimals)) public 
    {

    }
    
     function multisendToken(address[] _contributors, uint256[] _balances) public onlyOwner {

            uint256 total = 0;
      
            uint8 i = 0;
            for (i; i < _contributors.length; i++) {
                super.transfer(_contributors[i], (_balances[i] ));
                total += _balances[i];
            }
            
        }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"multisendToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

608060405234801561001057600080fd5b5060038054600160a060020a031916331790556b06765c793fa10079d0000000600455610b2e806100426000396000f3006080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f2578063355274ea1461021d57806340c10f1914610232578063661884631461025657806370a082311461027a57806395d89b411461029b578063a9059cbb146102b0578063d2d745b1146102d4578063d73dd62314610364578063dd62ed3e14610388578063f2fde38b146103af575b600080fd5b3480156100eb57600080fd5b506100f46103d0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a0360043516602435610407565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b661046d565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a0360043581169060243516604435610473565b3480156101fe57600080fd5b50610207610595565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b506101b661059a565b34801561023e57600080fd5b5061018d600160a060020a03600435166024356105a0565b34801561026257600080fd5b5061018d600160a060020a03600435166024356105ec565b34801561028657600080fd5b506101b6600160a060020a03600435166106dc565b3480156102a757600080fd5b506100f46106f7565b3480156102bc57600080fd5b5061018d600160a060020a036004351660243561072e565b3480156102e057600080fd5b506040805160206004803580820135838102808601850190965280855261036295369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506107f59650505050505050565b005b34801561037057600080fd5b5061018d600160a060020a0360043516602435610891565b34801561039457600080fd5b506101b6600160a060020a036004358116906024351661092a565b3480156103bb57600080fd5b5061018d600160a060020a0360043516610955565b60408051808201909152600a81527f6b656f6d79756e69746900000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600080600160a060020a038416151561048b57600080fd5b50600160a060020a038416600081815260026020908152604080832033845282528083205493835260019091529020546104cb908463ffffffff6109f016565b600160a060020a038087166000908152600160205260408082209390935590861681522054610500908463ffffffff610a0216565b600160a060020a038516600090815260016020526040902055610529818463ffffffff6109f016565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60045481565b600354600090600160a060020a031633146105ba57600080fd5b6004546000546105d0908463ffffffff610a0216565b11156105db57600080fd5b6105e58383610a15565b9392505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561064157336000908152600260209081526040808320600160a060020a0388168452909152812055610676565b610651818463ffffffff6109f016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051808201909152600381527f4b454f0000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561074557600080fd5b33600090815260016020526040902054610765908363ffffffff6109f016565b3360009081526001602052604080822092909255600160a060020a03851681522054610797908363ffffffff610a0216565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6003546000908190600160a060020a0316331461081157600080fd5b5060009050805b83518160ff16101561088b57610862848260ff1681518110151561083857fe5b90602001906020020151848360ff1681518110151561085357fe5b9060200190602002015161072e565b50828160ff1681518110151561087457fe5b602090810290910101519190910190600101610818565b50505050565b336000908152600260209081526040808320600160a060020a03861684529091528120546108c5908363ffffffff610a0216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a0316331461096f57600080fd5b600160a060020a038216151561098457600080fd5b600354604051600160a060020a038085169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35060038054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b6000828211156109fc57fe5b50900390565b81810182811015610a0f57fe5b92915050565b600354600090600160a060020a03163314610a2f57600080fd5b610a3b60005483610a02565b6000908155600160a060020a038416815260016020526040902054610a66908363ffffffff610a0216565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001929150505600a165627a7a72305820a7185ad8a54fb61b77171ba8f111dbcbb3534ad30e87f1cc9993d163ede169d30029

Deployed Bytecode

0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f2578063355274ea1461021d57806340c10f1914610232578063661884631461025657806370a082311461027a57806395d89b411461029b578063a9059cbb146102b0578063d2d745b1146102d4578063d73dd62314610364578063dd62ed3e14610388578063f2fde38b146103af575b600080fd5b3480156100eb57600080fd5b506100f46103d0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a0360043516602435610407565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b661046d565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a0360043581169060243516604435610473565b3480156101fe57600080fd5b50610207610595565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b506101b661059a565b34801561023e57600080fd5b5061018d600160a060020a03600435166024356105a0565b34801561026257600080fd5b5061018d600160a060020a03600435166024356105ec565b34801561028657600080fd5b506101b6600160a060020a03600435166106dc565b3480156102a757600080fd5b506100f46106f7565b3480156102bc57600080fd5b5061018d600160a060020a036004351660243561072e565b3480156102e057600080fd5b506040805160206004803580820135838102808601850190965280855261036295369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506107f59650505050505050565b005b34801561037057600080fd5b5061018d600160a060020a0360043516602435610891565b34801561039457600080fd5b506101b6600160a060020a036004358116906024351661092a565b3480156103bb57600080fd5b5061018d600160a060020a0360043516610955565b60408051808201909152600a81527f6b656f6d79756e69746900000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600080600160a060020a038416151561048b57600080fd5b50600160a060020a038416600081815260026020908152604080832033845282528083205493835260019091529020546104cb908463ffffffff6109f016565b600160a060020a038087166000908152600160205260408082209390935590861681522054610500908463ffffffff610a0216565b600160a060020a038516600090815260016020526040902055610529818463ffffffff6109f016565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60045481565b600354600090600160a060020a031633146105ba57600080fd5b6004546000546105d0908463ffffffff610a0216565b11156105db57600080fd5b6105e58383610a15565b9392505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561064157336000908152600260209081526040808320600160a060020a0388168452909152812055610676565b610651818463ffffffff6109f016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051808201909152600381527f4b454f0000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561074557600080fd5b33600090815260016020526040902054610765908363ffffffff6109f016565b3360009081526001602052604080822092909255600160a060020a03851681522054610797908363ffffffff610a0216565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6003546000908190600160a060020a0316331461081157600080fd5b5060009050805b83518160ff16101561088b57610862848260ff1681518110151561083857fe5b90602001906020020151848360ff1681518110151561085357fe5b9060200190602002015161072e565b50828160ff1681518110151561087457fe5b602090810290910101519190910190600101610818565b50505050565b336000908152600260209081526040808320600160a060020a03861684529091528120546108c5908363ffffffff610a0216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a0316331461096f57600080fd5b600160a060020a038216151561098457600080fd5b600354604051600160a060020a038085169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35060038054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b6000828211156109fc57fe5b50900390565b81810182811015610a0f57fe5b92915050565b600354600090600160a060020a03163314610a2f57600080fd5b610a3b60005483610a02565b6000908155600160a060020a038416815260016020526040902054610a66908363ffffffff610a0216565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001929150505600a165627a7a72305820a7185ad8a54fb61b77171ba8f111dbcbb3534ad30e87f1cc9993d163ede169d30029

Deployed Bytecode Sourcemap

9822:646:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9864:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9864:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9864:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5194:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5194:206:0;-1:-1:-1;;;;;5194:206:0;;;;;;;;;;;;;;;;;;;;;;;;;1441:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1441:26:0;;;;;;;;;;;;;;;;;;;;3949:588;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3949:588:0;-1:-1:-1;;;;;3949:588:0;;;;;;;;;;;;9957:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9957:35:0;;;;;;;;;;;;;;;;;;;;;;;9145:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9145:18:0;;;;9519:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9519:179:0;-1:-1:-1;;;;;9519:179:0;;;;;;;6443:458;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6443:458:0;-1:-1:-1;;;;;6443:458:0;;;;;;;2674:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2674:115:0;-1:-1:-1;;;;;2674:115:0;;;;;9913:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9913:37:0;;;;2080:373;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2080:373:0;-1:-1:-1;;;;;2080:373:0;;;;;;;10107:358;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10107:358:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10107:358:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10107:358:0;;;;-1:-1:-1;10107:358:0;-1:-1:-1;10107:358:0;;-1:-1:-1;10107:358:0;;;;;;;;;-1:-1:-1;10107:358:0;;-1:-1:-1;10107:358:0;;-1:-1:-1;;;;;;;10107:358:0;;;6147:288;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6147:288:0;-1:-1:-1;;;;;6147:288:0;;;;;;;5741:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5741:144:0;-1:-1:-1;;;;;5741:144:0;;;;;;;;;;7784:233;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7784:233:0;-1:-1:-1;;;;;7784:233:0;;;;;9864:42;;;;;;;;;;;;;;;;;;;:::o;5194:206::-;5286:10;5261:4;5278:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5278:29:0;;;;;;;;;;;:38;;;5332;;;;;;;5261:4;;5278:29;;5286:10;;5332:38;;;;;;;;-1:-1:-1;5388:4:0;5194:206;;;;:::o;1441:26::-;;;;:::o;3949:588::-;4031:4;;-1:-1:-1;;;;;4056:17:0;;;;4048:26;;;;;;-1:-1:-1;;;;;;4108:14:0;;;;;;:7;:14;;;;;;;;4123:10;4108:26;;;;;;;;4323:15;;;:8;:15;;;;;;:27;;4343:6;4323:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4305:15:0;;;;;;;:8;:15;;;;;;:45;;;;4377:13;;;;;;;:25;;4395:6;4377:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4361:13:0;;;;;;:8;:13;;;;;:41;4442:22;:10;4457:6;4442:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;4413:14:0;;;;;;;:7;:14;;;;;;;;4428:10;4413:26;;;;;;;;:51;;;;4479:28;;;;;;;;;;;4413:14;;4479:28;;;;;;;;;;;-1:-1:-1;4525:4:0;;3949:588;-1:-1:-1;;;;3949:588:0:o;9957:35::-;9990:2;9957:35;:::o;9145:18::-;;;;:::o;9519:179::-;7581:5;;9589:4;;-1:-1:-1;;;;;7581:5:0;7567:10;:19;7559:28;;;;;;9642:3;;9614:11;;:24;;9630:7;9614:24;:15;:24;:::i;:::-;:31;;9606:40;;;;;;9666:24;9677:3;9682:7;9666:10;:24::i;:::-;9659:31;9519:179;-1:-1:-1;;;9519:179:0:o;6443:458::-;6575:10;6526:12;6567:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6567:29:0;;;;;;;;;;6611:27;;;6607:188;;;6663:10;6687:1;6655:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6655:29:0;;;;;;;;;:33;6607:188;;;6753:30;:8;6766:16;6753:30;:12;:30;:::i;:::-;6729:10;6721:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6721:29:0;;;;;;;;;:62;6607:188;6819:10;6841:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6810:61:0;;6841:29;;;;;;;;;;;6810:61;;;;;;;;;6819:10;6810:61;;;;;;;;;;;-1:-1:-1;6889:4:0;;6443:458;-1:-1:-1;;;6443:458:0:o;2674:115::-;-1:-1:-1;;;;;2765:16:0;2730:15;2765:16;;;:8;:16;;;;;;;2674:115::o;9913:37::-;;;;;;;;;;;;;;;;;;;:::o;2080:373::-;2143:4;-1:-1:-1;;;;;2168:17:0;;;;2160:26;;;;;;2299:10;2290:20;;;;:8;:20;;;;;;:32;;2315:6;2290:32;:24;:32;:::i;:::-;2276:10;2267:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2349:13:0;;;;;;:25;;2367:6;2349:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2333:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2390:33;;;;;;;2333:13;;2399:10;;2390:33;;;;;;;;;;-1:-1:-1;2441:4:0;2080:373;;;;:::o;10107:358::-;7581:5;;10211:13;;;;-1:-1:-1;;;;;7581:5:0;7567:10;:19;7559:28;;;;;;-1:-1:-1;10227:1:0;;-1:-1:-1;10227:1:0;10277:163;10289:13;:20;10285:1;:24;;;10277:163;;;10335:49;10350:13;10364:1;10350:16;;;;;;;;;;;;;;;;;;;;10369:9;10379:1;10369:12;;;;;;;;;;;;;;;;;;;;10335:14;:49::i;:::-;;10412:9;10422:1;10412:12;;;;;;;;;;;;;;;;;;;;;10403:21;;;;;10311:3;;10277:163;;;10107:358;;;;:::o;6147:288::-;6290:10;6225:12;6282:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6282:29:0;;;;;;;;;;:46;;6316:11;6282:46;:33;:46;:::i;:::-;6258:10;6250:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6250:29:0;;;;;;;;;;;;:78;;;6344:61;;;;;;6250:29;;6344:61;;;;;;;;;;;-1:-1:-1;6423:4:0;6147:288;;;;:::o;5741:144::-;-1:-1:-1;;;;;5852:15:0;;;5815:17;5852:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5741:144::o;7784:233::-;7581:5;;7855:4;;-1:-1:-1;;;;;7581:5:0;7567:10;:19;7559:28;;;;;;-1:-1:-1;;;;;7880:24:0;;;;7872:33;;;;;;7942:5;;7921:37;;-1:-1:-1;;;;;7921:37:0;;;;7942:5;;7921:37;;7942:5;;7921:37;-1:-1:-1;7969:5:0;:16;;-1:-1:-1;;;;;7969:16:0;;-1:-1:-1;;7969:16:0;;;;;;;7784:233;;;:::o;935:123::-;993:7;1020:6;;;;1013:14;;;;-1:-1:-1;1045:5:0;;;935:123::o;1133:141::-;1217:5;;;1240:6;;;;1233:14;;;;1133:141;;;;:::o;8683:334::-;7581:5;;8753:4;;-1:-1:-1;;;;;7581:5:0;7567:10;:19;7559:28;;;;;;8784:34;8797:11;;8810:7;8784:12;:34::i;:::-;8770:11;:48;;;-1:-1:-1;;;;;8845:13:0;;;;:8;:13;;;;;;:26;;8863:7;8845:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8829:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8887:18;;;;;;;8829:13;;8887:18;;;;;;;;;8921:66;;;;;;;;-1:-1:-1;;;;;8921:66:0;;;8930:42;;8921:66;;;;;;;;;-1:-1:-1;9005:4:0;8683:334;;;;:::o

Swarm Source

bzzr://a7185ad8a54fb61b77171ba8f111dbcbb3534ad30e87f1cc9993d163ede169d3

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.