ETH Price: $3,410.38 (-1.00%)
Gas: 2 Gwei

Token

JAX (JAX)
 

Overview

Max Total Supply

21,000,000 JAX

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jtobcat.eth
Balance
5,000 JAX

Value
$0.00
0xa5A0b7c3dD5dddBFbD51e56b9170bb6D1253788b
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:
DappChannel

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.5.11;

/**
 * @title SafeMaths
 * @dev Math operations with safety checks that throw on error
 */

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }

    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;
    }

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

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

/**
 * Welcome to the Telegram chat https://devsolidity.io/
 */
contract Token {
    uint256 public totalSupply;

    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    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 Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract StandardToken is Token {
    using SafeMath for uint256;
    mapping(address => mapping (address => uint256)) internal allowed;
    mapping(address => uint256) 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, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(balances[msg.sender] >= _value && balances[_to].add(_value) >= balances[_to]);

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);

        emit 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];
    }


    /**
    * @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 <= 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 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 remaining) {
        return allowed[_owner][_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
    */
    function increaseApproval(address _spender, uint256 _addedValue) public returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);

        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint256 _subtractedValue) public returns (bool success) {
        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;
    }
}

contract DappChannel is StandardToken {
    string public constant name = "JAX";
    string public constant symbol = "JAX";
    uint256 public constant decimals = 18;
    uint256 public constant INITIAL_SUPPLY = 21000000 * (10**decimals);
    address public tokenWallet;

    constructor() public {
        totalSupply = INITIAL_SUPPLY;
        tokenWallet = msg.sender;
        balances[tokenWallet] = totalSupply;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b506a115eec47f6cf7e350000006000818155600380546001600160a01b0319163317908190556001600160a01b031681526002602052604090205561082d8061005a6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063661884631161008c578063a9059cbb11610066578063a9059cbb14610243578063bff99c6c1461026f578063d73dd62314610293578063dd62ed3e146102bf576100cf565b806366188463146101f157806370a082311461021d57806395d89b41146100d4576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab5780632ff2e9dc146101e1578063313ce567146101e9575b600080fd5b6100dc6102ed565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b03813516906020013561030c565b604080519115158252519081900360200190f35b610199610372565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b03813581169160208101359091169060400135610378565b6101996104ca565b6101996104d9565b61017d6004803603604081101561020757600080fd5b506001600160a01b0381351690602001356104de565b6101996004803603602081101561023357600080fd5b50356001600160a01b03166105ce565b61017d6004803603604081101561025957600080fd5b506001600160a01b0381351690602001356105e9565b6102776106fd565b604080516001600160a01b039092168252519081900360200190f35b61017d600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561070c565b610199600480360360408110156102d557600080fd5b506001600160a01b03813581169160200135166107a5565b6040518060400160405280600381526020016209482b60eb1b81525081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b03831661038d57600080fd5b6001600160a01b03841660009081526001602090815260408083203384529091529020548211156103bd57600080fd5b6001600160a01b0384166000908152600260205260409020546103e6908363ffffffff6107d016565b6001600160a01b03808616600090815260026020526040808220939093559085168152205461041b908363ffffffff6107e216565b6001600160a01b03808516600090815260026020908152604080832094909455918716815260018252828120338252909152205461045f908363ffffffff6107d016565b6001600160a01b03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a115eec47f6cf7e3500000081565b601281565b3360009081526001602090815260408083206001600160a01b038616845290915281205480831115610533573360009081526001602090815260408083206001600160a01b0388168452909152812055610568565b610543818463ffffffff6107d016565b3360009081526001602090815260408083206001600160a01b03891684529091529020555b3360008181526001602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526002602052604090205490565b60006001600160a01b0383166105fe57600080fd5b33600090815260026020526040902054821180159061064457506001600160a01b038316600090815260026020526040902054610641818463ffffffff6107e216565b10155b61064d57600080fd5b3360009081526002602052604090205461066d908363ffffffff6107d016565b33600090815260026020526040808220929092556001600160a01b0385168152205461069f908363ffffffff6107e216565b6001600160a01b0384166000818152600260209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6003546001600160a01b031681565b3360009081526001602090815260408083206001600160a01b0386168452909152812054610740908363ffffffff6107e216565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828211156107dc57fe5b50900390565b6000828201838110156107f157fe5b939250505056fea265627a7a723158209de7883df9b18cf3818b0f0ff7d15f4d7abdd7365e698d9eb7b937b3f42520f364736f6c634300050b0032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063661884631161008c578063a9059cbb11610066578063a9059cbb14610243578063bff99c6c1461026f578063d73dd62314610293578063dd62ed3e146102bf576100cf565b806366188463146101f157806370a082311461021d57806395d89b41146100d4576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab5780632ff2e9dc146101e1578063313ce567146101e9575b600080fd5b6100dc6102ed565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b03813516906020013561030c565b604080519115158252519081900360200190f35b610199610372565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b03813581169160208101359091169060400135610378565b6101996104ca565b6101996104d9565b61017d6004803603604081101561020757600080fd5b506001600160a01b0381351690602001356104de565b6101996004803603602081101561023357600080fd5b50356001600160a01b03166105ce565b61017d6004803603604081101561025957600080fd5b506001600160a01b0381351690602001356105e9565b6102776106fd565b604080516001600160a01b039092168252519081900360200190f35b61017d600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561070c565b610199600480360360408110156102d557600080fd5b506001600160a01b03813581169160200135166107a5565b6040518060400160405280600381526020016209482b60eb1b81525081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b03831661038d57600080fd5b6001600160a01b03841660009081526001602090815260408083203384529091529020548211156103bd57600080fd5b6001600160a01b0384166000908152600260205260409020546103e6908363ffffffff6107d016565b6001600160a01b03808616600090815260026020526040808220939093559085168152205461041b908363ffffffff6107e216565b6001600160a01b03808516600090815260026020908152604080832094909455918716815260018252828120338252909152205461045f908363ffffffff6107d016565b6001600160a01b03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a115eec47f6cf7e3500000081565b601281565b3360009081526001602090815260408083206001600160a01b038616845290915281205480831115610533573360009081526001602090815260408083206001600160a01b0388168452909152812055610568565b610543818463ffffffff6107d016565b3360009081526001602090815260408083206001600160a01b03891684529091529020555b3360008181526001602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526002602052604090205490565b60006001600160a01b0383166105fe57600080fd5b33600090815260026020526040902054821180159061064457506001600160a01b038316600090815260026020526040902054610641818463ffffffff6107e216565b10155b61064d57600080fd5b3360009081526002602052604090205461066d908363ffffffff6107d016565b33600090815260026020526040808220929092556001600160a01b0385168152205461069f908363ffffffff6107e216565b6001600160a01b0384166000818152600260209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6003546001600160a01b031681565b3360009081526001602090815260408083206001600160a01b0386168452909152812054610740908363ffffffff6107e216565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828211156107dc57fe5b50900390565b6000828201838110156107f157fe5b939250505056fea265627a7a723158209de7883df9b18cf3818b0f0ff7d15f4d7abdd7365e698d9eb7b937b3f42520f364736f6c634300050b0032

Deployed Bytecode Sourcemap

5781:435:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5781:435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5826:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;5826:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4064:208;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4064:208:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;988:26;;;:::i;:::-;;;;;;;;;;;;;;;;2971:445;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2971:445:0;;;;;;;;;;;;;;;;;:::i;5956:66::-;;;:::i;5912:37::-;;;:::i;5310:464::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5310:464:0;;;;;;;;:::i;2562:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2562:115:0;-1:-1:-1;;;;;2562:115:0;;:::i;1938:403::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1938:403:0;;;;;;;;:::i;6029:26::-;;;:::i;:::-;;;;-1:-1:-1;;;;;6029:26:0;;;;;;;;;;;;;;5009:293;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5009:293:0;;;;;;;;:::i;4608:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4608:144:0;;;;;;;;;;:::i;5826:35::-;;;;;;;;;;;;;;-1:-1:-1;;;5826:35:0;;;;:::o;4064:208::-;4156:10;4131:4;4148:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4148:29:0;;;;;;;;;;;:38;;;4204;;;;;;;4131:4;;4148:29;;4156:10;;4204:38;;;;;;;;-1:-1:-1;4260:4:0;4064:208;;;;:::o;988:26::-;;;;:::o;2971:445::-;3053:4;-1:-1:-1;;;;;3078:17:0;;3070:26;;;;;;-1:-1:-1;;;;;3125:14:0;;;;;;:7;:14;;;;;;;;3140:10;3125:26;;;;;;;;3115:36;;;3107:45;;;;;;-1:-1:-1;;;;;3183:15:0;;;;;;:8;:15;;;;;;:27;;3203:6;3183:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;3165:15:0;;;;;;;:8;:15;;;;;;:45;;;;3237:13;;;;;;;:25;;3255:6;3237:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3221:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;3302:14;;;;;:7;:14;;;;;3317:10;3302:26;;;;;;;:38;;3333:6;3302:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;3273:14:0;;;;;;;:7;:14;;;;;;;;3288:10;3273:26;;;;;;;;:67;;;;3358:28;;;;;;;;;;;3273:14;;3358:28;;;;;;;;;;;-1:-1:-1;3404:4:0;2971:445;;;;;:::o;5956:66::-;5997:25;5956:66;:::o;5912:37::-;5947:2;5912:37;:::o;5310:464::-;5448:10;5396:12;5440:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5440:29:0;;;;;;;;;;5486:27;;;5482:184;;;5536:10;5560:1;5528:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5528:29:0;;;;;;;;;:33;5482:184;;;5624:30;:8;5637:16;5624:30;:12;:30;:::i;:::-;5600:10;5592:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5592:29:0;;;;;;;;;:62;5482:184;5692:10;5714:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5683:61:0;;5714:29;;;;;;;;;;;5683:61;;;;;;;;;5692:10;5683:61;;;;;;;;;;;-1:-1:-1;5762:4:0;;5310:464;-1:-1:-1;;;5310:464:0:o;2562:115::-;-1:-1:-1;;;;;2653:16:0;2618:15;2653:16;;;:8;:16;;;;;;;2562:115::o;1938:403::-;2001:4;-1:-1:-1;;;;;2026:17:0;;2018:26;;;;;;2072:10;2063:20;;;;:8;:20;;;;;;:30;-1:-1:-1;2063:30:0;;;:76;;-1:-1:-1;;;;;;2126:13:0;;;;;;:8;:13;;;;;;2097:25;2126:13;2115:6;2097:25;:17;:25;:::i;:::-;:42;;2063:76;2055:85;;;;;;2185:10;2176:20;;;;:8;:20;;;;;;:32;;2201:6;2176:32;:24;:32;:::i;:::-;2162:10;2153:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2235:13:0;;;;;;:25;;2253:6;2235:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2219:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2278:33;;;;;;;2219:13;;2287:10;;2278:33;;;;;;;;;;-1:-1:-1;2329:4:0;1938:403;;;;:::o;6029:26::-;;;-1:-1:-1;;;;;6029:26:0;;:::o;5009:293::-;5155:10;5090:12;5147:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5147:29:0;;;;;;;;;;:46;;5181:11;5147:46;:33;:46;:::i;:::-;5123:10;5115:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5115:29:0;;;;;;;;;;;;:78;;;5211:61;;;;;;5115:29;;5211:61;;;;;;;;;;;-1:-1:-1;5290:4:0;5009:293;;;;:::o;4608:144::-;-1:-1:-1;;;;;4719:15:0;;;4682:17;4719:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;4608:144::o;614:123::-;672:7;704:1;699;:6;;692:14;;;;-1:-1:-1;724:5:0;;;614:123::o;745:147::-;803:7;835:5;;;858:6;;;;851:14;;;;883:1;745:147;-1:-1:-1;;;745:147:0:o

Swarm Source

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