ETH Price: $2,989.44 (+2.55%)
Gas: 13 Gwei

Token

Datum (DAT)
 

Overview

Max Total Supply

2,653,841,597.973271663912484125 DAT

Holders

11,539 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$250,257.26

Circulating Supply Market Cap

$96,365.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
KuCoin 9
Balance
27,815.54443098 DAT

Value
$2.62 ( ~0.000876419089598689 Eth) [0.0010%]
0xf16e9b0d03470827a95cdfd0cb8a8a3b46969b91
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Datum is the decentralized marketplace for social and IoT data.

Profitability / Loss

Since Initial Offer Price
:$0.02 99.51%

Market

Volume (24H):$0.00
Market Capitalization:$96,365.00
Circulating Supply:1,021,935,124.00 DAT
Market Data Source: Coinmarketcap

ICO Information

ICO Start Date : Oct 29, 2017   
ICO End Date : Nov 29, 2017
Total Cap : $7,581,120
ICO Price  : $0.0192 | 0.00004 ETH | 0.00000197 BTC 
Country : Switzerland 

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x78cA9EFB...b1b0Bc88B
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
DATToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

/**
 * @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;


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


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


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

}





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

  bool public paused = true;


  /**
   * @dev modifier to allow actions only when the contract IS paused
   */
  modifier whenNotPaused() {
      require(!paused);
    _;
  }

  /**
   * @dev modifier to allow actions only when the contract IS NOT paused
   */
  modifier whenPaused {
      require(paused);
    _;
  }

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

    /**
   * @dev called by the owner to pause, returns to paused state
   */
  function pause() onlyOwner whenNotPaused public returns (bool) {
    paused = true;
    Pause();
    return false;
  }
}


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
  uint public totalSupply;
  function balanceOf(address who) constant public returns (uint);
  function transfer(address to, uint value) public;
  event Transfer(address indexed from, address indexed to, uint value);
}




/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant public returns (uint);
  function transferFrom(address from, address to, uint value) public;
  function approve(address spender, uint value) public;
  event Approval(address indexed owner, address indexed spender, uint value);
}


/**
 * Math operations with safety checks
 */
library SafeMath {
  function mul(uint a, uint b) internal pure returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint a, uint b) internal pure returns (uint) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

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

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

  function max64(uint64 a, uint64 b) internal pure returns (uint64) {
    return a >= b ? a : b;
  }

  function min64(uint64 a, uint64 b) internal pure returns (uint64) {
    return a < b ? a : b;
  }

  function max256(uint256 a, uint256 b) internal pure returns (uint256) {
    return a >= b ? a : b;
  }

  function min256(uint256 a, uint256 b) internal pure returns (uint256) {
    return a < b ? a : b;
  }
}




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

  mapping(address => uint) 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, uint _value) public {
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
  }

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

}




/**
 * @title Standard ERC20 token
 *
 * @dev Implemantation of the basic standart 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 BasicToken, ERC20 {

  mapping (address => mapping (address => uint)) 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 uint the amout of tokens to be transfered
   */
  function transferFrom(address _from, address _to, uint _value) public {
    var _allowance = allowed[_from][msg.sender];

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

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

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on beahlf 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, uint _value) public {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
  }

  /**
   * @dev Function to check the amount of tokens than 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 uint specifing the amount of tokens still avaible for the spender.
   */
  function allowance(address _owner, address _spender) constant public returns (uint remaining) {
    return allowed[_owner][_spender];
  }

}




/**
 * Pausable token
 *
 * Simple ERC20 Token example, with pausable token transfer and special method for token distribution
 **/

contract PausableToken is StandardToken, Pausable {

  function transfer(address _to, uint _value) whenNotPaused public {
    super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint _value) whenNotPaused public {
    super.transferFrom(_from, _to, _value);
  }

  function transferDistribution(address _to, uint _value) onlyOwner public {
    super.transfer(_to, _value);
  }
}






/**
 * @title DATToken
 * @dev DAT Token contract
 */
contract DATToken is PausableToken {
  using SafeMath for uint256;

  string public name = "DAT Token";
  string public symbol = "DAT";
  uint public decimals = 18;


  uint256 private constant INITIAL_SUPPLY = 2653841597973271663912484125 wei;


  /**
   * @dev Contructor that gives msg.sender all of existing tokens. 
   */
  function DATToken(address _wallet) public {
    totalSupply = INITIAL_SUPPLY;
    balances[_wallet] = INITIAL_SUPPLY;
  }

  function changeSymbolName(string symbolName) onlyOwner public
  {
      symbol = symbolName;
  }

   function changeName(string symbolName) onlyOwner public
  {
      name = symbolName;
  }
}

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":[],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferDistribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"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":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"symbolName","type":"string"}],"name":"changeName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"symbolName","type":"string"}],"name":"changeSymbolName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","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"}]

606060409081526003805460a060020a60ff021916740100000000000000000000000000000000000000001790558051908101604052600981527f44415420546f6b656e00000000000000000000000000000000000000000000006020820152600490805161007292916020019061012a565b5060408051908101604052600381527f4441540000000000000000000000000000000000000000000000000000000000602082015260059080516100ba92916020019061012a565b50601260065534156100cb57600080fd5b604051602080610c698339810160405280805160038054600160a060020a03338116600160a060020a0319909216919091179091556b089334d14c396c072a48fd1d600081815591909216815260016020526040902055506101c59050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061016b57805160ff1916838001178555610198565b82800160010185558215610198579182015b8281111561019857825182559160200191906001019061017d565b506101a49291506101a8565b5090565b6101c291905b808211156101a457600081556001016101ae565b90565b610a95806101d46000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101a3578063238a3fe1146101c857806323b872dd146101ea578063313ce567146102125780633f4ba83a146102255780635353a2d81461024c5780635c975abb1461029d57806370a08231146102b05780638456cb59146102cf5780638da5cb5b146102e257806395d89b4114610311578063a9059cbb14610324578063dd62ed3e14610346578063f2fde38b1461036b578063fd15e0911461038a575b600080fd5b341561010057600080fd5b6101086103db565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610479565b005b34156101ae57600080fd5b6101b66104dd565b60405190815260200160405180910390f35b34156101d357600080fd5b6101a1600160a060020a03600435166024356104e3565b34156101f557600080fd5b6101a1600160a060020a036004358116906024351660443561050c565b341561021d57600080fd5b6101b6610533565b341561023057600080fd5b610238610539565b604051901515815260200160405180910390f35b341561025757600080fd5b6101a160046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506105c095505050505050565b34156102a857600080fd5b6102386105ee565b34156102bb57600080fd5b6101b6600160a060020a03600435166105fe565b34156102da57600080fd5b610238610619565b34156102ed57600080fd5b6102f56106a4565b604051600160a060020a03909116815260200160405180910390f35b341561031c57600080fd5b6101086106b3565b341561032f57600080fd5b6101a1600160a060020a036004351660243561071e565b341561035157600080fd5b6101b6600160a060020a0360043581169060243516610735565b341561037657600080fd5b6101a1600160a060020a0360043516610760565b341561039557600080fd5b6101a160046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506107b695505050505050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35050565b60005481565b60035433600160a060020a039081169116146104fe57600080fd5b61050882826107e4565b5050565b60035460a060020a900460ff161561052357600080fd5b61052e83838361089e565b505050565b60065481565b60035460009033600160a060020a0390811691161461055757600080fd5b60035460a060020a900460ff16151561056f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b90565b60035433600160a060020a039081169116146105db57600080fd5b60048180516105089291602001906109d1565b60035460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461063757600080fd5b60035460a060020a900460ff161561064e57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a150600090565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104715780601f1061044657610100808354040283529160200191610471565b60035460a060020a900460ff16156104fe57600080fd5b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461077b57600080fd5b600160a060020a038116156107b3576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60035433600160a060020a039081169116146107d157600080fd5b60058180516105089291602001906109d1565b600160a060020a03331660009081526001602052604090205461080d908263ffffffff6109a916565b600160a060020a033381166000908152600160205260408082209390935590841681522054610842908263ffffffff6109bb16565b600160a060020a0380841660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050565b600160a060020a0380841660009081526002602090815260408083203385168452825280832054938616835260019091529020546108e2908363ffffffff6109bb16565b600160a060020a038085166000908152600160205260408082209390935590861681522054610917908363ffffffff6109a916565b600160a060020a038516600090815260016020526040902055610940818363ffffffff6109a916565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350505050565b6000828211156109b557fe5b50900390565b6000828201838110156109ca57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610a1257805160ff1916838001178555610a3f565b82800160010185558215610a3f579182015b82811115610a3f578251825591602001919060010190610a24565b50610a4b929150610a4f565b5090565b6105bd91905b80821115610a4b5760008155600101610a555600a165627a7a723058201456a86f3185e27174c8bf94f18de786effa249ce027d69f7042667f809e737d00290000000000000000000000006e939629f97cdadf6d6d2f3f1d675383e0046039

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101a3578063238a3fe1146101c857806323b872dd146101ea578063313ce567146102125780633f4ba83a146102255780635353a2d81461024c5780635c975abb1461029d57806370a08231146102b05780638456cb59146102cf5780638da5cb5b146102e257806395d89b4114610311578063a9059cbb14610324578063dd62ed3e14610346578063f2fde38b1461036b578063fd15e0911461038a575b600080fd5b341561010057600080fd5b6101086103db565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610479565b005b34156101ae57600080fd5b6101b66104dd565b60405190815260200160405180910390f35b34156101d357600080fd5b6101a1600160a060020a03600435166024356104e3565b34156101f557600080fd5b6101a1600160a060020a036004358116906024351660443561050c565b341561021d57600080fd5b6101b6610533565b341561023057600080fd5b610238610539565b604051901515815260200160405180910390f35b341561025757600080fd5b6101a160046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506105c095505050505050565b34156102a857600080fd5b6102386105ee565b34156102bb57600080fd5b6101b6600160a060020a03600435166105fe565b34156102da57600080fd5b610238610619565b34156102ed57600080fd5b6102f56106a4565b604051600160a060020a03909116815260200160405180910390f35b341561031c57600080fd5b6101086106b3565b341561032f57600080fd5b6101a1600160a060020a036004351660243561071e565b341561035157600080fd5b6101b6600160a060020a0360043581169060243516610735565b341561037657600080fd5b6101a1600160a060020a0360043516610760565b341561039557600080fd5b6101a160046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506107b695505050505050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35050565b60005481565b60035433600160a060020a039081169116146104fe57600080fd5b61050882826107e4565b5050565b60035460a060020a900460ff161561052357600080fd5b61052e83838361089e565b505050565b60065481565b60035460009033600160a060020a0390811691161461055757600080fd5b60035460a060020a900460ff16151561056f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b90565b60035433600160a060020a039081169116146105db57600080fd5b60048180516105089291602001906109d1565b60035460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461063757600080fd5b60035460a060020a900460ff161561064e57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a150600090565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104715780601f1061044657610100808354040283529160200191610471565b60035460a060020a900460ff16156104fe57600080fd5b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461077b57600080fd5b600160a060020a038116156107b3576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60035433600160a060020a039081169116146107d157600080fd5b60058180516105089291602001906109d1565b600160a060020a03331660009081526001602052604090205461080d908263ffffffff6109a916565b600160a060020a033381166000908152600160205260408082209390935590841681522054610842908263ffffffff6109bb16565b600160a060020a0380841660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050565b600160a060020a0380841660009081526002602090815260408083203385168452825280832054938616835260019091529020546108e2908363ffffffff6109bb16565b600160a060020a038085166000908152600160205260408082209390935590861681522054610917908363ffffffff6109a916565b600160a060020a038516600090815260016020526040902055610940818363ffffffff6109a916565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350505050565b6000828211156109b557fe5b50900390565b6000828201838110156109ca57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610a1257805160ff1916838001178555610a3f565b82800160010185558215610a3f579182015b82811115610a3f578251825591602001919060010190610a24565b50610a4b929150610a4f565b5090565b6105bd91905b80821115610a4b5760008155600101610a555600a165627a7a723058201456a86f3185e27174c8bf94f18de786effa249ce027d69f7042667f809e737d0029

Swarm Source

bzzr://1456a86f3185e27174c8bf94f18de786effa249ce027d69f7042667f809e737d
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.