ETH Price: $2,664.25 (+0.39%)
Gas: 18 Gwei

Token

Hive Chain Coin (HIVE)
 

Overview

Max Total Supply

3,000,000,000 HIVE

Holders

1,029

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
182 HIVE

Value
$0.00
0x332bf5cb5a8775b6890f80286e7442bab1e3d1b1
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:
HiveChainToken

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.20;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require (msg.sender == owner) ;
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public{
        owner = newOwner;
    }
}




/// @title Hive Chain Coin (HIVE)
contract HiveChainToken is owned {
    // Public variables of the token
    string public constant standard = "ERC20";
    string public constant name = "Hive Chain Coin";  
    string public constant symbol = "HIVE";
    uint8  public constant decimals =18;
    uint256 public constant totalSupply=3000000000*10 ** uint256(decimals);
    uint public allcatedTime = 0;
 
    address  public constant teamAddress = 0x95EEe45FFef756D8bfce8D8Ad1617c331A6d0CbB;
                                            
    
    address  public constant counselorAddress = 0x067AA439831C0E6070Aaf0Ba2c6c6EC4bb4c9D09;
    
    address  public constant footstoneAddress = 0xe1461098D05c8d30aACb8Db6E3c10F9aCE80319A;

    // This creates an array with all balanceOf 
    mapping (address => uint256) public balanceOf;
 
   
    // These are related to HC team members
    mapping (address => bool) public frozenAccount;
 
		// This creates an array with all lockedTokens 
    mapping (address => frozenTeam[]) public lockedTokens;
    
    
   
		// Triggered when tokens are transferred.
    event Transfer(address indexed _from, address indexed _to, uint256 _value);

    struct frozenTeam{       
        uint256 time;
        uint256 token;    
    }

    // Constructor 
    function HiveChainToken()  public
    {
       
        balanceOf[0x065cCc2Ed012925f428643df16AA9395a1e5c664] = totalSupply*116/300; 
        
        balanceOf[msg.sender]=totalSupply/3;
        
        //team
        
        balanceOf[teamAddress] = totalSupply*15/100; // 15% 
            
        allcatedTime=now;
        
        frozenAccount[teamAddress]=true;
         for (uint i = 0; i < 19; i++) {
             uint256 temp0=balanceOf[teamAddress]*(i+1)*5/100;
             lockedTokens[teamAddress].push(frozenTeam({
                 time:allcatedTime + 3*(i+1) * 30 days ,
                 token:balanceOf[teamAddress]-temp0
             }));
            
         }
        
        
       balanceOf[counselorAddress] = totalSupply*3/100; // 3% 
       
       frozenAccount[counselorAddress]=true;
            for (uint j = 0; j < 5; j++){
                 uint256 temp;
                 if(j==0){
                     temp=balanceOf[counselorAddress]*80/100;
                 }else if(j==1){
                     temp=balanceOf[counselorAddress]*65/100;
                 }else if(j==2){
                     temp=balanceOf[counselorAddress]*50/100;
                 }else if(j==3){
                     temp=balanceOf[counselorAddress]*30/100;
                 }else if(j==4){
                      temp=balanceOf[counselorAddress]*15/100;
                 }
                 lockedTokens[counselorAddress].push(frozenTeam({
                 time:allcatedTime + (j+1) * 30 days ,
                 token:temp
             }));
            }
        
       
        
        balanceOf[footstoneAddress] = totalSupply*10/100; // 10% 
      
       
       frozenAccount[footstoneAddress]=true;
            for (uint k = 0; k < 5; k++){
                 uint256 temp1;
                   if(k==0){
                     temp1=balanceOf[footstoneAddress]*80/100;
                 }else if(k==1){
                     temp1=balanceOf[footstoneAddress]*65/100;
                 }else if(k==2){
                     temp1=balanceOf[footstoneAddress]*50/100;
                 }else if(k==3){
                     temp1=balanceOf[footstoneAddress]*30/100;
                 }else if(k==4){
                      temp1=balanceOf[footstoneAddress]*15/100;
                 }
                 lockedTokens[footstoneAddress].push(frozenTeam({
                 time:allcatedTime + (k+1) * 30 days ,
                 token:temp1
             }));
            }
        
                            
    }
  


    // Transfer the balance from owner"s account to another account
    function transfer(address _to, uint256 _amount) public
        returns (bool success) 
    {
  
        if (_amount <= 0) return false;
      
        if (frozenRules(msg.sender, _amount)) return false;

        if (balanceOf[msg.sender] >= _amount
            && balanceOf[_to] + _amount > balanceOf[_to]) {

            balanceOf[msg.sender] -= _amount;
            balanceOf[_to] += _amount;
            Transfer(msg.sender, _to, _amount);
            return true;
        } else {
            return false;
        }     
    }
 


    /// @dev Token frozen rules for token holders.
    /// @param _from The token sender.
    /// @param _value The token amount.
    function frozenRules(address _from, uint256 _value) 
        internal 
        returns (bool success) 
    {
        if (frozenAccount[_from]) {
            
            frozenTeam[] storage lockedInfo=lockedTokens[_from];
            for(uint256 i=0;i<lockedInfo.length;i++){
                if (now <lockedInfo[i].time) {
                   // 100% locked within the first 6 months.
                        if (balanceOf[_from] - _value < lockedInfo[i].token)
                            return true;  
                 }else if (now >=lockedInfo[i].time && now < lockedInfo[i+1].time) {
                     // 20% unlocked after 6 months.
                        if (balanceOf[_from] - _value <lockedInfo[i+1].token) 
                            return true;  
                 }else if(now>=lockedInfo[lockedInfo.length-1].time){
                      frozenAccount[_from] = false; 
                      return false;
                 }
            }
            
        }
        return false;
    }   
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"allcatedTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"lockedTokens","outputs":[{"name":"time","type":"uint256"},{"name":"token","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"footstoneAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"counselorAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

6060604052600060015534156200001557600080fd5b60008054600160a060020a03191633600160a060020a03169081178255600260209081526b03bf878e011094c1880000007fd01551b5b908581a999d9004d7af3aa5587a7be6b2c980dabf45859f4db0a31255908252604082206b033b2e3c9fd0803ce800000090557395eee45ffef756d8bfce8d8ad1617c331a6d0cbb82526b01743b34e18439b50200000060008051602062000ec58339815191525542600190815560039091527f578248e700f304f67cbf674a6998f72488e56c7082b0f6e9e8abe3c6bf91afd9805460ff1916909117905580808080805b6013861015620001eb577395eee45ffef756d8bfce8d8ad1617c331a6d0cbb60005260008051602062000ec58339815191525460046020527fac9dbacc4a616fe1c43a8a7833668a84d0a185bc4ed89a3f943109137cbb4c1980546064600560018b810190950202049750909181016200016b838262000683565b916000526020600020906002020160006040805190810160405260018054908b016276a700020181527395eee45ffef756d8bfce8d8ad1617c331a6d0cbb6000526002602090815260008051602062000ec5833981519152548a900390820152919050815181556020820151600191820155979097019650620000f09050565b60008051602062000f0583398151915260009081526a4a723dc6b40b8a9a00000060008051602062000ee58339815191525560036020527f64410ae3615140d36fcf4439173b02931f2edabe98470111c6d7c828ef06dab3805460ff1916600117905593505b600584101562000431578315156200029c5760008051602062000f05833981519152600052600260205260008051602062000ee5833981519152546064906050025b04925062000396565b8360011415620002db5760008051602062000f05833981519152600052600260205260008051602062000ee58339815191525460649060410262000293565b83600214156200031a5760008051602062000f05833981519152600052600260205260008051602062000ee58339815191525460649060320262000293565b8360031415620003595760008051602062000f05833981519152600052600260205260008051602062000ee583398151915254606490601e0262000293565b8360041415620003965760008051602062000f05833981519152600052600260205260008051602062000ee583398151915254606490600f020492505b60008051602062000f0583398151915260005260046020527f09012cc0ace509404e2affdda22f225df08894968eabacc64a683d933d4f49e5805460018101620003e1838262000683565b91600052602060002090600202016000604080519081016040526001805490890162278d000201815260208101879052919050815181556020820151600191820155959095019450620002519050565b60008051602062000e8583398151915260009081526af8277896582678ac00000060008051602062000ea58339815191525560036020527f313ad7d99dd6900386e2170c96c22a46e5c0be306ebd28ed1721a6390356ea30805460ff1916600117905591505b60058210156200067757811515620004e25760008051602062000e85833981519152600052600260205260008051602062000ea5833981519152546064906050025b049050620005dc565b8160011415620005215760008051602062000e85833981519152600052600260205260008051602062000ea583398151915254606490604102620004d9565b8160021415620005605760008051602062000e85833981519152600052600260205260008051602062000ea583398151915254606490603202620004d9565b81600314156200059f5760008051602062000e85833981519152600052600260205260008051602062000ea583398151915254606490601e02620004d9565b8160041415620005dc5760008051602062000e85833981519152600052600260205260008051602062000ea583398151915254606490600f020490505b60008051602062000e8583398151915260005260046020527fa190a220fb10389aec8f18a0b1da6ce3692ec24c343cb993762535ce5dd66e7e80546001810162000627838262000683565b91600052602060002090600202016000604080519081016040526001805490870162278d000201815260208101859052919050815181556020820151600191820155939093019250620004979050565b505050505050620006e1565b815481835581811511620006b257600202816002028360005260206000209182019101620006b29190620006b7565b505050565b620006de91905b80821115620006da5760008082556001820155600201620006be565b5090565b90565b61079480620006f16000396000f3006060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df57806318160ddd14610169578063199002d91461018e5780631c75f085146101a1578063313ce567146101d057806353719b6e146101f95780635a3b7e42146102335780635a3c7e95146102465780635d0354c31461025957806370a082311461026c5780638da5cb5b1461028b57806395d89b411461029e578063a9059cbb146102b1578063b414d4b6146102e7578063f2fde38b14610306575b600080fd5b34156100ea57600080fd5b6100f2610327565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012e578082015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017457600080fd5b61017c61035e565b60405190815260200160405180910390f35b341561019957600080fd5b61017c61036e565b34156101ac57600080fd5b6101b4610374565b604051600160a060020a03909116815260200160405180910390f35b34156101db57600080fd5b6101e361038c565b60405160ff909116815260200160405180910390f35b341561020457600080fd5b61021b600160a060020a0360043516602435610391565b60405191825260208201526040908101905180910390f35b341561023e57600080fd5b6100f26103cc565b341561025157600080fd5b6101b4610403565b341561026457600080fd5b6101b461041b565b341561027757600080fd5b61017c600160a060020a0360043516610433565b341561029657600080fd5b6101b4610445565b34156102a957600080fd5b6100f2610454565b34156102bc57600080fd5b6102d3600160a060020a036004351660243561048b565b604051901515815260200160405180910390f35b34156102f257600080fd5b6102d3600160a060020a0360043516610571565b341561031157600080fd5b610325600160a060020a0360043516610586565b005b60408051908101604052600f81527f4869766520436861696e20436f696e0000000000000000000000000000000000602082015281565b6b09b18ab5df7180b6b800000081565b60015481565b7395eee45ffef756d8bfce8d8ad1617c331a6d0cbb81565b601281565b6004602052816000526040600020818154811015156103ac57fe5b600091825260209091206002909102018054600190910154909250905082565b60408051908101604052600581527f4552433230000000000000000000000000000000000000000000000000000000602082015281565b73e1461098d05c8d30aacb8db6e3c10f9ace80319a81565b73067aa439831c0e6070aaf0ba2c6c6ec4bb4c9d0981565b60026020526000908152604090205481565b600054600160a060020a031681565b60408051908101604052600481527f4849564500000000000000000000000000000000000000000000000000000000602082015281565b600080821161049c5750600061056b565b6104a633836105d0565b156104b35750600061056b565b600160a060020a0333166000908152600260205260409020548290108015906104f55750600160a060020a038316600090815260026020526040902054828101115b1561056757600160a060020a033381166000818152600260205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600161056b565b5060005b92915050565b60036020526000908152604090205460ff1681565b60005433600160a060020a039081169116146105a157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382166000908152600360205260408120548190819060ff161561075b575050600160a060020a0383166000908152600460205260408120905b815481101561075b57818181548110151561062857fe5b90600052602060002090600202016000015442101561069d57818181548110151561064f57fe5b906000526020600020906002020160010154846002600088600160a060020a0316600160a060020a03168152602001908152602001600020540310156106985760019250610760565b610753565b81818154811015156106ab57fe5b90600052602060002090600202016000015442101580156106ed575081816001018154811015156106d857fe5b90600052602060002090600202016000015442105b1561070357818160010181548110151561064f57fe5b81548290600019810190811061071557fe5b6000918252602090912060029091020154421061075357600160a060020a0385166000908152600360205260408120805460ff191690559250610760565b600101610611565b600092505b5050929150505600a165627a7a723058209661fa8ab8e909b35e71528f25856eb068e36de3196b32314bfaf6f4e05b2c020029000000000000000000000000e1461098d05c8d30aacb8db6e3c10f9ace80319a202589febf4d1a7d3f4d46c636df77426c662fcebb1713ce5e7fd0901b8c9fbcd9d66dab71af8cd377b36b59692fa4b1a1139c28c970da4bd5a1fe97180a0613ebebc85b79c85b7a2865b7f56f9da4b13d07946f31f66af82cc35cf5b1117857000000000000000000000000067aa439831c0e6070aaf0ba2c6c6ec4bb4c9d09

Deployed Bytecode

0x6060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df57806318160ddd14610169578063199002d91461018e5780631c75f085146101a1578063313ce567146101d057806353719b6e146101f95780635a3b7e42146102335780635a3c7e95146102465780635d0354c31461025957806370a082311461026c5780638da5cb5b1461028b57806395d89b411461029e578063a9059cbb146102b1578063b414d4b6146102e7578063f2fde38b14610306575b600080fd5b34156100ea57600080fd5b6100f2610327565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012e578082015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017457600080fd5b61017c61035e565b60405190815260200160405180910390f35b341561019957600080fd5b61017c61036e565b34156101ac57600080fd5b6101b4610374565b604051600160a060020a03909116815260200160405180910390f35b34156101db57600080fd5b6101e361038c565b60405160ff909116815260200160405180910390f35b341561020457600080fd5b61021b600160a060020a0360043516602435610391565b60405191825260208201526040908101905180910390f35b341561023e57600080fd5b6100f26103cc565b341561025157600080fd5b6101b4610403565b341561026457600080fd5b6101b461041b565b341561027757600080fd5b61017c600160a060020a0360043516610433565b341561029657600080fd5b6101b4610445565b34156102a957600080fd5b6100f2610454565b34156102bc57600080fd5b6102d3600160a060020a036004351660243561048b565b604051901515815260200160405180910390f35b34156102f257600080fd5b6102d3600160a060020a0360043516610571565b341561031157600080fd5b610325600160a060020a0360043516610586565b005b60408051908101604052600f81527f4869766520436861696e20436f696e0000000000000000000000000000000000602082015281565b6b09b18ab5df7180b6b800000081565b60015481565b7395eee45ffef756d8bfce8d8ad1617c331a6d0cbb81565b601281565b6004602052816000526040600020818154811015156103ac57fe5b600091825260209091206002909102018054600190910154909250905082565b60408051908101604052600581527f4552433230000000000000000000000000000000000000000000000000000000602082015281565b73e1461098d05c8d30aacb8db6e3c10f9ace80319a81565b73067aa439831c0e6070aaf0ba2c6c6ec4bb4c9d0981565b60026020526000908152604090205481565b600054600160a060020a031681565b60408051908101604052600481527f4849564500000000000000000000000000000000000000000000000000000000602082015281565b600080821161049c5750600061056b565b6104a633836105d0565b156104b35750600061056b565b600160a060020a0333166000908152600260205260409020548290108015906104f55750600160a060020a038316600090815260026020526040902054828101115b1561056757600160a060020a033381166000818152600260205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600161056b565b5060005b92915050565b60036020526000908152604090205460ff1681565b60005433600160a060020a039081169116146105a157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382166000908152600360205260408120548190819060ff161561075b575050600160a060020a0383166000908152600460205260408120905b815481101561075b57818181548110151561062857fe5b90600052602060002090600202016000015442101561069d57818181548110151561064f57fe5b906000526020600020906002020160010154846002600088600160a060020a0316600160a060020a03168152602001908152602001600020540310156106985760019250610760565b610753565b81818154811015156106ab57fe5b90600052602060002090600202016000015442101580156106ed575081816001018154811015156106d857fe5b90600052602060002090600202016000015442105b1561070357818160010181548110151561064f57fe5b81548290600019810190811061071557fe5b6000918252602090912060029091020154421061075357600160a060020a0385166000908152600360205260408120805460ff191690559250610760565b600101610611565b600092505b5050929150505600a165627a7a723058209661fa8ab8e909b35e71528f25856eb068e36de3196b32314bfaf6f4e05b2c020029

Deployed Bytecode Sourcemap

380:5691:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;506:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649:70;;;;;;;;;;;;;;;;;;;;;;;;;;;726:28;;;;;;;;;;;;764:81;;;;;;;;;;;;;;;-1:-1:-1;;;;;764:81:0;;;;;;;;;;;;;;607:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1360:53;;;;;;;;;;-1:-1:-1;;;;;1360:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;458:41;;;;;;;;;;;;1003:86;;;;;;;;;;;;904;;;;;;;;;;;;1148:45;;;;;;;;;;-1:-1:-1;;;;;1148:45:0;;;;;50:20;;;;;;;;;;;;562:38;;;;;;;;;;;;4339:549;;;;;;;;;;-1:-1:-1;;;;;4339:549:0;;;;;;;;;;;;;;;;;;;;;;;;1253:46;;;;;;;;;;-1:-1:-1;;;;;1253:46:0;;;;;236:96;;;;;;;;;;-1:-1:-1;;;;;236:96:0;;;;;;;506:47;;;;;;;;;;;;;;;;;;:::o;649:70::-;685:34;649:70;:::o;726:28::-;;;;:::o;764:81::-;803:42;764:81;:::o;607:35::-;640:2;607:35;:::o;1360:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1360:53:0;-1:-1:-1;1360:53:0;:::o;458:41::-;;;;;;;;;;;;;;;;;;:::o;1003:86::-;1047:42;1003:86;:::o;904:::-;948:42;904:86;:::o;1148:45::-;;;;;;;;;;;;;:::o;50:20::-;;;-1:-1:-1;;;;;50:20:0;;:::o;562:38::-;;;;;;;;;;;;;;;;;;:::o;4339:549::-;4412:12;4451;;;4447:30;;-1:-1:-1;4472:5:0;4465:12;;4447:30;4500:32;4512:10;4524:7;4500:11;:32::i;:::-;4496:50;;;-1:-1:-1;4541:5:0;4534:12;;4496:50;-1:-1:-1;;;;;4573:10:0;4563:21;;;;;:9;:21;;;;;;:32;;;;;;:90;;-1:-1:-1;;;;;;4639:14:0;;;;;;:9;:14;;;;;;4612:24;;;:41;4563:90;4559:317;;;-1:-1:-1;;;;;4682:10:0;4672:21;;;;;;:9;:21;;;;;;:32;;;;;;;4719:14;;;;;;;;;;:25;;;;;;:14;4759:34;;4697:7;;4759:34;;;;;;;;;;;;;-1:-1:-1;4815:4:0;4808:11;;4559:317;-1:-1:-1;4859:5:0;4559:317;4339:549;;;;:::o;1253:46::-;;;;;;;;;;;;;;;:::o;236:96::-;201:5;;187:10;-1:-1:-1;;;;;187:19:0;;;201:5;;187:19;178:29;;;;;;308:5;:16;;-1:-1:-1;;308:16:0;-1:-1:-1;;;;;308:16:0;;;;;;;;;;236:96::o;5034:1031::-;-1:-1:-1;;;;;5159:20:0;;5124:12;5159:20;;;:13;:20;;;;;;5124:12;;;;5159:20;;5155:880;;;-1:-1:-1;;;;;;;5242:19:0;;;;;;:12;:19;;;;;;5276:734;5294:17;;5292:19;;5276:734;;;5344:10;5355:1;5344:13;;;;;;;;;;;;;;;;;;;;:18;;;5339:3;:23;5335:660;;;5485:10;5496:1;5485:13;;;;;;;;;;;;;;;;;;;;:19;;;5476:6;5457:9;:16;5467:5;-1:-1:-1;;;;;5457:16:0;-1:-1:-1;;;;;5457:16:0;;;;;;;;;;;;;:25;:47;5453:93;;;5542:4;5535:11;;;;5453:93;5335:660;;;5584:10;5595:1;5584:13;;;;;;;;;;;;;;;;;;;;:18;;;5578:3;:24;;:54;;;;;5612:10;5623:1;5625;5623:3;5612:15;;;;;;;;;;;;;;;;;;;;:20;;;5606:3;:26;5578:54;5574:421;;;5746:10;5757:1;5759;5757:3;5746:15;;;;;;;;;5574:421;5857:17;;5846:10;;-1:-1:-1;;5857:19:0;;;5846:31;;;;;;;;;;;;;;;;;;;:36;5841:3;:41;5838:157;;-1:-1:-1;;;;;5908:20:0;;5931:5;5908:20;;;:13;:20;;;;;:28;;-1:-1:-1;;5908:28:0;;;5931:5;-1:-1:-1;5962:12:0;;5838:157;5312:3;;5276:734;;;6052:5;6045:12;;5034:1031;;;;;;;:::o

Swarm Source

bzzr://9661fa8ab8e909b35e71528f25856eb068e36de3196b32314bfaf6f4e05b2c02
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.