ETH Price: $3,096.59 (+1.19%)
Gas: 7 Gwei

Token

TICOEX Token (TICO)
 

Overview

Max Total Supply

101,101,101 TICO

Holders

288 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
50 TICO

Value
$0.00
0xa81d50d14ab475b872531131e1baba11b18c27dc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TICO is an effective real-time, low fee and fast response decentralized cryptocoin exchange platform that has its own cryptocurrency (TICO) use for listing, incentive program + online store.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TICOEXToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2019-11-17
*/

pragma solidity ^0.4.25;

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

  function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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

    // ERC20 Token Smart Contract
    contract TICOEXToken {
        
        string public constant name = "TICOEX Token";
        string public constant symbol = "TICO";
        uint8 public constant decimals = 8;
        uint public _totalSupply = 10110110100000000;
        uint256 public RATE = 0;
        bool public isMinting = false;
        
        using SafeMath for uint256;
        address public owner;
        
         // Functions with this modifier can only be executed by the owner
         modifier onlyOwner() {
            if (msg.sender != owner) {
                throw;
            }
             _;
         }
     
        // Balances for each account
        mapping(address => uint256) balances;
        // Owner of account approves the transfer of an amount to another account
        mapping(address => mapping(address=>uint256)) allowed;

        // Its a payable function works as a token factory.
        function () payable{
            createTokens();
        }

        // Constructor
        constructor() public {
            owner = 0x1850363833e923c99e555710f889716c5bb46bb1; 
            balances[owner] = _totalSupply;
        }

        //allows owner to burn tokens that are not sold in a crowdsale
        function burnTokens(uint256 _value) onlyOwner {

             require(balances[msg.sender] >= _value && _value > 0 );
             _totalSupply = _totalSupply.sub(_value);
             balances[msg.sender] = balances[msg.sender].sub(_value);
             
        }



        // This function creates Tokens  
         function createTokens() payable {
            if(isMinting == true){
                require(msg.value > 0);
                uint256  tokens = msg.value.mul(RATE);
                balances[msg.sender] = balances[msg.sender].add(tokens);
                _totalSupply = _totalSupply.add(tokens);
                owner.transfer(msg.value);
            }
            else{
                throw;
            }
        }


        function endCrowdsale() onlyOwner {
            isMinting = false;
        }

        function changeCrowdsaleRate(uint256 _value) onlyOwner {
            RATE = _value;
        }


        
        function totalSupply() constant returns(uint256){
            return _totalSupply;
        }
        // What is the balance of a particular account?
        function balanceOf(address _owner) constant returns(uint256){
            return balances[_owner];
        }

         // Transfer the balance from owner's account to another account   
        function transfer(address _to, uint256 _value)  returns(bool) {
            require(balances[msg.sender] >= _value && _value > 0 );
            balances[msg.sender] = balances[msg.sender].sub(_value);
            balances[_to] = balances[_to].add(_value);
            Transfer(msg.sender, _to, _value);
            return true;
        }
        
    // Send _value amount of tokens from address _from to address _to
    // The transferFrom method is used for a withdraw workflow, allowing contracts to send
    // tokens on your behalf, for example to "deposit" to a contract address and/or to charge
    // fees in sub-currencies; the command should fail unless the _from account has
    // deliberately authorized the sender of the message via some mechanism; we propose
    // these standardized APIs for approval:
    function transferFrom(address _from, address _to, uint256 _value)  returns(bool) {
        require(allowed[_from][msg.sender] >= _value && balances[_from] >= _value && _value > 0);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        Transfer(_from, _to, _value);
        return true;
    }
    
    // Allow _spender to withdraw from your account, multiple times, up to the _value amount.
    // If this function is called again it overwrites the current allowance with _value.
    function approve(address _spender, uint256 _value) returns(bool){
        allowed[msg.sender][_spender] = _value; 
        Approval(msg.sender, _spender, _value);
        return true;
    }
    
    // Returns the amount which _spender is still allowed to withdraw from _owner
    function allowance(address _owner, address _spender) constant returns(uint256){
        return allowed[_owner][_spender];
    }
    
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"endCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"isMinting","outputs":[{"name":"","type":"bool"}],"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":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"changeCrowdsaleRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnTokens","outputs":[],"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":"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":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"}]

60806040526623eb1771268d0060009081556001556002805460ff1916905534801561002a57600080fd5b5060028054741850363833e923c99e555710f889716c5bb46bb10061010060a860020a0319909116179081905560008054610100909204600160a060020a0316815260036020526040902055610922806100856000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100fa578063095ea7b31461018457806318160ddd146101bc5780632095f2d4146101e357806323b872dd146101f85780632a8092df14610222578063313ce567146102375780633eaaf86b146102625780635c07ac9414610277578063664e97041461028f5780636d1b229d146102a457806370a08231146102bc5780638da5cb5b146102dd57806395d89b411461030e578063a9059cbb14610323578063b4427263146100f0578063dd62ed3e14610347575b6100f861036e565b005b34801561010657600080fd5b5061010f61043c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610149578181015183820152602001610131565b50505050905090810190601f1680156101765780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019057600080fd5b506101a8600160a060020a0360043516602435610473565b604080519115158252519081900360200190f35b3480156101c857600080fd5b506101d16104d9565b60408051918252519081900360200190f35b3480156101ef57600080fd5b506100f86104df565b34801561020457600080fd5b506101a8600160a060020a0360043581169060243516604435610507565b34801561022e57600080fd5b506101a8610676565b34801561024357600080fd5b5061024c61067f565b6040805160ff9092168252519081900360200190f35b34801561026e57600080fd5b506101d1610684565b34801561028357600080fd5b506100f860043561068a565b34801561029b57600080fd5b506101d16106ab565b3480156102b057600080fd5b506100f86004356106b1565b3480156102c857600080fd5b506101d1600160a060020a036004351661073f565b3480156102e957600080fd5b506102f261075a565b60408051600160a060020a039092168252519081900360200190f35b34801561031a57600080fd5b5061010f61076e565b34801561032f57600080fd5b506101a8600160a060020a03600435166024356107a5565b34801561035357600080fd5b506101d1600160a060020a036004358116906024351661087f565b60025460009060ff16151560011415610434576000341161038e57600080fd5b6001546103a290349063ffffffff6108aa16565b336000908152600360205260409020549091506103c5908263ffffffff6108d516565b33600090815260036020526040812091909155546103e9908263ffffffff6108d516565b6000908155600254604051600160a060020a0361010090920491909116913480156108fc02929091818181858888f1935050505015801561042e573d6000803e3d6000fd5b50610439565b600080fd5b50565b60408051808201909152600c81527f5449434f455820546f6b656e0000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005490565b6002546101009004600160a060020a031633146104fb57600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906105525750600160a060020a0384166000908152600360205260409020548211155b801561055e5750600082115b151561056957600080fd5b600160a060020a038416600090815260036020526040902054610592908363ffffffff6108e416565b600160a060020a0380861660009081526003602052604080822093909355908516815220546105c7908363ffffffff6108d516565b600160a060020a03808516600090815260036020908152604080832094909455918716815260048252828120338252909152205461060b908363ffffffff6108e416565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600881565b60005481565b6002546101009004600160a060020a031633146106a657600080fd5b600155565b60015481565b6002546101009004600160a060020a031633146106cd57600080fd5b3360009081526003602052604090205481118015906106ec5750600081115b15156106f757600080fd5b60005461070a908263ffffffff6108e416565b60009081553381526003602052604090205461072c908263ffffffff6108e416565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b6002546101009004600160a060020a031681565b60408051808201909152600481527f5449434f00000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604081205482118015906107c45750600082115b15156107cf57600080fd5b336000908152600360205260409020546107ef908363ffffffff6108e416565b3360009081526003602052604080822092909255600160a060020a03851681522054610821908363ffffffff6108d516565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60008282028315806108c657508284828115156108c357fe5b04145b15156108ce57fe5b9392505050565b6000828201838110156108ce57fe5b6000828211156108f057fe5b509003905600a165627a7a72305820bccebd217ced4f260a03bec39e83727849425e3a2b91e57cca65e93d0cf79ed70029

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100fa578063095ea7b31461018457806318160ddd146101bc5780632095f2d4146101e357806323b872dd146101f85780632a8092df14610222578063313ce567146102375780633eaaf86b146102625780635c07ac9414610277578063664e97041461028f5780636d1b229d146102a457806370a08231146102bc5780638da5cb5b146102dd57806395d89b411461030e578063a9059cbb14610323578063b4427263146100f0578063dd62ed3e14610347575b6100f861036e565b005b34801561010657600080fd5b5061010f61043c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610149578181015183820152602001610131565b50505050905090810190601f1680156101765780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019057600080fd5b506101a8600160a060020a0360043516602435610473565b604080519115158252519081900360200190f35b3480156101c857600080fd5b506101d16104d9565b60408051918252519081900360200190f35b3480156101ef57600080fd5b506100f86104df565b34801561020457600080fd5b506101a8600160a060020a0360043581169060243516604435610507565b34801561022e57600080fd5b506101a8610676565b34801561024357600080fd5b5061024c61067f565b6040805160ff9092168252519081900360200190f35b34801561026e57600080fd5b506101d1610684565b34801561028357600080fd5b506100f860043561068a565b34801561029b57600080fd5b506101d16106ab565b3480156102b057600080fd5b506100f86004356106b1565b3480156102c857600080fd5b506101d1600160a060020a036004351661073f565b3480156102e957600080fd5b506102f261075a565b60408051600160a060020a039092168252519081900360200190f35b34801561031a57600080fd5b5061010f61076e565b34801561032f57600080fd5b506101a8600160a060020a03600435166024356107a5565b34801561035357600080fd5b506101d1600160a060020a036004358116906024351661087f565b60025460009060ff16151560011415610434576000341161038e57600080fd5b6001546103a290349063ffffffff6108aa16565b336000908152600360205260409020549091506103c5908263ffffffff6108d516565b33600090815260036020526040812091909155546103e9908263ffffffff6108d516565b6000908155600254604051600160a060020a0361010090920491909116913480156108fc02929091818181858888f1935050505015801561042e573d6000803e3d6000fd5b50610439565b600080fd5b50565b60408051808201909152600c81527f5449434f455820546f6b656e0000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005490565b6002546101009004600160a060020a031633146104fb57600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906105525750600160a060020a0384166000908152600360205260409020548211155b801561055e5750600082115b151561056957600080fd5b600160a060020a038416600090815260036020526040902054610592908363ffffffff6108e416565b600160a060020a0380861660009081526003602052604080822093909355908516815220546105c7908363ffffffff6108d516565b600160a060020a03808516600090815260036020908152604080832094909455918716815260048252828120338252909152205461060b908363ffffffff6108e416565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600881565b60005481565b6002546101009004600160a060020a031633146106a657600080fd5b600155565b60015481565b6002546101009004600160a060020a031633146106cd57600080fd5b3360009081526003602052604090205481118015906106ec5750600081115b15156106f757600080fd5b60005461070a908263ffffffff6108e416565b60009081553381526003602052604090205461072c908263ffffffff6108e416565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b6002546101009004600160a060020a031681565b60408051808201909152600481527f5449434f00000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604081205482118015906107c45750600082115b15156107cf57600080fd5b336000908152600360205260409020546107ef908363ffffffff6108e416565b3360009081526003602052604080822092909255600160a060020a03851681522054610821908363ffffffff6108d516565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60008282028315806108c657508284828115156108c357fe5b04145b15156108ce57fe5b9392505050565b6000828201838110156108ce57fe5b6000828211156108f057fe5b509003905600a165627a7a72305820bccebd217ced4f260a03bec39e83727849425e3a2b91e57cca65e93d0cf79ed70029

Deployed Bytecode Sourcemap

787:4654:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1748:14;:12;:14::i;:::-;787:4654;829:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;829:44: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;829:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4847:193;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4847:193:0;-1:-1:-1;;;;;4847:193:0;;;;;;;;;;;;;;;;;;;;;;;;;3018:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3018:94:0;;;;;;;;;;;;;;;;;;;;2809:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2809:78:0;;;;4215:435;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4215:435:0;-1:-1:-1;;;;;4215:435:0;;;;;;;;;;;;1067:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1067:29:0;;;;933:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;933:34:0;;;;;;;;;;;;;;;;;;;;;;;978:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;978:44:0;;;;2899:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2899:95:0;;;;;1033:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1033:23:0;;;;2038:271;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2038:271:0;;;;;3179:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3179:110:0;-1:-1:-1;;;;;3179:110:0;;;;;1154:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1154:20:0;;;;;;;;-1:-1:-1;;;;;1154:20:0;;;;;;;;;;;;;;884:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;884:38:0;;;;3378:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3378:343:0;-1:-1:-1;;;;;3378:343:0;;;;;;;5135:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5135:129:0;-1:-1:-1;;;;;5135:129:0;;;;;;;;;;2369:426;2419:9;;2497:15;;2419:9;;:17;;:9;:17;2416:368;;;2476:1;2464:9;:13;2456:22;;;;;;2529:4;;2515:19;;:9;;:19;:13;:19;:::i;:::-;2585:10;2576:20;;;;:8;:20;;;;;;2497:37;;-1:-1:-1;2576:32:0;;2497:37;2576:32;:24;:32;:::i;:::-;2562:10;2553:20;;;;:8;:20;;;;;:55;;;;2642:12;:24;;2659:6;2642:24;:16;:24;:::i;:::-;2627:12;:39;;;2685:5;;:25;;-1:-1:-1;;;;;2685:5:0;;;;;;;;;2700:9;2685:25;;;;;2700:9;;2685:25;2627:12;2685:25;2700:9;2685:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2685:25:0;2416:368;;;2763:5;;;2416:368;2369:426;:::o;829:44::-;;;;;;;;;;;;;;;;;;;:::o;4847:193::-;4930:10;4906:4;4922:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4922:29:0;;;;;;;;;;;:38;;;4972;;;;;;;4906:4;;4922:29;;4930:10;;4972:38;;;;;;;;-1:-1:-1;5028:4:0;4847:193;;;;:::o;3018:94::-;3058:7;3088:12;3018:94;:::o;2809:78::-;1326:5;;;;;-1:-1:-1;;;;;1326:5:0;1312:10;:19;1308:65;;1352:5;;;1308:65;2858:9;:17;;-1:-1:-1;;2858:17:0;;;2809:78::o;4215:435::-;-1:-1:-1;;;;;4315:14:0;;4290:4;4315:14;;;:7;:14;;;;;;;;4330:10;4315:26;;;;;;;;:36;-1:-1:-1;4315:36:0;;;:65;;-1:-1:-1;;;;;;4355:15:0;;;;;;:8;:15;;;;;;:25;-1:-1:-1;4355:25:0;4315:65;:79;;;;;4393:1;4384:6;:10;4315:79;4307:88;;;;;;;;-1:-1:-1;;;;;4424:15:0;;;;;;:8;:15;;;;;;:27;;4444:6;4424:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4406:15:0;;;;;;;:8;:15;;;;;;:45;;;;4478:13;;;;;;;:25;;4496:6;4478:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4462:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;4543:14;;;;;:7;:14;;;;;4558:10;4543:26;;;;;;;:38;;4574:6;4543:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4514:14:0;;;;;;;:7;:14;;;;;;;;4529:10;4514:26;;;;;;;;:67;;;;4592:28;;;;;;;;;;;4514:14;;4592:28;;;;;;;;;;;-1:-1:-1;4638:4:0;4215:435;;;;;:::o;1067:29::-;;;;;;:::o;933:34::-;966:1;933:34;:::o;978:44::-;;;;:::o;2899:95::-;1326:5;;;;;-1:-1:-1;;;;;1326:5:0;1312:10;:19;1308:65;;1352:5;;;1308:65;2969:4;:13;2899:95::o;1033:23::-;;;;:::o;2038:271::-;1326:5;;;;;-1:-1:-1;;;;;1326:5:0;1312:10;:19;1308:65;;1352:5;;;1308:65;2119:10;2110:20;;;;:8;:20;;;;;;:30;-1:-1:-1;2110:30:0;;;:44;;;2153:1;2144:6;:10;2110:44;2102:54;;;;;;;;2187:12;;:24;;2204:6;2187:24;:16;:24;:::i;:::-;2172:12;:39;;;2259:10;2250:20;;:8;:20;;;;;;:32;;2275:6;2250:32;:24;:32;:::i;:::-;2236:10;2227:20;;;;:8;:20;;;;;:55;-1:-1:-1;2038:271:0:o;3179:110::-;-1:-1:-1;;;;;3261:16:0;3231:7;3261:16;;;:8;:16;;;;;;;3179:110::o;1154:20::-;;;;;;-1:-1:-1;;;;;1154:20:0;;:::o;884:38::-;;;;;;;;;;;;;;;;;;;:::o;3378:343::-;3472:10;3434:4;3463:20;;;:8;:20;;;;;;:30;-1:-1:-1;3463:30:0;;;:44;;;3506:1;3497:6;:10;3463:44;3455:54;;;;;;;;3556:10;3547:20;;;;:8;:20;;;;;;:32;;3572:6;3547:32;:24;:32;:::i;:::-;3533:10;3524:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3610:13:0;;;;;;:25;;3628:6;3610:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3594:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;3650:33;;;;;;;3594:13;;3659:10;;3650:33;;;;;;;;;;-1:-1:-1;3705:4:0;3378:343;;;;:::o;5135:129::-;-1:-1:-1;;;;;5231:15:0;;;5205:7;5231:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5135:129::o;50:151::-;112:7;140:5;;;159:6;;;:20;;;178:1;173;169;:5;;;;;;;;:10;159:20;152:28;;;;;;194:1;50:151;-1:-1:-1;;;50:151:0:o;604:137::-;666:7;694:5;;;713:6;;;;706:14;;;481:117;543:7;566:6;;;;559:14;;;;-1:-1:-1;587:5:0;;;481:117::o

Swarm Source

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