ETH Price: $2,938.74 (-7.72%)
Gas: 18 Gwei

Contract

0xf3Db5Fa2C66B7aF3Eb0C0b782510816cbe4813b8
 
Transaction Hash
Method
Block
From
To
Value
0x87513614b861af4ceb19b797940bcf691b1ac9827c721d5d06fe8627cde0ff01Transfer(pending)2024-04-30 14:53:234 hrs ago1714488803IN
EverexToken
0 ETH(Pending)(Pending)
Transfer197667162024-04-30 7:44:3511 hrs ago1714463075IN
EverexToken
0 ETH0.000535439.08355439
Transfer197128112024-04-22 18:45:238 days ago1713811523IN
EverexToken
0 ETH0.0005088212.15247348
Transfer196756352024-04-17 13:57:2313 days ago1713362243IN
EverexToken
0 ETH0.001580829.18233396
Approve196527222024-04-14 8:56:4716 days ago1713085007IN
EverexToken
0 ETH0.0005518311.82605498
Approve196237342024-04-10 7:26:4720 days ago1712734007IN
EverexToken
0 ETH0.0006367313.66287961
Transfer195554052024-03-31 17:39:2330 days ago1711906763IN
EverexToken
0 ETH0.0013925825.70759751
Approve195406922024-03-29 15:57:3532 days ago1711727855IN
EverexToken
0 ETH0.0018279739.17397287
Approve195400372024-03-29 13:44:5932 days ago1711719899IN
EverexToken
0 ETH0.0012093425.95001015
Approve195394272024-03-29 11:41:2332 days ago1711712483IN
EverexToken
0 ETH0.0011546224.74389592
Approve195394042024-03-29 11:36:4732 days ago1711712207IN
EverexToken
0 ETH0.0009509120.37844451
Approve194943312024-03-23 2:28:5938 days ago1711160939IN
EverexToken
0 ETH0.0009467120.43549725
Approve194648322024-03-18 23:06:4742 days ago1710803207IN
EverexToken
0 ETH0.0014926332.21956685
Transfer193968462024-03-09 10:08:4752 days ago1709978927IN
EverexToken
0 ETH0.0024559545.34799098
Approve192557412024-02-18 16:01:5972 days ago1708272119IN
EverexToken
0 ETH0.0018832240.35809475
Transfer192288552024-02-14 21:24:3575 days ago1707945875IN
EverexToken
0 ETH0.0013993825.83897169
Approve190875512024-01-26 1:37:3595 days ago1706233055IN
EverexToken
0 ETH0.0009262119.87464259
Transfer190783752024-01-24 18:46:4797 days ago1706122007IN
EverexToken
0 ETH0.0012361220.96196152
Transfer189953812024-01-13 3:46:35108 days ago1705117595IN
EverexToken
0 ETH0.0010136517.18932076
Transfer189953722024-01-13 3:44:47108 days ago1705117487IN
EverexToken
0 ETH0.000767214.16289216
Transfer189340522024-01-04 12:45:11117 days ago1704372311IN
EverexToken
0 ETH0.0010600519.57343281
Transfer189041312023-12-31 7:59:59121 days ago1704009599IN
EverexToken
0 ETH0.0007635614.15528836
Approve188516102023-12-23 22:53:59128 days ago1703372039IN
EverexToken
0 ETH0.000820917.59211237
Transfer188139612023-12-18 16:08:23134 days ago1702915703IN
EverexToken
0 ETH0.0045407483.8239768
Transfer187801102023-12-13 22:05:47138 days ago1702505147IN
EverexToken
0 ETH0.0035197259.68662697
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:
EVXToken

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-09-29
*/

pragma solidity ^0.4.13;

/**
* Everex Token Contract
* Copyright © 2017 by Everex https://everex.io
*/

/**
 * @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) constant returns (uint256);
  function transfer(address to, uint256 value) returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, 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) 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);
    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) constant returns (uint256 balance) {
    return balances[_owner];
  }

}


/**
 * @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) returns (bool) {
    require(_to != address(0));

    var _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);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) returns (bool) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    allowed[msg.sender][_spender] = _value;
    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) constant 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) 
    returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) 
    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);
    }
    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 public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() {
    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 {
    require(newOwner != address(0));      
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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;
  }

  function sub(uint256 a, uint256 b) internal constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused {
    paused = false;
    Unpause();
  }
}



/**
 * @title evxOwnable
 * @dev The evxOwnable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract evxOwnable is Ownable {

  address public newOwner;

  /**
   * @dev Allows the current owner to transfer control of the contract to an otherOwner.
   * @param otherOwner The address to transfer ownership to.
   */
  function transferOwnership(address otherOwner) onlyOwner {
    require(otherOwner != address(0));      
    newOwner = otherOwner;
  }

  /**
   * @dev Finish ownership transfer.
   */
  function approveOwnership() {
    require(msg.sender == newOwner);
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
    newOwner = address(0);
  }
}


/**
 * @title Moderated
 * @dev Moderator can make transfers from and to any account (including frozen).
 */
contract evxModerated is evxOwnable {

  address public moderator;
  address public newModerator;

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

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

  /**
   * @dev Moderator same as owner
   */
  function evxModerated(){
    moderator = msg.sender;
  }

  /**
   * @dev Allows the current moderator to transfer control of the contract to an otherModerator.
   * @param otherModerator The address to transfer moderatorship to.
   */
  function transferModeratorship(address otherModerator) onlyModerator {
    newModerator = otherModerator;
  }

  /**
   * @dev Complete moderatorship transfer.
   */
  function approveModeratorship() {
    require(msg.sender == newModerator);
    moderator = newModerator;
    newModerator = address(0);
  }

  /**
   * @dev Removes moderator from the contract.
   * After this point, moderator role will be eliminated completly.
   */
  function removeModeratorship() onlyOwner {
      moderator = address(0);
  }

  function hasModerator() constant returns(bool) {
      return (moderator != address(0));
  }
}


/**
 * @title evxPausable
 * @dev Slightly modified implementation of an emergency stop mechanism.
 */
contract evxPausable is Pausable, evxModerated {
  /**
   * @dev called by the owner or moderator to pause, triggers stopped state
   */
  function pause() onlyOwnerOrModerator whenNotPaused {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner or moderator to unpause, returns to normal state
   */
  function unpause() onlyOwnerOrModerator whenPaused {
    paused = false;
    Unpause();
  }
}


/**
 * Pausable token with moderator role and freeze address implementation
 *
 **/
contract evxModeratedToken is StandardToken, evxPausable {

  mapping(address => bool) frozen;

  /**
   * @dev Check if given address is frozen. Freeze works only if moderator role is active
   * @param _addr address Address to check
   */
  function isFrozen(address _addr) constant returns (bool){
      return frozen[_addr] && hasModerator();
  }

  /**
   * @dev Freezes address (no transfer can be made from or to this address).
   * @param _addr address Address to be frozen
   */
  function freeze(address _addr) onlyModerator {
      frozen[_addr] = true;
  }

  /**
   * @dev Unfreezes frozen address.
   * @param _addr address Address to be unfrozen
   */
  function unfreeze(address _addr) onlyModerator {
      frozen[_addr] = false;
  }

  /**
   * @dev Declines transfers from/to frozen addresses.
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amout of tokens to be transfered
   */
  function transfer(address _to, uint256 _value) whenNotPaused returns (bool) {
    require(!isFrozen(msg.sender));
    require(!isFrozen(_to));
    return super.transfer(_to, _value);
  }

  /**
   * @dev Declines transfers from/to/by frozen addresses.
   * @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 amout of tokens to be transfered
   */
  function transferFrom(address _from, address _to, uint256 _value) whenNotPaused returns (bool) {
    require(!isFrozen(msg.sender));
    require(!isFrozen(_from));
    require(!isFrozen(_to));
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @dev Allows moderator to 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 amout of tokens to be transfered
   */
  function moderatorTransferFrom(address _from, address _to, uint256 _value) onlyModerator returns (bool) {
    balances[_to] = balances[_to].add(_value);
    balances[_from] = balances[_from].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }
}
/**
 * EVXToken
 **/
contract EVXToken is evxModeratedToken {
  string public constant version = "1.1";
  string public constant name = "Everex";
  string public constant symbol = "EVX";
  uint256 public constant decimals = 4;

  /**
   * @dev Constructor that gives msg.sender all of existing tokens. 
   */
  function EVXToken(uint256 _initialSupply) {   
    totalSupply = _initialSupply;
    balances[msg.sender] = _initialSupply;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"moderatorTransferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"moderator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"removeModeratorship","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"unfreeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"approveOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"otherModerator","type":"address"}],"name":"transferModeratorship","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"freeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"hasModerator","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"approveModeratorship","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newModerator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"otherOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

60606040526003805460a060020a60ff0219169055341561001f57600080fd5b604051602080611336833981016040528080519150505b5b5b60038054600160a060020a03191633600160a060020a03161790555b60058054600160a060020a03191633600160a060020a03161790555b6000818155600160a060020a03331681526001602052604090208190555b505b6112978061009f6000396000f300606060405236156101725763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610177578063095ea7b3146102025780630dd12d381461023857806318160ddd1461027457806323b872dd14610299578063313ce567146102d557806338743904146102fa5780633f4ba83a1461032957806343c8c30e1461033e57806345c8b1a61461035357806354fd4d50146103745780635c975abb146103ff578063661884631461042657806370a082311461045c578063742c81e41461048d5780638456cb59146104a2578063876ba3cd146104b75780638d1fdf2f146104d85780638da5cb5b146104f957806395d89b4114610528578063a9059cbb146105b3578063aed362c1146105e9578063afb47bb314610610578063c41addb514610625578063d4ee1d9014610654578063d73dd62314610683578063dd62ed3e146106b9578063e5839836146106f0578063f2fde38b14610723575b600080fd5b341561018257600080fd5b61018a610744565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020d57600080fd5b610224600160a060020a036004351660243561077b565b604051901515815260200160405180910390f35b341561024357600080fd5b610224600160a060020a0360043581169060243516604435610822565b604051901515815260200160405180910390f35b341561027f57600080fd5b610287610900565b60405190815260200160405180910390f35b34156102a457600080fd5b610224600160a060020a0360043581169060243516604435610906565b604051901515815260200160405180910390f35b34156102e057600080fd5b61028761096f565b60405190815260200160405180910390f35b341561030557600080fd5b61030d610974565b604051600160a060020a03909116815260200160405180910390f35b341561033457600080fd5b61033c610983565b005b341561034957600080fd5b61033c610a20565b005b341561035e57600080fd5b61033c600160a060020a0360043516610a5c565b005b341561037f57600080fd5b61018a610a9c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561040a57600080fd5b610224610ad3565b604051901515815260200160405180910390f35b341561043157600080fd5b610224600160a060020a0360043516602435610ae3565b604051901515815260200160405180910390f35b341561046757600080fd5b610287600160a060020a0360043516610bdf565b60405190815260200160405180910390f35b341561049857600080fd5b61033c610bfe565b005b34156104ad57600080fd5b61033c610c8d565b005b34156104c257600080fd5b61033c600160a060020a0360043516610d2f565b005b34156104e357600080fd5b61033c600160a060020a0360043516610d77565b005b341561050457600080fd5b61030d610dba565b604051600160a060020a03909116815260200160405180910390f35b341561053357600080fd5b61018a610dc9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105be57600080fd5b610224600160a060020a0360043516602435610e00565b604051901515815260200160405180910390f35b34156105f457600080fd5b610224610e54565b604051901515815260200160405180910390f35b341561061b57600080fd5b61033c610e66565b005b341561063057600080fd5b61030d610eb6565b604051600160a060020a03909116815260200160405180910390f35b341561065f57600080fd5b61030d610ec5565b604051600160a060020a03909116815260200160405180910390f35b341561068e57600080fd5b610224600160a060020a0360043516602435610ed4565b604051901515815260200160405180910390f35b34156106c457600080fd5b610287600160a060020a0360043581169060243516610f79565b60405190815260200160405180910390f35b34156106fb57600080fd5b610224600160a060020a0360043516610fa6565b604051901515815260200160405180910390f35b341561072e57600080fd5b61033c600160a060020a0360043516610fda565b005b60408051908101604052600681527f4576657265780000000000000000000000000000000000000000000000000000602082015281565b60008115806107ad5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156107b857600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055460009033600160a060020a0390811691161461084057600080fd5b600160a060020a038316600090815260016020526040902054610869908363ffffffff61103716565b600160a060020a03808516600090815260016020526040808220939093559086168152205461089e908363ffffffff61105116565b600160a060020a038086166000818152600160205260409081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b9392505050565b60005481565b60035460009060a060020a900460ff161561092057600080fd5b61092933610fa6565b1561093357600080fd5b61093c84610fa6565b1561094657600080fd5b61094f83610fa6565b1561095957600080fd5b610964848484611068565b90505b5b9392505050565b600481565b600554600160a060020a031681565b60055433600160a060020a03908116911614806109ae575060035433600160a060020a039081169116145b15156109b957600080fd5b60035460a060020a900460ff1615156109d157600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035433600160a060020a03908116911614610a3b57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff191690555b5b565b60055433600160a060020a03908116911614610a7757600080fd5b600160a060020a0381166000908152600760205260409020805460ff191690555b5b50565b60408051908101604052600381527f312e310000000000000000000000000000000000000000000000000000000000602082015281565b60035460a060020a900460ff1681565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610b4057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b77565b610b50818463ffffffff61105116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60045433600160a060020a03908116911614610c1957600080fd5b600454600354600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b60055433600160a060020a0390811691161480610cb8575060035433600160a060020a039081169116145b1515610cc357600080fd5b60035460a060020a900460ff1615610cda57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60055433600160a060020a03908116911614610d4a57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60055433600160a060020a03908116911614610d9257600080fd5b600160a060020a0381166000908152600760205260409020805460ff191660011790555b5b50565b600354600160a060020a031681565b60408051908101604052600381527f4556580000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610e1a57600080fd5b610e2333610fa6565b15610e2d57600080fd5b610e3683610fa6565b15610e4057600080fd5b610e4a8383611194565b90505b5b92915050565b600554600160a060020a031615155b90565b60065433600160a060020a03908116911614610e8157600080fd5b600680546005805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b600654600160a060020a031681565b600454600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f0c908363ffffffff61103716565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600160a060020a03811660009081526007602052604081205460ff168015610fd15750610fd1610e54565b5b90505b919050565b60035433600160a060020a03908116911614610ff557600080fd5b600160a060020a038116151561100a57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282018381101561104657fe5b8091505b5092915050565b60008282111561105d57fe5b508082035b92915050565b600080600160a060020a038416151561108057600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546110c6908463ffffffff61105116565b600160a060020a0380871660009081526001602052604080822093909355908616815220546110fb908463ffffffff61103716565b600160a060020a038516600090815260016020526040902055611124818463ffffffff61105116565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156111ab57600080fd5b600160a060020a0333166000908152600160205260409020546111d4908363ffffffff61105116565b600160a060020a033381166000908152600160205260408082209390935590851681522054611209908363ffffffff61103716565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a72305820ecce5181406b9910148da7a081b32a68a3accce411a01bb738bbc19c3d8a10a000290000000000000000000000000000000000000000000000000000003a35294400

Deployed Bytecode

0x606060405236156101725763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610177578063095ea7b3146102025780630dd12d381461023857806318160ddd1461027457806323b872dd14610299578063313ce567146102d557806338743904146102fa5780633f4ba83a1461032957806343c8c30e1461033e57806345c8b1a61461035357806354fd4d50146103745780635c975abb146103ff578063661884631461042657806370a082311461045c578063742c81e41461048d5780638456cb59146104a2578063876ba3cd146104b75780638d1fdf2f146104d85780638da5cb5b146104f957806395d89b4114610528578063a9059cbb146105b3578063aed362c1146105e9578063afb47bb314610610578063c41addb514610625578063d4ee1d9014610654578063d73dd62314610683578063dd62ed3e146106b9578063e5839836146106f0578063f2fde38b14610723575b600080fd5b341561018257600080fd5b61018a610744565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020d57600080fd5b610224600160a060020a036004351660243561077b565b604051901515815260200160405180910390f35b341561024357600080fd5b610224600160a060020a0360043581169060243516604435610822565b604051901515815260200160405180910390f35b341561027f57600080fd5b610287610900565b60405190815260200160405180910390f35b34156102a457600080fd5b610224600160a060020a0360043581169060243516604435610906565b604051901515815260200160405180910390f35b34156102e057600080fd5b61028761096f565b60405190815260200160405180910390f35b341561030557600080fd5b61030d610974565b604051600160a060020a03909116815260200160405180910390f35b341561033457600080fd5b61033c610983565b005b341561034957600080fd5b61033c610a20565b005b341561035e57600080fd5b61033c600160a060020a0360043516610a5c565b005b341561037f57600080fd5b61018a610a9c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561040a57600080fd5b610224610ad3565b604051901515815260200160405180910390f35b341561043157600080fd5b610224600160a060020a0360043516602435610ae3565b604051901515815260200160405180910390f35b341561046757600080fd5b610287600160a060020a0360043516610bdf565b60405190815260200160405180910390f35b341561049857600080fd5b61033c610bfe565b005b34156104ad57600080fd5b61033c610c8d565b005b34156104c257600080fd5b61033c600160a060020a0360043516610d2f565b005b34156104e357600080fd5b61033c600160a060020a0360043516610d77565b005b341561050457600080fd5b61030d610dba565b604051600160a060020a03909116815260200160405180910390f35b341561053357600080fd5b61018a610dc9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105be57600080fd5b610224600160a060020a0360043516602435610e00565b604051901515815260200160405180910390f35b34156105f457600080fd5b610224610e54565b604051901515815260200160405180910390f35b341561061b57600080fd5b61033c610e66565b005b341561063057600080fd5b61030d610eb6565b604051600160a060020a03909116815260200160405180910390f35b341561065f57600080fd5b61030d610ec5565b604051600160a060020a03909116815260200160405180910390f35b341561068e57600080fd5b610224600160a060020a0360043516602435610ed4565b604051901515815260200160405180910390f35b34156106c457600080fd5b610287600160a060020a0360043581169060243516610f79565b60405190815260200160405180910390f35b34156106fb57600080fd5b610224600160a060020a0360043516610fa6565b604051901515815260200160405180910390f35b341561072e57600080fd5b61033c600160a060020a0360043516610fda565b005b60408051908101604052600681527f4576657265780000000000000000000000000000000000000000000000000000602082015281565b60008115806107ad5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156107b857600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055460009033600160a060020a0390811691161461084057600080fd5b600160a060020a038316600090815260016020526040902054610869908363ffffffff61103716565b600160a060020a03808516600090815260016020526040808220939093559086168152205461089e908363ffffffff61105116565b600160a060020a038086166000818152600160205260409081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b9392505050565b60005481565b60035460009060a060020a900460ff161561092057600080fd5b61092933610fa6565b1561093357600080fd5b61093c84610fa6565b1561094657600080fd5b61094f83610fa6565b1561095957600080fd5b610964848484611068565b90505b5b9392505050565b600481565b600554600160a060020a031681565b60055433600160a060020a03908116911614806109ae575060035433600160a060020a039081169116145b15156109b957600080fd5b60035460a060020a900460ff1615156109d157600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035433600160a060020a03908116911614610a3b57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff191690555b5b565b60055433600160a060020a03908116911614610a7757600080fd5b600160a060020a0381166000908152600760205260409020805460ff191690555b5b50565b60408051908101604052600381527f312e310000000000000000000000000000000000000000000000000000000000602082015281565b60035460a060020a900460ff1681565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610b4057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b77565b610b50818463ffffffff61105116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60045433600160a060020a03908116911614610c1957600080fd5b600454600354600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b60055433600160a060020a0390811691161480610cb8575060035433600160a060020a039081169116145b1515610cc357600080fd5b60035460a060020a900460ff1615610cda57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60055433600160a060020a03908116911614610d4a57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60055433600160a060020a03908116911614610d9257600080fd5b600160a060020a0381166000908152600760205260409020805460ff191660011790555b5b50565b600354600160a060020a031681565b60408051908101604052600381527f4556580000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610e1a57600080fd5b610e2333610fa6565b15610e2d57600080fd5b610e3683610fa6565b15610e4057600080fd5b610e4a8383611194565b90505b5b92915050565b600554600160a060020a031615155b90565b60065433600160a060020a03908116911614610e8157600080fd5b600680546005805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b600654600160a060020a031681565b600454600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f0c908363ffffffff61103716565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600160a060020a03811660009081526007602052604081205460ff168015610fd15750610fd1610e54565b5b90505b919050565b60035433600160a060020a03908116911614610ff557600080fd5b600160a060020a038116151561100a57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282018381101561104657fe5b8091505b5092915050565b60008282111561105d57fe5b508082035b92915050565b600080600160a060020a038416151561108057600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546110c6908463ffffffff61105116565b600160a060020a0380871660009081526001602052604080822093909355908616815220546110fb908463ffffffff61103716565b600160a060020a038516600090815260016020526040902055611124818463ffffffff61105116565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156111ab57600080fd5b600160a060020a0333166000908152600160205260409020546111d4908363ffffffff61105116565b600160a060020a033381166000908152600160205260408082209390935590851681522054611209908363ffffffff61103716565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a72305820ecce5181406b9910148da7a081b32a68a3accce411a01bb738bbc19c3d8a10a00029

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

0000000000000000000000000000000000000000000000000000003a35294400

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 250000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000003a35294400


Swarm Source

bzzr://ecce5181406b9910148da7a081b32a68a3accce411a01bb738bbc19c3d8a10a0

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.