ETH Price: $3,065.44 (-7.07%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer91653682019-12-26 10:45:021858 days ago1577357102IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0009483618
Transfer91365142019-12-20 16:54:471864 days ago1576860887IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0004976213.2
Transfer91345732019-12-20 7:30:461865 days ago1576827046IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0006956213.2
Transfer91299522019-12-19 9:12:271866 days ago1576746747IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0006956213.2
Transfer91298462019-12-19 8:47:471866 days ago1576745267IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0006956213.2
Transfer91293842019-12-19 6:35:401866 days ago1576737340IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0004976213.2
Transfer91120492019-12-15 20:07:461869 days ago1576440466IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0006956213.2
Transfer91117452019-12-15 18:34:331869 days ago1576434873IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0006956213.2
Transfer91117392019-12-15 18:33:011869 days ago1576434781IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0003856313.2
Transfer91117262019-12-15 18:29:281869 days ago1576434568IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0004976213.2
Transfer91039442019-12-14 6:08:281871 days ago1576303708IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011857222.5
Transfer90995732019-12-13 10:30:251871 days ago1576233025IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011857222.5
Transfer90995592019-12-13 10:24:441871 days ago1576232684IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011857222.5
Transfer90838062019-12-10 15:15:401874 days ago1575990940IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011857222.5
Transfer90818152019-12-10 7:06:251875 days ago1575961585IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0008482222.5
Transfer90598992019-12-06 9:53:031878 days ago1575625983IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011679922.5
Transfer90547652019-12-05 11:58:511879 days ago1575547131IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0008304922.5
Transfer90541292019-12-05 9:06:061880 days ago1575536766IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011679922.5
Transfer90499542019-12-04 15:20:171880 days ago1575472817IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011665522.5
Transfer90499342019-12-04 15:15:301880 days ago1575472530IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0008304922.5
Transfer90490982019-12-04 11:43:281880 days ago1575459808IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0008304922.5
Transfer90490802019-12-04 11:38:541880 days ago1575459534IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011679922.5
Transfer90445292019-12-03 15:52:161881 days ago1575388336IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011679922.5
Transfer90444922019-12-03 15:45:371881 days ago1575387937IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011679922.5
Transfer90378602019-12-02 11:36:431882 days ago1575286603IN
0xf1e59F20...9f0B7Ac0e
0 ETH0.0011679922.5
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:
ExtoToken

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-04-22
*/

pragma solidity 0.5.7;

library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 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 c;
    }

    /**
    * @dev Substracts 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) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

contract Ownable {

    address public owner;
    bool public stopped = false;

    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) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

    /** 
    * Stop ICO/Contract
    */
    function stop() onlyOwner public{
        stopped = true;
    }

    /** 
    * Start ICO/Contract
    */
    function start() onlyOwner public{
        stopped = false;
    }

    /** 
    Validate if ICO running
    */
    modifier isRunning {
        assert (!stopped);
        _;
    }
}

contract ERC20Basic {
    function totalSupply() public view returns (uint256);
    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);
}

contract BasicToken is ERC20Basic {

    using SafeMath for uint256;
    mapping(address => uint256) balances;
    uint256 totalSupply_;

    /**
    * @dev total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @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));
        require(_value <= balances[msg.sender]);

        // 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];
    }  

}

contract BurnableToken is BasicToken, Ownable {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public onlyOwner{
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(burner, _value);
    }
}

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);
}

library SafeERC20 {

    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }
    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }
    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) internal 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));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].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) {
        return allowed[_owner][_spender];
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a 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
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        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;
    }
}


contract ExtoToken is StandardToken, BurnableToken {

    using SafeMath for uint;

    string constant public symbol = "EXTO";
    string constant public name = "Exto";
    uint8 constant public decimals = 18;
    uint256 public constant decimalFactor = 10 ** uint256(decimals);
    uint256 public constant INITIAL_SUPPLY = 200000000 * decimalFactor;

    constructor(address ownerAdrs) public {
        totalSupply_ = INITIAL_SUPPLY;
        //InitialDistribution
        preSale(ownerAdrs,totalSupply_);
    }

    function preSale(address _address, uint _amount) internal returns (bool) {
        balances[_address] = _amount;
        emit Transfer(address(0x0), _address, _amount);
    }

    function transfer(address _to, uint256 _value) isRunning public returns (bool) {
        super.transfer(_to, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) isRunning public returns (bool) {
        super.transferFrom(_from, _to, _value);
        return true;
    }
    
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimalFactor","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"ownerAdrs","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

608060405260038054600160a01b60ff021916905534801561002057600080fd5b50604051602080610c088339810180604052602081101561004057600080fd5b5051600380546001600160a01b031916331790556aa56fa5b99019a5c8000000600181905561007790829061007e602090811b901c565b50506100d4565b6001600160a01b0382166000818152602081815260408083208590558051858152905192939284927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a392915050565b610b25806100e36000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636d6a6a4d116100ad578063a9059cbb11610071578063a9059cbb1461030e578063be9a65551461033a578063d73dd62314610342578063dd62ed3e1461036e578063f2fde38b1461039c57610121565b80636d6a6a4d146102ac57806370a08231146102b457806375f12b21146102da5780638da5cb5b146102e257806395d89b411461030657610121565b806323b872dd116100f457806323b872dd146102075780632ff2e9dc1461023d578063313ce5671461024557806342966c6814610263578063661884631461028057610121565b806306fdde031461012657806307da68f5146101a3578063095ea7b3146101ad57806318160ddd146101ed575b600080fd5b61012e6103c2565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ab6103e5565b005b6101d9600480360360408110156101c357600080fd5b506001600160a01b038135169060200135610414565b604080519115158252519081900360200190f35b6101f561047a565b60408051918252519081900360200190f35b6101d96004803603606081101561021d57600080fd5b506001600160a01b03813581169160208101359091169060400135610480565b6101f56104ad565b61024d6104bc565b6040805160ff9092168252519081900360200190f35b6101ab6004803603602081101561027957600080fd5b50356104c1565b6101d96004803603604081101561029657600080fd5b506001600160a01b038135169060200135610586565b6101f5610676565b6101f5600480360360208110156102ca57600080fd5b50356001600160a01b0316610682565b6101d961069d565b6102ea6106ad565b604080516001600160a01b039092168252519081900360200190f35b61012e6106bc565b6101d96004803603604081101561032457600080fd5b506001600160a01b0381351690602001356106df565b6101ab61070a565b6101d96004803603604081101561035857600080fd5b506001600160a01b038135169060200135610733565b6101f56004803603604081101561038457600080fd5b506001600160a01b03813581169160200135166107cc565b6101ab600480360360208110156103b257600080fd5b50356001600160a01b03166107f7565b604051806040016040528060048152602001600160e01b634578746f0281525081565b6003546001600160a01b031633146103fc57600080fd5b60038054600160a01b60ff021916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff161561049757fe5b6104a284848461087d565b506001949350505050565b6aa56fa5b99019a5c800000081565b601281565b6003546001600160a01b031633146104d857600080fd5b336000908152602081905260409020548111156104f457600080fd5b33600081815260208190526040902054610514908363ffffffff6109f216565b6001600160a01b038216600090815260208190526040902055600154610540908363ffffffff6109f216565b6001556040805183815290516001600160a01b038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808311156105db573360009081526002602090815260408083206001600160a01b0388168452909152812055610610565b6105eb818463ffffffff6109f216565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b670de0b6b3a764000081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b604051806040016040528060048152602001600160e01b634558544f0281525081565b600354600090600160a01b900460ff16156106f657fe5b6107008383610a04565b5060019392505050565b6003546001600160a01b0316331461072157600080fd5b60038054600160a01b60ff0219169055565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610767908363ffffffff610ae316565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461080e57600080fd5b6001600160a01b03811661082157600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831661089257600080fd5b6001600160a01b0384166000908152602081905260409020548211156108b757600080fd5b6001600160a01b03841660009081526002602090815260408083203384529091529020548211156108e757600080fd5b6001600160a01b038416600090815260208190526040902054610910908363ffffffff6109f216565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610945908363ffffffff610ae316565b6001600160a01b03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610987908363ffffffff6109f216565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6000828211156109fe57fe5b50900390565b60006001600160a01b038316610a1957600080fd5b33600090815260208190526040902054821115610a3557600080fd5b33600090815260208190526040902054610a55908363ffffffff6109f216565b33600090815260208190526040808220929092556001600160a01b03851681522054610a87908363ffffffff610ae316565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610af257fe5b939250505056fea165627a7a72305820cd20f5158ca765e190fd35401675a0be943038796d38acabf165720a32f7577f00290000000000000000000000000a79bcd7b17a577500f5b9bd0366c3ee8dc742cf

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636d6a6a4d116100ad578063a9059cbb11610071578063a9059cbb1461030e578063be9a65551461033a578063d73dd62314610342578063dd62ed3e1461036e578063f2fde38b1461039c57610121565b80636d6a6a4d146102ac57806370a08231146102b457806375f12b21146102da5780638da5cb5b146102e257806395d89b411461030657610121565b806323b872dd116100f457806323b872dd146102075780632ff2e9dc1461023d578063313ce5671461024557806342966c6814610263578063661884631461028057610121565b806306fdde031461012657806307da68f5146101a3578063095ea7b3146101ad57806318160ddd146101ed575b600080fd5b61012e6103c2565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ab6103e5565b005b6101d9600480360360408110156101c357600080fd5b506001600160a01b038135169060200135610414565b604080519115158252519081900360200190f35b6101f561047a565b60408051918252519081900360200190f35b6101d96004803603606081101561021d57600080fd5b506001600160a01b03813581169160208101359091169060400135610480565b6101f56104ad565b61024d6104bc565b6040805160ff9092168252519081900360200190f35b6101ab6004803603602081101561027957600080fd5b50356104c1565b6101d96004803603604081101561029657600080fd5b506001600160a01b038135169060200135610586565b6101f5610676565b6101f5600480360360208110156102ca57600080fd5b50356001600160a01b0316610682565b6101d961069d565b6102ea6106ad565b604080516001600160a01b039092168252519081900360200190f35b61012e6106bc565b6101d96004803603604081101561032457600080fd5b506001600160a01b0381351690602001356106df565b6101ab61070a565b6101d96004803603604081101561035857600080fd5b506001600160a01b038135169060200135610733565b6101f56004803603604081101561038457600080fd5b506001600160a01b03813581169160200135166107cc565b6101ab600480360360208110156103b257600080fd5b50356001600160a01b03166107f7565b604051806040016040528060048152602001600160e01b634578746f0281525081565b6003546001600160a01b031633146103fc57600080fd5b60038054600160a01b60ff021916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff161561049757fe5b6104a284848461087d565b506001949350505050565b6aa56fa5b99019a5c800000081565b601281565b6003546001600160a01b031633146104d857600080fd5b336000908152602081905260409020548111156104f457600080fd5b33600081815260208190526040902054610514908363ffffffff6109f216565b6001600160a01b038216600090815260208190526040902055600154610540908363ffffffff6109f216565b6001556040805183815290516001600160a01b038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808311156105db573360009081526002602090815260408083206001600160a01b0388168452909152812055610610565b6105eb818463ffffffff6109f216565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b670de0b6b3a764000081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b604051806040016040528060048152602001600160e01b634558544f0281525081565b600354600090600160a01b900460ff16156106f657fe5b6107008383610a04565b5060019392505050565b6003546001600160a01b0316331461072157600080fd5b60038054600160a01b60ff0219169055565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610767908363ffffffff610ae316565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461080e57600080fd5b6001600160a01b03811661082157600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831661089257600080fd5b6001600160a01b0384166000908152602081905260409020548211156108b757600080fd5b6001600160a01b03841660009081526002602090815260408083203384529091529020548211156108e757600080fd5b6001600160a01b038416600090815260208190526040902054610910908363ffffffff6109f216565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610945908363ffffffff610ae316565b6001600160a01b03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610987908363ffffffff6109f216565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6000828211156109fe57fe5b50900390565b60006001600160a01b038316610a1957600080fd5b33600090815260208190526040902054821115610a3557600080fd5b33600090815260208190526040902054610a55908363ffffffff6109f216565b33600090815260208190526040808220929092556001600160a01b03851681522054610a87908363ffffffff610ae316565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610af257fe5b939250505056fea165627a7a72305820cd20f5158ca765e190fd35401675a0be943038796d38acabf165720a32f7577f0029

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

0000000000000000000000000a79bcd7b17a577500f5b9bd0366c3ee8dc742cf

-----Decoded View---------------
Arg [0] : ownerAdrs (address): 0x0A79BCD7B17a577500f5b9BD0366c3Ee8dc742CF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000a79bcd7b17a577500f5b9bd0366c3ee8dc742cf


Swarm Source

bzzr://cd20f5158ca765e190fd35401675a0be943038796d38acabf165720a32f7577f

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.