ETH Price: $3,135.18 (-4.26%)

Token

FIT Token (FITX)
 

Overview

Max Total Supply

4,000,000,000 FITX

Holders

9,968

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 5 Decimals)

Balance
1,652 FITX

Value
$0.00
0x8c2d2da2fa427c8d371491b8bda3569ceae5bf37
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:
FitToken

Compiler Version
v0.5.9+commit.e560f70d

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.5.9;

/**
 * Math operations with safety checks
 */
library SafeMath {
function safeAdd(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }


    function safeSub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    function safeMul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function safeDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;

        return c;
    }

    function safeMod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

contract FitToken {
    using SafeMath for uint256;
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;
	address public owner;

    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /* This notifies clients about the amount burnt */
    event Burn(address indexed from, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    constructor(
        uint256 initialSupply,
        string memory tokenName,
        uint8 decimalUnits,
        string memory tokenSymbol
        ) public {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        totalSupply = initialSupply;                        // Update total supply
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        decimals = decimalUnits;                            // Amount of decimals for display purposes
		owner = msg.sender;
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) public {
        require(_to != address(0), "Cannot use zero address");
        require(_value > 0, "Cannot use zero value");

        require (balanceOf[msg.sender] >= _value, "Balance not enough");         // Check if the sender has enough
        require (balanceOf[_to] + _value >= balanceOf[_to], "Overflow" );        // Check for overflows
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);               // Add the same to the recipient
        emit Transfer(msg.sender, _to, _value);                                  // Notify anyone listening that this transfer took place
    }

    function approve(address _spender, uint256 _value) public
        returns (bool success) {
		require (_value > 0, "Cannot use zero");
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_to != address(0), "Cannot use zero address");
		require(_value > 0, "Cannot use zero value");
		require( balanceOf[_from] >= _value, "Balance not enough" );
        require( balanceOf[_to] + _value > balanceOf[_to], "Cannot overflows" );
        require( _value <= allowance[_from][msg.sender], "Cannot over allowance" );
        balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value);
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);
        allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value);
        emit Transfer(_from, _to, _value);
        return true;
    }

}

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":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"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":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

608060405234801561001057600080fd5b50604051610bd1380380610bd18339818101604052608081101561003357600080fd5b81516020830180519193928301929164010000000081111561005457600080fd5b8201602081018481111561006757600080fd5b815164010000000081118282018710171561008157600080fd5b505060208201516040909201805191949293916401000000008111156100a657600080fd5b820160208101848111156100b957600080fd5b81516401000000008111828201871017156100d357600080fd5b50503360009081526005602090815260408220899055600389905587519295506101039450909250860190610147565b508051610117906001906020840190610147565b50506002805460ff90921660ff199092169190911790555050600480546001600160a01b031916331790556101e2565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018857805160ff19168380011785556101b5565b828001600101855582156101b5579182015b828111156101b557825182559160200191906001019061019a565b506101c19291506101c5565b5090565b6101df91905b808211156101c157600081556001016101cb565b90565b6109e0806101f16000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a08231146101ce5780638da5cb5b146101f457806395d89b4114610218578063a9059cbb14610220578063dd62ed3e1461024e5761009e565b806306fdde03146100a3578063095ea7b31461012057806318160ddd1461016057806323b872dd1461017a578063313ce567146101b0575b600080fd5b6100ab61027c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e55781810151838201526020016100cd565b50505050905090810190601f1680156101125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61014c6004803603604081101561013657600080fd5b506001600160a01b03813516906020013561030a565b604080519115158252519081900360200190f35b610168610380565b60408051918252519081900360200190f35b61014c6004803603606081101561019057600080fd5b506001600160a01b03813581169160208101359091169060400135610386565b6101b8610658565b6040805160ff9092168252519081900360200190f35b610168600480360360208110156101e457600080fd5b50356001600160a01b0316610661565b6101fc610673565b604080516001600160a01b039092168252519081900360200190f35b6100ab610682565b61024c6004803603604081101561023657600080fd5b506001600160a01b0381351690602001356106dc565b005b6101686004803603604081101561026457600080fd5b506001600160a01b03813581169160200135166108d0565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103025780601f106102d757610100808354040283529160200191610302565b820191906000526020600020905b8154815290600101906020018083116102e557829003601f168201915b505050505081565b6000808211610352576040805162461bcd60e51b815260206004820152600f60248201526e43616e6e6f7420757365207a65726f60881b604482015290519081900360640190fd5b503360009081526006602090815260408083206001600160a01b039590951683529390529190912055600190565b60035481565b60006001600160a01b0383166103dd576040805162461bcd60e51b815260206004820152601760248201527643616e6e6f7420757365207a65726f206164647265737360481b604482015290519081900360640190fd5b6000821161042a576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420757365207a65726f2076616c756560581b604482015290519081900360640190fd5b6001600160a01b03841660009081526005602052604090205482111561048c576040805162461bcd60e51b8152602060048201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b604482015290519081900360640190fd5b6001600160a01b038316600090815260056020526040902054828101116104ed576040805162461bcd60e51b815260206004820152601060248201526f43616e6e6f74206f766572666c6f777360801b604482015290519081900360640190fd5b6001600160a01b038416600090815260066020908152604080832033845290915290205482111561055d576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f74206f76657220616c6c6f77616e636560581b604482015290519081900360640190fd5b6001600160a01b03841660009081526005602052604090205461058090836108ed565b6001600160a01b0380861660009081526005602052604080822093909355908516815220546105af908361094a565b6001600160a01b0380851660009081526005602090815260408083209490945591871681526006825282812033825290915220546105ed90836108ed565b6001600160a01b03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b60056020526000908152604090205481565b6004546001600160a01b031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103025780601f106102d757610100808354040283529160200191610302565b6001600160a01b038216610731576040805162461bcd60e51b815260206004820152601760248201527643616e6e6f7420757365207a65726f206164647265737360481b604482015290519081900360640190fd5b6000811161077e576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420757365207a65726f2076616c756560581b604482015290519081900360640190fd5b336000908152600560205260409020548111156107d7576040805162461bcd60e51b8152602060048201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b604482015290519081900360640190fd5b6001600160a01b0382166000908152600560205260409020548181011015610831576040805162461bcd60e51b81526020600482015260086024820152674f766572666c6f7760c01b604482015290519081900360640190fd5b3360009081526005602052604090205461084b90826108ed565b33600090815260056020526040808220929092556001600160a01b03841681522054610877908261094a565b6001600160a01b0383166000818152600560209081526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600660209081526000928352604080842090915290825290205481565b600082821115610944576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156109a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fea265627a7a72305820435717823cf251f95ea657fede9519dd03fabca3bd6d6430b5bedd2a989ce38864736f6c6343000509003200000000000000000000000000000000000000000000000000016bcc41e900000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000946495420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044649545800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a08231146101ce5780638da5cb5b146101f457806395d89b4114610218578063a9059cbb14610220578063dd62ed3e1461024e5761009e565b806306fdde03146100a3578063095ea7b31461012057806318160ddd1461016057806323b872dd1461017a578063313ce567146101b0575b600080fd5b6100ab61027c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e55781810151838201526020016100cd565b50505050905090810190601f1680156101125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61014c6004803603604081101561013657600080fd5b506001600160a01b03813516906020013561030a565b604080519115158252519081900360200190f35b610168610380565b60408051918252519081900360200190f35b61014c6004803603606081101561019057600080fd5b506001600160a01b03813581169160208101359091169060400135610386565b6101b8610658565b6040805160ff9092168252519081900360200190f35b610168600480360360208110156101e457600080fd5b50356001600160a01b0316610661565b6101fc610673565b604080516001600160a01b039092168252519081900360200190f35b6100ab610682565b61024c6004803603604081101561023657600080fd5b506001600160a01b0381351690602001356106dc565b005b6101686004803603604081101561026457600080fd5b506001600160a01b03813581169160200135166108d0565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103025780601f106102d757610100808354040283529160200191610302565b820191906000526020600020905b8154815290600101906020018083116102e557829003601f168201915b505050505081565b6000808211610352576040805162461bcd60e51b815260206004820152600f60248201526e43616e6e6f7420757365207a65726f60881b604482015290519081900360640190fd5b503360009081526006602090815260408083206001600160a01b039590951683529390529190912055600190565b60035481565b60006001600160a01b0383166103dd576040805162461bcd60e51b815260206004820152601760248201527643616e6e6f7420757365207a65726f206164647265737360481b604482015290519081900360640190fd5b6000821161042a576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420757365207a65726f2076616c756560581b604482015290519081900360640190fd5b6001600160a01b03841660009081526005602052604090205482111561048c576040805162461bcd60e51b8152602060048201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b604482015290519081900360640190fd5b6001600160a01b038316600090815260056020526040902054828101116104ed576040805162461bcd60e51b815260206004820152601060248201526f43616e6e6f74206f766572666c6f777360801b604482015290519081900360640190fd5b6001600160a01b038416600090815260066020908152604080832033845290915290205482111561055d576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f74206f76657220616c6c6f77616e636560581b604482015290519081900360640190fd5b6001600160a01b03841660009081526005602052604090205461058090836108ed565b6001600160a01b0380861660009081526005602052604080822093909355908516815220546105af908361094a565b6001600160a01b0380851660009081526005602090815260408083209490945591871681526006825282812033825290915220546105ed90836108ed565b6001600160a01b03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b60056020526000908152604090205481565b6004546001600160a01b031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103025780601f106102d757610100808354040283529160200191610302565b6001600160a01b038216610731576040805162461bcd60e51b815260206004820152601760248201527643616e6e6f7420757365207a65726f206164647265737360481b604482015290519081900360640190fd5b6000811161077e576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420757365207a65726f2076616c756560581b604482015290519081900360640190fd5b336000908152600560205260409020548111156107d7576040805162461bcd60e51b8152602060048201526012602482015271084c2d8c2dcc6ca40dcdee840cadcdeeaced60731b604482015290519081900360640190fd5b6001600160a01b0382166000908152600560205260409020548181011015610831576040805162461bcd60e51b81526020600482015260086024820152674f766572666c6f7760c01b604482015290519081900360640190fd5b3360009081526005602052604090205461084b90826108ed565b33600090815260056020526040808220929092556001600160a01b03841681522054610877908261094a565b6001600160a01b0383166000818152600560209081526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600660209081526000928352604080842090915290825290205481565b600082821115610944576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156109a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fea265627a7a72305820435717823cf251f95ea657fede9519dd03fabca3bd6d6430b5bedd2a989ce38864736f6c63430005090032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000016bcc41e900000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000946495420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044649545800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 400000000000000
Arg [1] : tokenName (string): FIT Token
Arg [2] : decimalUnits (uint8): 5
Arg [3] : tokenSymbol (string): FITX

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000016bcc41e90000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 46495420546f6b656e0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4649545800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1170:3203:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1170:3203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1228:18;;;:::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;1228:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3395:215;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3395:215:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1308:26;;;:::i;:::-;;;;;;;;;;;;;;;;3618:750;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3618:750:0;;;;;;;;;;;;;;;;;:::i;1280:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1418:45;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1418:45:0;-1:-1:-1;;;;;1418:45:0;;:::i;1338:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1338:20:0;;;;;;;;;;;;;;1253;;;:::i;2619:768::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2619:768:0;;;;;;;;:::i;:::-;;1470:66;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1470:66:0;;;;;;;;;;:::i;1228:18::-;;;;;;;;;;;;;;;-1:-1:-1;;1228:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3395:215::-;3471:12;3508:1;3499:6;:10;3490:39;;;;;-1:-1:-1;;;3490:39:0;;;;;;;;;;;;-1:-1:-1;;;3490:39:0;;;;;;;;;;;;;;;-1:-1:-1;3550:10:0;3540:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3540:31:0;;;;;;;;;;;;;:40;3598:4;;3395:215::o;1308:26::-;;;;:::o;3618:750::-;3700:12;-1:-1:-1;;;;;3733:17:0;;3725:53;;;;;-1:-1:-1;;;3725:53:0;;;;;;;;;;;;-1:-1:-1;;;3725:53:0;;;;;;;;;;;;;;;3800:1;3791:6;:10;3783:44;;;;;-1:-1:-1;;;3783:44:0;;;;;;;;;;;;-1:-1:-1;;;3783:44:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3841:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;3841:26:0;3832:59;;;;;-1:-1:-1;;;3832:59:0;;;;;;;;;;;;-1:-1:-1;;;3832:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3937:14:0;;;;;;:9;:14;;;;;;3911:23;;;:40;3902:71;;;;;-1:-1:-1;;;3902:71:0;;;;;;;;;;;;-1:-1:-1;;;3902:71:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4003:16:0;;;;;;:9;:16;;;;;;;;4020:10;4003:28;;;;;;;;3993:38;;;3984:74;;;;;-1:-1:-1;;;3984:74:0;;;;;;;;;;;;-1:-1:-1;;;3984:74:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4105:16:0;;;;;;:9;:16;;;;;;4088:42;;4123:6;4088:16;:42::i;:::-;-1:-1:-1;;;;;4069:16:0;;;;;;;:9;:16;;;;;;:61;;;;4175:14;;;;;;;4158:40;;4191:6;4158:16;:40::i;:::-;-1:-1:-1;;;;;4141:14:0;;;;;;;:9;:14;;;;;;;;:57;;;;4257:16;;;;;:9;:16;;;;;4274:10;4257:28;;;;;;;4240:54;;4287:6;4240:16;:54::i;:::-;-1:-1:-1;;;;;4209:16:0;;;;;;;:9;:16;;;;;;;;4226:10;4209:28;;;;;;;;:85;;;;4310:28;;;;;;;;;;;4209:16;;4310:28;;;;;;;;;;;-1:-1:-1;4356:4:0;3618:750;;;;;:::o;1280:21::-;;;;;;:::o;1418:45::-;;;;;;;;;;;;;:::o;1338:20::-;;;-1:-1:-1;;;;;1338:20:0;;:::o;1253:::-;;;;;;;;;;;;;;;-1:-1:-1;;1253:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2619:768;-1:-1:-1;;;;;2692:17:0;;2684:53;;;;;-1:-1:-1;;;2684:53:0;;;;;;;;;;;;-1:-1:-1;;;2684:53:0;;;;;;;;;;;;;;;2765:1;2756:6;:10;2748:44;;;;;-1:-1:-1;;;2748:44:0;;;;;;;;;;;;-1:-1:-1;;;2748:44:0;;;;;;;;;;;;;;;2824:10;2814:21;;;;:9;:21;;;;;;:31;-1:-1:-1;2814:31:0;2805:63;;;;;-1:-1:-1;;;2805:63:0;;;;;;;;;;;;-1:-1:-1;;;2805:63:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2957:14:0;;;;;;:9;:14;;;;;;2930:23;;;:41;;2921:64;;;;;-1:-1:-1;;;2921:64:0;;;;;;;;;;;;-1:-1:-1;;;2921:64:0;;;;;;;;;;;;;;;3077:10;3067:21;;;;:9;:21;;;;;;3050:47;;3090:6;3050:16;:47::i;:::-;3036:10;3026:21;;;;:9;:21;;;;;;:71;;;;-1:-1:-1;;;;;3170:14:0;;;;;;3153:40;;3186:6;3153:16;:40::i;:::-;-1:-1:-1;;;;;3136:14:0;;;;;;:9;:14;;;;;;;;;:57;;;;3256:33;;;;;;;3136:14;;3265:10;;3256:33;;;;;;;;;;2619:768;;:::o;1470:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;291:188::-;353:7;386:1;381;:6;;373:49;;;;;-1:-1:-1;;;373:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;445:5:0;;;291:188::o;96:185::-;158:7;190:5;;;214:6;;;;206:46;;;;;-1:-1:-1;;;206:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;272:1;96:185;-1:-1:-1;;;96:185:0:o

Swarm Source

bzzr://435717823cf251f95ea657fede9519dd03fabca3bd6d6430b5bedd2a989ce388
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.