ETH Price: $2,053.48 (-6.21%)

Token

TIME Layer One (T1)
 

Overview

Max Total Supply

657,019,291 T1

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Bidesk 30
Balance
55,000 T1

Value
$0.00
0x8c699A889413893Ca1f03bA6405ae66c66F955E6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

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

Contract Name:
ERC20Token

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-10-15
*/

pragma solidity ^0.4.24;

/**
 * @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) {
        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 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) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @title Standard Token
 */
contract StandardToken {
    using SafeMath for uint256;

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

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

    uint256 internal totalSupply_;
    string public name;
    string public symbol;
    uint8 public decimals;

    constructor(string tokenName, string tokenSymbol, uint8 tokenDecimals, uint256 tokenSupply) public {
        name = tokenName;
        symbol = tokenSymbol;
        decimals = tokenDecimals;
        totalSupply_ = tokenSupply * 10 ** uint256(decimals);
        balances[msg.sender] = 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(_to != address(0));
        require(_value <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _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(_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);
        emit 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;
        emit Approval(msg.sender, _spender, _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;
    }
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken
 */
contract ERC20Token is StandardToken {
    constructor(string tokenName, string tokenSymbol, uint8 tokenDecimals, uint256 tokenSupply, address initAddress, uint256 initBalance) StandardToken(tokenName, tokenSymbol, tokenDecimals, tokenSupply) public {
        if (initBalance > 0 && initAddress != address(0)) {
            uint256 ib = initBalance * 10 ** uint256(decimals);
            require(ib <= totalSupply_);
            balances[initAddress] = ib;
            balances[msg.sender] = totalSupply_.sub(ib);
        }
    }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableERC20Token is ERC20Token {

    event Burn(address indexed burner, uint256 value);

    constructor(string tokenName, string tokenSymbol, uint8 tokenDecimals, uint256 tokenSupply, address initAddress, uint256 initBalance) ERC20Token(tokenName, tokenSymbol, tokenDecimals, tokenSupply, initAddress, initBalance) public {
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        _burn(msg.sender, _value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param _from address The address which you want to send tokens from
     * @param _value uint256 The amount of token to be burned
     */
    function burnFrom(address _from, uint256 _value) public {
        require(_value <= allowed[_from][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[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        _burn(_from, _value);
    }

    function _burn(address _who, uint256 _value) internal {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[_who] = balances[_who].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"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":"","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":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenDecimals","type":"uint8"},{"name":"tokenSupply","type":"uint256"},{"name":"initAddress","type":"address"},{"name":"initBalance","type":"uint256"}],"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"},{"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"}]

608060405234801561001057600080fd5b50604051610a8f380380610a8f8339810160409081528151602080840151928401516060850151608086015160a0870151948701805190979690960195929491939092600091889188918891889161006d91600391870190610153565b508251610081906004906020860190610153565b506005805460ff191660ff9384161790819055909116600a0a02600281905533600090815260208190526040812091909155841191505080156100cc5750600160a060020a03831615155b15610135575060055460025460ff909116600a0a8202908111156100ef57600080fd5b600160a060020a0383166000908152602081905260409020819055600254610124908264010000000061083e61014182021704565b336000908152602081905260409020555b505050505050506101ee565b60008282111561014d57fe5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019457805160ff19168380011785556101c1565b828001600101855582156101c1579182015b828111156101c15782518255916020019190600101906101a6565b506101cd9291506101d1565b5090565b6101eb91905b808211156101cd57600081556001016101d7565b90565b610892806101fd6000396000f3006080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b3578063095ea7b31461013d57806318160ddd1461017557806323b872dd1461019c578063313ce567146101c657806366188463146101f157806370a082311461021557806395d89b4114610236578063a9059cbb1461024b578063d73dd6231461026f578063dd62ed3e14610293575b600080fd5b3480156100bf57600080fd5b506100c86102ba565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b50610161600160a060020a0360043516602435610348565b604080519115158252519081900360200190f35b34801561018157600080fd5b5061018a6103ae565b60408051918252519081900360200190f35b3480156101a857600080fd5b50610161600160a060020a03600435811690602435166044356103b4565b3480156101d257600080fd5b506101db61052b565b6040805160ff9092168252519081900360200190f35b3480156101fd57600080fd5b50610161600160a060020a0360043516602435610534565b34801561022157600080fd5b5061018a600160a060020a0360043516610623565b34801561024257600080fd5b506100c861063e565b34801561025757600080fd5b50610161600160a060020a0360043516602435610699565b34801561027b57600080fd5b50610161600160a060020a036004351660243561077a565b34801561029f57600080fd5b5061018a600160a060020a0360043581169060243516610813565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103405780601f1061031557610100808354040283529160200191610340565b820191906000526020600020905b81548152906001019060200180831161032357829003601f168201915b505050505081565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b6000600160a060020a03831615156103cb57600080fd5b600160a060020a0384166000908152602081905260409020548211156103f057600080fd5b600160a060020a038416600090815260016020908152604080832033845290915290205482111561042057600080fd5b600160a060020a038416600090815260208190526040902054610449908363ffffffff61083e16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461047e908363ffffffff61085016565b600160a060020a038085166000908152602081815260408083209490945591871681526001825282812033825290915220546104c0908363ffffffff61083e16565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b336000908152600160209081526040808320600160a060020a038616845290915281205480831061058857336000908152600160209081526040808320600160a060020a03881684529091528120556105bd565b610598818463ffffffff61083e16565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103405780601f1061031557610100808354040283529160200191610340565b6000600160a060020a03831615156106b057600080fd5b336000908152602081905260409020548211156106cc57600080fd5b336000908152602081905260409020546106ec908363ffffffff61083e16565b3360009081526020819052604080822092909255600160a060020a0385168152205461071e908363ffffffff61085016565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600160209081526040808320600160a060020a03861684529091528120546107ae908363ffffffff61085016565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60008282111561084a57fe5b50900390565b60008282018381101561085f57fe5b93925050505600a165627a7a723058209daa5a1924d37f81663ffbdd56ae78577422a6c7a0de40cf81b447ee2ca60d09002900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434154000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034341540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b3578063095ea7b31461013d57806318160ddd1461017557806323b872dd1461019c578063313ce567146101c657806366188463146101f157806370a082311461021557806395d89b4114610236578063a9059cbb1461024b578063d73dd6231461026f578063dd62ed3e14610293575b600080fd5b3480156100bf57600080fd5b506100c86102ba565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b50610161600160a060020a0360043516602435610348565b604080519115158252519081900360200190f35b34801561018157600080fd5b5061018a6103ae565b60408051918252519081900360200190f35b3480156101a857600080fd5b50610161600160a060020a03600435811690602435166044356103b4565b3480156101d257600080fd5b506101db61052b565b6040805160ff9092168252519081900360200190f35b3480156101fd57600080fd5b50610161600160a060020a0360043516602435610534565b34801561022157600080fd5b5061018a600160a060020a0360043516610623565b34801561024257600080fd5b506100c861063e565b34801561025757600080fd5b50610161600160a060020a0360043516602435610699565b34801561027b57600080fd5b50610161600160a060020a036004351660243561077a565b34801561029f57600080fd5b5061018a600160a060020a0360043581169060243516610813565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103405780601f1061031557610100808354040283529160200191610340565b820191906000526020600020905b81548152906001019060200180831161032357829003601f168201915b505050505081565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b6000600160a060020a03831615156103cb57600080fd5b600160a060020a0384166000908152602081905260409020548211156103f057600080fd5b600160a060020a038416600090815260016020908152604080832033845290915290205482111561042057600080fd5b600160a060020a038416600090815260208190526040902054610449908363ffffffff61083e16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461047e908363ffffffff61085016565b600160a060020a038085166000908152602081815260408083209490945591871681526001825282812033825290915220546104c0908363ffffffff61083e16565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b336000908152600160209081526040808320600160a060020a038616845290915281205480831061058857336000908152600160209081526040808320600160a060020a03881684529091528120556105bd565b610598818463ffffffff61083e16565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103405780601f1061031557610100808354040283529160200191610340565b6000600160a060020a03831615156106b057600080fd5b336000908152602081905260409020548211156106cc57600080fd5b336000908152602081905260409020546106ec908363ffffffff61083e16565b3360009081526020819052604080822092909255600160a060020a0385168152205461071e908363ffffffff61085016565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600160209081526040808320600160a060020a03861684529091528120546107ae908363ffffffff61085016565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60008282111561084a57fe5b50900390565b60008282018381101561085f57fe5b93925050505600a165627a7a723058209daa5a1924d37f81663ffbdd56ae78577422a6c7a0de40cf81b447ee2ca60d090029

Deployed Bytecode Sourcemap

7063:540:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1724:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1724:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1724:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5054:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5054:206:0;-1:-1:-1;;;;;5054:206:0;;;;;;;;;;;;;;;;;;;;;;;;;2188:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2188:91:0;;;;;;;;;;;;;;;;;;;;3909:488;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3909:488:0;-1:-1:-1;;;;;3909:488:0;;;;;;;;;;;;1776:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1776:21:0;;;;;;;;;;;;;;;;;;;;;;;6526:457;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6526:457:0;-1:-1:-1;;;;;6526:457:0;;;;;;;2500:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2500:107:0;-1:-1:-1;;;;;2500:107:0;;;;;1749:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1749:20:0;;;;3255:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3255:355:0;-1:-1:-1;;;;;3255:355:0;;;;;;;5743:295;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5743:295:0;-1:-1:-1;;;;;5743:295:0;;;;;;;2948:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2948:134:0;-1:-1:-1;;;;;2948:134:0;;;;;;;;;;1724:18;;;;;;;;;;;;;;;-1:-1:-1;;1724:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5054:206::-;5146:10;5121:4;5138:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5138:29:0;;;;;;;;;;;:38;;;5192;;;;;;;5121:4;;5138:29;;5146:10;;5192:38;;;;;;;;-1:-1:-1;5248:4:0;5054:206;;;;:::o;2188:91::-;2259:12;;2188:91;:::o;3909:488::-;3991:4;-1:-1:-1;;;;;4016:17:0;;;;4008:26;;;;;;-1:-1:-1;;;;;4063:15:0;;:8;:15;;;;;;;;;;;4053:25;;;4045:34;;;;;;-1:-1:-1;;;;;4108:14:0;;;;;;:7;:14;;;;;;;;4123:10;4108:26;;;;;;;;4098:36;;;4090:45;;;;;;-1:-1:-1;;;;;4166:15:0;;:8;:15;;;;;;;;;;;:27;;4186:6;4166:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4148:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4220:13;;;;;;;:25;;4238:6;4220:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4204:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4285:14;;;;;:7;:14;;;;;4300:10;4285:26;;;;;;;:38;;4316:6;4285:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4256:14:0;;;;;;;:7;:14;;;;;;;;4271:10;4256:26;;;;;;;;:67;;;;4339:28;;;;;;;;;;;4256:14;;4339:28;;;;;;;;;;;-1:-1:-1;4385:4:0;3909:488;;;;;:::o;1776:21::-;;;;;;:::o;6526:457::-;6656:10;6612:4;6648:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6648:29:0;;;;;;;;;;6692:28;;;6688:189;;6745:10;6769:1;6737:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6737:29:0;;;;;;;;;:33;6688:189;;;6835:30;:8;6848:16;6835:30;:12;:30;:::i;:::-;6811:10;6803:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6803:29:0;;;;;;;;;:62;6688:189;6901:10;6923:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6892:61:0;;6923:29;;;;;;;;;;;6892:61;;;;;;;;;6901:10;6892:61;;;;;;;;;;;-1:-1:-1;6971:4:0;;6526:457;-1:-1:-1;;;6526:457:0:o;2500:107::-;-1:-1:-1;;;;;2583:16:0;2556:7;2583:16;;;;;;;;;;;;2500:107::o;1749:20::-;;;;;;;;;;;;;;;-1:-1:-1;;1749:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3255:355;3318:4;-1:-1:-1;;;;;3343:17:0;;;;3335:26;;;;;;3399:10;3390:8;:20;;;;;;;;;;;3380:30;;;3372:39;;;;;;3456:10;3447:8;:20;;;;;;;;;;;:32;;3472:6;3447:32;:24;:32;:::i;:::-;3433:10;3424:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3506:13:0;;;;;;:25;;3524:6;3506:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3490:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3547:33;;;;;;;3490:13;;3556:10;;3547:33;;;;;;;;;;-1:-1:-1;3598:4:0;3255:355;;;;:::o;5743:295::-;5892:10;5824:4;5884:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5884:29:0;;;;;;;;;;:46;;5918:11;5884:46;:33;:46;:::i;:::-;5849:10;5841:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5841:29:0;;;;;;;;;;;;:90;;;5947:61;;;;;;5841:29;;5947:61;;;;;;;;;;;-1:-1:-1;6026:4:0;5743:295;;;;:::o;2948:134::-;-1:-1:-1;;;;;3049:15:0;;;3022:7;3049:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2948:134::o;944:123::-;1002:7;1029:6;;;;1022:14;;;;-1:-1:-1;1054:5:0;;;944:123::o;1142:147::-;1200:7;1232:5;;;1255:6;;;;1248:14;;;;1280:1;1142:147;-1:-1:-1;;;1142:147:0:o

Swarm Source

bzzr://9daa5a1924d37f81663ffbdd56ae78577422a6c7a0de40cf81b447ee2ca60d09
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.