ETH Price: $2,764.85 (-6.26%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
71505022019-01-30 20:40:562195 days ago1548880856  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AraToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-01-30
*/

pragma solidity ^0.4.24;

// File: contracts/ignored_contracts/ERC20.sol

/**
 * NOTE: This contract will be removed once openzeppelin-solidity releases this code as an official release.
 */

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 {
  function totalSupply() public view returns (uint256);

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

  function allowance(address _owner, address _spender)
    public view returns (uint256);

  function transfer(address _to, uint256 _value) public returns (bool);

  function approve(address _spender, uint256 _value)
    public returns (bool);

  function transferFrom(address _from, address _to, uint256 _value)
    public returns (bool);

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

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

/**
 * @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) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    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;
  }
}

// File: contracts/ignored_contracts/StandardToken.sol

/**
 * NOTE: This contract will be removed once openzeppelin-solidity releases this code as an official release.
 * -Charles 
 */



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private balances_;

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

  uint256 private totalSupply_;

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

  /**
  * @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) {
    return balances_[_owner];
  }

  /**
   * @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 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(_value <= balances_[msg.sender]);
    require(_to != address(0));

    balances_[msg.sender] = balances_[msg.sender].sub(_value);
    balances_[_to] = balances_[_to].add(_value);
    emit Transfer(msg.sender, _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 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(_value <= balances_[_from]);
    require(_value <= allowed_[_from][msg.sender]);
    require(_to != address(0));

    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 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,
    uint256 _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,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 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;
  }

  /**
   * @dev Internal function that mints an amount of the token and assigns it to
   * an account. This encapsulates the modification of balances such that the
   * proper events are emitted.
   * @param _account The account that will receive the created tokens.
   * @param _amount The amount that will be created.
   */
  function _mint(address _account, uint256 _amount) internal {
    require(_account != 0);
    totalSupply_ = totalSupply_.add(_amount);
    balances_[_account] = balances_[_account].add(_amount);
    emit Transfer(address(0), _account, _amount);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account.
   * @param _account The account whose tokens will be burnt.
   * @param _amount The amount that will be burnt.
   */
  function _burn(address _account, uint256 _amount) internal {
    require(_account != 0);
    require(_amount <= balances_[_account]);

    totalSupply_ = totalSupply_.sub(_amount);
    balances_[_account] = balances_[_account].sub(_amount);
    emit Transfer(_account, address(0), _amount);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal _burn function.
   * @param _account The account whose tokens will be burnt.
   * @param _amount The amount that will be burnt.
   */
  function _burnFrom(address _account, uint256 _amount) internal {
    require(_amount <= allowed_[_account][msg.sender]);

    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    allowed_[_account][msg.sender] = allowed_[_account][msg.sender].sub(
      _amount);
    _burn(_account, _amount);
  }
}

// File: contracts/ignored_contracts/AraToken.sol

contract AraToken is StandardToken {

  // metadata
  bool    private initialized;
  string  public constant name = "Ara Token";
  string  public constant symbol = "ARA";
  uint256 public constant decimals = 18;
  string  public version = "1.0";


  mapping (address => uint256) private deposits_;

  event Deposit(address indexed from, uint256 value, uint256 total);
  event Withdraw(address indexed to, uint256 value, uint256 total);

  function init(bytes _data) public {
    require(!initialized, 'Ara Token has already been initialized.');
    initialized = true;
    
    uint256 btsptr;
    address ownerAddr;
    assembly {
      btsptr := add(_data, 32)
      ownerAddr := mload(btsptr)
    }
    _mint(ownerAddr, formatDecimals(1000000000)); // 1,000,000,000
  }

  function formatDecimals(uint256 _value) internal pure returns (uint256) {
    return _value * 10 ** decimals;
  }

  function amountDeposited(address _owner) public view returns (uint256) {
    return deposits_[_owner];
  }

  function deposit(uint256 _value) external returns (bool) {
    require(_value <= balanceOf(msg.sender));

    deposits_[msg.sender] = deposits_[msg.sender].add(_value);
    emit Deposit(msg.sender, _value, deposits_[msg.sender]);
    return true;
  }

  function withdraw(uint256 _value) external returns (bool) {
    require(_value <= deposits_[msg.sender]);

    deposits_[msg.sender] = deposits_[msg.sender].sub(_value);
    emit Withdraw(msg.sender, _value, deposits_[msg.sender]);
    return true;
  }

  function transfer(address _to, uint256 _value) public returns (bool) {
    require(balanceOf(msg.sender) - _value >= deposits_[msg.sender]);
    return super.transfer(_to, _value);
  }

  function approve(address _spender, uint256 _value) public returns (bool) {
    require(balanceOf(msg.sender) - _value >= deposits_[msg.sender]);
    return super.approve(_spender, _value);
  }

  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(balanceOf(_from) - _value >= deposits_[_from]);
    return super.transferFrom(_from, _to, _value);
  }

  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    require(balanceOf(msg.sender) - (_addedValue + allowance(msg.sender, _spender)) >= deposits_[msg.sender]);
    return super.increaseApproval(_spender, _addedValue);
  }
}

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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_data","type":"bytes"}],"name":"init","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","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":"_value","type":"uint256"}],"name":"deposit","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"amountDeposited","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"total","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"total","type":"uint256"}],"name":"Withdraw","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"},{"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"}]

60c0604052600360808190527f312e30000000000000000000000000000000000000000000000000000000000060a090815261003e9160049190610051565b5034801561004b57600080fd5b506100ec565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061009257805160ff19168380011785556100bf565b828001600101855582156100bf579182015b828111156100bf5782518255916020019190600101906100a4565b506100cb9291506100cf565b5090565b6100e991905b808211156100cb57600081556001016100d5565b90565b610d2c806100fb6000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d35780632e1a7d4d146101fd578063313ce567146102155780634ddf47d41461022a57806354fd4d5014610285578063661884631461029a57806370a08231146102be57806395d89b41146102df578063a9059cbb146102f4578063b6b55f2514610318578063d73dd62314610330578063dd62ed3e14610354578063f4f0e1ae1461037b575b600080fd5b3480156100f657600080fd5b506100ff61039c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a03600435166024356103d3565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c161040d565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a0360043581169060243516604435610413565b34801561020957600080fd5b50610198600435610455565b34801561022157600080fd5b506101c16104ea565b34801561023657600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102839436949293602493928401919081908401838280828437509497506104ef9650505050505050565b005b34801561029157600080fd5b506100ff6105bc565b3480156102a657600080fd5b50610198600160a060020a036004351660243561064a565b3480156102ca57600080fd5b506101c1600160a060020a0360043516610739565b3480156102eb57600080fd5b506100ff610754565b34801561030057600080fd5b50610198600160a060020a036004351660243561078b565b34801561032457600080fd5b506101986004356107be565b34801561033c57600080fd5b50610198600160a060020a036004351660243561084e565b34801561036057600080fd5b506101c1600160a060020a036004358116906024351661088b565b34801561038757600080fd5b506101c1600160a060020a03600435166108b6565b60408051808201909152600981527f41726120546f6b656e0000000000000000000000000000000000000000000000602082015281565b33600081815260056020526040812054909183906103f090610739565b0310156103fc57600080fd5b61040683836108d1565b9392505050565b60025490565b600160a060020a0383166000908152600560205260408120548261043686610739565b03101561044257600080fd5b61044d848484610937565b949350505050565b3360009081526005602052604081205482111561047157600080fd5b33600090815260056020526040902054610491908363ffffffff610aac16565b33600081815260056020908152604091829020849055815186815290810193909352805191927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568929081900390910190a2506001919050565b601281565b600354600090819060ff161561058c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f41726120546f6b656e2068617320616c7265616479206265656e20696e69746960448201527f616c697a65642e00000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50506003805460ff191660011790556020810180516105b7816105b2633b9aca00610abe565b610acb565b505050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b505050505081565b336000908152600160209081526040808320600160a060020a038616845290915281205480831061069e57336000908152600160209081526040808320600160a060020a03881684529091528120556106d3565b6106ae818463ffffffff610aac16565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4152410000000000000000000000000000000000000000000000000000000000602082015281565b33600081815260056020526040812054909183906107a890610739565b0310156107b457600080fd5b6104068383610b75565b60006107c933610739565b8211156107d557600080fd5b336000908152600560205260409020546107f5908363ffffffff610c5416565b33600081815260056020908152604091829020849055815186815290810193909352805191927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15929081900390910190a2506001919050565b33600081815260056020526040812054909161086a908561088b565b830161087533610739565b03101561088157600080fd5b6104068383610c67565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a031660009081526005602052604090205490565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526020819052604081205482111561095c57600080fd5b600160a060020a038416600090815260016020908152604080832033845290915290205482111561098c57600080fd5b600160a060020a03831615156109a157600080fd5b600160a060020a0384166000908152602081905260409020546109ca908363ffffffff610aac16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546109ff908363ffffffff610c5416565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054610a41908363ffffffff610aac16565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610ab857fe5b50900390565b670de0b6b3a76400000290565b600160a060020a0382161515610ae057600080fd5b600254610af3908263ffffffff610c5416565b600255600160a060020a038216600090815260208190526040902054610b1f908263ffffffff610c5416565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b33600090815260208190526040812054821115610b9157600080fd5b600160a060020a0383161515610ba657600080fd5b33600090815260208190526040902054610bc6908363ffffffff610aac16565b3360009081526020819052604080822092909255600160a060020a03851681522054610bf8908363ffffffff610c5416565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b81810182811015610c6157fe5b92915050565b336000908152600160209081526040808320600160a060020a0386168452909152812054610c9b908363ffffffff610c5416565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600a165627a7a7230582050e1c9bc4ac6325feac717c3b10c89afbe1a5a3d56c5da2a75da342d9a57f9fa00290000000000000000000000007aae449a009125134941c1ebc3fe1d56be89ed75

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d35780632e1a7d4d146101fd578063313ce567146102155780634ddf47d41461022a57806354fd4d5014610285578063661884631461029a57806370a08231146102be57806395d89b41146102df578063a9059cbb146102f4578063b6b55f2514610318578063d73dd62314610330578063dd62ed3e14610354578063f4f0e1ae1461037b575b600080fd5b3480156100f657600080fd5b506100ff61039c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a03600435166024356103d3565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c161040d565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a0360043581169060243516604435610413565b34801561020957600080fd5b50610198600435610455565b34801561022157600080fd5b506101c16104ea565b34801561023657600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102839436949293602493928401919081908401838280828437509497506104ef9650505050505050565b005b34801561029157600080fd5b506100ff6105bc565b3480156102a657600080fd5b50610198600160a060020a036004351660243561064a565b3480156102ca57600080fd5b506101c1600160a060020a0360043516610739565b3480156102eb57600080fd5b506100ff610754565b34801561030057600080fd5b50610198600160a060020a036004351660243561078b565b34801561032457600080fd5b506101986004356107be565b34801561033c57600080fd5b50610198600160a060020a036004351660243561084e565b34801561036057600080fd5b506101c1600160a060020a036004358116906024351661088b565b34801561038757600080fd5b506101c1600160a060020a03600435166108b6565b60408051808201909152600981527f41726120546f6b656e0000000000000000000000000000000000000000000000602082015281565b33600081815260056020526040812054909183906103f090610739565b0310156103fc57600080fd5b61040683836108d1565b9392505050565b60025490565b600160a060020a0383166000908152600560205260408120548261043686610739565b03101561044257600080fd5b61044d848484610937565b949350505050565b3360009081526005602052604081205482111561047157600080fd5b33600090815260056020526040902054610491908363ffffffff610aac16565b33600081815260056020908152604091829020849055815186815290810193909352805191927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568929081900390910190a2506001919050565b601281565b600354600090819060ff161561058c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f41726120546f6b656e2068617320616c7265616479206265656e20696e69746960448201527f616c697a65642e00000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50506003805460ff191660011790556020810180516105b7816105b2633b9aca00610abe565b610acb565b505050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b505050505081565b336000908152600160209081526040808320600160a060020a038616845290915281205480831061069e57336000908152600160209081526040808320600160a060020a03881684529091528120556106d3565b6106ae818463ffffffff610aac16565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4152410000000000000000000000000000000000000000000000000000000000602082015281565b33600081815260056020526040812054909183906107a890610739565b0310156107b457600080fd5b6104068383610b75565b60006107c933610739565b8211156107d557600080fd5b336000908152600560205260409020546107f5908363ffffffff610c5416565b33600081815260056020908152604091829020849055815186815290810193909352805191927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15929081900390910190a2506001919050565b33600081815260056020526040812054909161086a908561088b565b830161087533610739565b03101561088157600080fd5b6104068383610c67565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a031660009081526005602052604090205490565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526020819052604081205482111561095c57600080fd5b600160a060020a038416600090815260016020908152604080832033845290915290205482111561098c57600080fd5b600160a060020a03831615156109a157600080fd5b600160a060020a0384166000908152602081905260409020546109ca908363ffffffff610aac16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546109ff908363ffffffff610c5416565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054610a41908363ffffffff610aac16565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610ab857fe5b50900390565b670de0b6b3a76400000290565b600160a060020a0382161515610ae057600080fd5b600254610af3908263ffffffff610c5416565b600255600160a060020a038216600090815260208190526040902054610b1f908263ffffffff610c5416565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b33600090815260208190526040812054821115610b9157600080fd5b600160a060020a0383161515610ba657600080fd5b33600090815260208190526040902054610bc6908363ffffffff610aac16565b3360009081526020819052604080822092909255600160a060020a03851681522054610bf8908363ffffffff610c5416565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b81810182811015610c6157fe5b92915050565b336000908152600160209081526040808320600160a060020a0386168452909152812054610c9b908363ffffffff610c5416565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600a165627a7a7230582050e1c9bc4ac6325feac717c3b10c89afbe1a5a3d56c5da2a75da342d9a57f9fa0029

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

0000000000000000000000007aae449a009125134941c1ebc3fe1d56be89ed75
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007aae449a009125134941c1ebc3fe1d56be89ed75


Swarm Source

bzzr://50e1c9bc4ac6325feac717c3b10c89afbe1a5a3d56c5da2a75da342d9a57f9fa

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.