ETH Price: $2,528.81 (-0.23%)

Token

TORChain (TOR)
 

Overview

Max Total Supply

2,099,999,999 TOR

Holders

848

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 TOR

Value
$0.00
0x2873ce1ba6312866683a29ce477aaf1e3c83ebc4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TORToken

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-05-10
*/

pragma solidity ^0.4.13;

library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

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

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

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

contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

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

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

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

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

}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


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

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

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

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

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

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

}

contract TORToken is StandardToken {
  string public name    = "TORChain";
  string public symbol  = "TOR";
  uint8 public decimals = 18;

  // two billion in initial supply
  uint256 public constant INITIAL_SUPPLY = 2099999999;

  function TORToken() public {
    totalSupply_ = INITIAL_SUPPLY * (10 ** uint256(decimals));
    balances[msg.sender] = totalSupply_;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

606060405260408051908101604052600881527f544f52436861696e0000000000000000000000000000000000000000000000006020820152600390805161004b9291602001906100de565b5060408051908101604052600381527f544f520000000000000000000000000000000000000000000000000000000000602082015260049080516100939291602001906100de565b506005805460ff1916601217905534156100ac57600080fd5b60055460ff16600a0a637d2b74ff02600181905533600160a060020a0316600090815260208190526040902055610179565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011f57805160ff191683800117855561014c565b8280016001018555821561014c579182015b8281111561014c578251825591602001919060010190610131565b5061015892915061015c565b5090565b61017691905b808211156101585760008155600101610162565b90565b61091a806101886000396000f3006060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461017e57806323b872dd146101a35780632ff2e9dc146101cb578063313ce567146101de578063661884631461020757806370a082311461022957806395d89b4114610248578063a9059cbb1461025b578063d73dd6231461027d578063dd62ed3e1461029f575b600080fd5b34156100c957600080fd5b6100d16102c4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a0360043516602435610362565b604051901515815260200160405180910390f35b341561018957600080fd5b6101916103ce565b60405190815260200160405180910390f35b34156101ae57600080fd5b61016a600160a060020a03600435811690602435166044356103d4565b34156101d657600080fd5b610191610554565b34156101e957600080fd5b6101f161055c565b60405160ff909116815260200160405180910390f35b341561021257600080fd5b61016a600160a060020a0360043516602435610565565b341561023457600080fd5b610191600160a060020a036004351661065f565b341561025357600080fd5b6100d161067a565b341561026657600080fd5b61016a600160a060020a03600435166024356106e5565b341561028857600080fd5b61016a600160a060020a03600435166024356107f7565b34156102aa57600080fd5b610191600160a060020a036004358116906024351661089b565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561035a5780601f1061032f5761010080835404028352916020019161035a565b820191906000526020600020905b81548152906001019060200180831161033d57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156103eb57600080fd5b600160a060020a03841660009081526020819052604090205482111561041057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561044357600080fd5b600160a060020a03841660009081526020819052604090205461046c908363ffffffff6108c616565b600160a060020a0380861660009081526020819052604080822093909355908516815220546104a1908363ffffffff6108d816565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546104e7908363ffffffff6108c616565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b637d2b74ff81565b60055460ff1681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156105c257600160a060020a0333811660009081526002602090815260408083209388168352929052908120556105f9565b6105d2818463ffffffff6108c616565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561035a5780601f1061032f5761010080835404028352916020019161035a565b6000600160a060020a03831615156106fc57600080fd5b600160a060020a03331660009081526020819052604090205482111561072157600080fd5b600160a060020a03331660009081526020819052604090205461074a908363ffffffff6108c616565b600160a060020a03338116600090815260208190526040808220939093559085168152205461077f908363ffffffff6108d816565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461082f908363ffffffff6108d816565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156108d257fe5b50900390565b6000828201838110156108e757fe5b93925050505600a165627a7a723058200ecfd9dfa530d4c89fdb478d5025c0fedf9e4b71ea8eaca38543c26bf361db790029

Deployed Bytecode

0x6060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461017e57806323b872dd146101a35780632ff2e9dc146101cb578063313ce567146101de578063661884631461020757806370a082311461022957806395d89b4114610248578063a9059cbb1461025b578063d73dd6231461027d578063dd62ed3e1461029f575b600080fd5b34156100c957600080fd5b6100d16102c4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a0360043516602435610362565b604051901515815260200160405180910390f35b341561018957600080fd5b6101916103ce565b60405190815260200160405180910390f35b34156101ae57600080fd5b61016a600160a060020a03600435811690602435166044356103d4565b34156101d657600080fd5b610191610554565b34156101e957600080fd5b6101f161055c565b60405160ff909116815260200160405180910390f35b341561021257600080fd5b61016a600160a060020a0360043516602435610565565b341561023457600080fd5b610191600160a060020a036004351661065f565b341561025357600080fd5b6100d161067a565b341561026657600080fd5b61016a600160a060020a03600435166024356106e5565b341561028857600080fd5b61016a600160a060020a03600435166024356107f7565b34156102aa57600080fd5b610191600160a060020a036004358116906024351661089b565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561035a5780601f1061032f5761010080835404028352916020019161035a565b820191906000526020600020905b81548152906001019060200180831161033d57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156103eb57600080fd5b600160a060020a03841660009081526020819052604090205482111561041057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561044357600080fd5b600160a060020a03841660009081526020819052604090205461046c908363ffffffff6108c616565b600160a060020a0380861660009081526020819052604080822093909355908516815220546104a1908363ffffffff6108d816565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546104e7908363ffffffff6108c616565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b637d2b74ff81565b60055460ff1681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156105c257600160a060020a0333811660009081526002602090815260408083209388168352929052908120556105f9565b6105d2818463ffffffff6108c616565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561035a5780601f1061032f5761010080835404028352916020019161035a565b6000600160a060020a03831615156106fc57600080fd5b600160a060020a03331660009081526020819052604090205482111561072157600080fd5b600160a060020a03331660009081526020819052604090205461074a908363ffffffff6108c616565b600160a060020a03338116600090815260208190526040808220939093559085168152205461077f908363ffffffff6108d816565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461082f908363ffffffff6108d816565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156108d257fe5b50900390565b6000828201838110156108e757fe5b93925050505600a165627a7a723058200ecfd9dfa530d4c89fdb478d5025c0fedf9e4b71ea8eaca38543c26bf361db790029

Deployed Bytecode Sourcemap

6671:382:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6711:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4409:187:0;;;;;;;;;;-1:-1:-1;;;;;4409:187:0;;;;;;;;;;;;;;;;;;;;;;;;1593:85;;;;;;;;;;;;;;;;;;;;;;;;;;;3325:449;;;;;;;;;;-1:-1:-1;;;;;3325:449:0;;;;;;;;;;;;6853:51;;;;;;;;;;;;6784:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6255:407;;;;;;;;;;-1:-1:-1;;;;;6255:407:0;;;;;;;2436:109;;;;;;;;;;-1:-1:-1;;;;;2436:109:0;;;;;6750:29;;;;;;;;;;;;1839:388;;;;;;;;;;-1:-1:-1;;;;;1839:388:0;;;;;;;5520:261;;;;;;;;;;-1:-1:-1;;;;;5520:261:0;;;;;;;4923:128;;;;;;;;;;-1:-1:-1;;;;;4923:128:0;;;;;;;;;;6711:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4409:187::-;-1:-1:-1;;;;;4497:10:0;4489:19;;4476:4;4489:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;4476:4;;4489:29;:19;4534:38;;4521:6;;4534:38;;;;;;;;;;;;;-1:-1:-1;4586:4:0;4409:187;;;;:::o;1593:85::-;1660:12;;1593:85;:::o;3325:449::-;3407:4;-1:-1:-1;;;;;3428:17:0;;;;3420:26;;;;;;-1:-1:-1;;;;;3471:15:0;;:8;:15;;;;;;;;;;;3461:25;;;3453:34;;;;;;-1:-1:-1;;;;;3512:14:0;;;;;;;:7;:14;;;;;;;;3527:10;3512:26;;;;;;;;;;3502:36;;;3494:45;;;;;;-1:-1:-1;;;;;3566:15:0;;:8;:15;;;;;;;;;;;:27;;3586:6;3566:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;3548:15:0;;;:8;:15;;;;;;;;;;;:45;;;;3616:13;;;;;;;:25;;3634:6;3616:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3600:13:0;;;:8;:13;;;;;;;;;;;:41;;;;3677:14;;;;;:7;:14;;;;;3692:10;3677:26;;;;;;;;;;;:38;;3708:6;3677:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;3648:14:0;;;;;;;:7;:14;;;;;;;;3663:10;3648:26;;;;;;;;;;;:67;;;;3722:28;;;;;;3743:6;;3722:28;;;;;;;;;;;;;-1:-1:-1;3764:4:0;3325:449;;;;;:::o;6853:51::-;6894:10;6853:51;:::o;6784:26::-;;;;;;:::o;6255:407::-;-1:-1:-1;;;;;6375:10:0;6367:19;;6338:4;6367:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;6407:27;;;6403:168;;;-1:-1:-1;;;;;6453:10:0;6445:19;;6477:1;6445:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;6403:168;;;6533:30;:8;6546:16;6533:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;6509:10:0;6501:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;6403:168;-1:-1:-1;;;;;6586:10:0;6577:61;;6608:19;;;;:7;:19;;;;;;;;6577:61;;;6608:29;;;;;;;;;;;;6577:61;;;;;;;;;;;;;;;-1:-1:-1;6652:4:0;;6255:407;-1:-1:-1;;;6255:407:0:o;2436:109::-;-1:-1:-1;;;;;2523:16:0;2492:15;2523:16;;;;;;;;;;;;2436:109::o;6750:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1839:388;1902:4;-1:-1:-1;;;;;1923:17:0;;;;1915:26;;;;;;-1:-1:-1;;;;;1975:10:0;1966:20;:8;:20;;;;;;;;;;;1956:30;;;1948:39;;;;;;-1:-1:-1;;;;;2092:10:0;2083:20;:8;:20;;;;;;;;;;;:32;;2108:6;2083:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;2069:10:0;2060:20;;:8;:20;;;;;;;;;;;:55;;;;2138:13;;;;;;;:25;;2156:6;2138:25;:17;:25;:::i;:::-;2122:8;:13;2131:3;-1:-1:-1;;;;;2122:13:0;-1:-1:-1;;;;;2122:13:0;;;;;;;;;;;;:41;;;;2191:3;-1:-1:-1;;;;;2170:33:0;2179:10;-1:-1:-1;;;;;2170:33:0;;2196:6;2170:33;;;;;;;;;;;;;;-1:-1:-1;2217:4:0;1839:388;;;;:::o;5520:261::-;-1:-1:-1;;;;;5651:10:0;5643:19;;5598:4;5643:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;5677:11;5643:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;5619:10:0;5611:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:78;;;:29;;:19;;5696:61;;5611:78;5696:61;;;;;;;;;;;;;-1:-1:-1;5771:4:0;5520:261;;;;:::o;4923:128::-;-1:-1:-1;;;;;5020:15:0;;;4997:7;5020:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;4923:128::o;774:113::-;832:7;855:6;;;;848:14;;;;-1:-1:-1;876:5:0;;;774:113::o;954:133::-;1012:7;1040:5;;;1059:6;;;;1052:14;;;;1080:1;954:133;-1:-1:-1;;;954:133:0:o

Swarm Source

bzzr://0ecfd9dfa530d4c89fdb478d5025c0fedf9e4b71ea8eaca38543c26bf361db79
Loading...
Loading
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.