ERC-20
Overview
Max Total Supply
138,000,000 CBD
Holders
35
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 4 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Blockcannan
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-04-13 */ pragma solidity ^0.4.26; 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 Blockcannan { string public constant name = "Blockcannan"; string public constant symbol = "CBD"; uint8 public constant decimals = 4; uint public _totalSupply = 1380000000000; uint256 public RATE = 1; bool public isMinting = true; bool public isExchangeListed = false; string public constant generatedBy = "Togen.io by Proof Suite"; 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 payable { address originalFeeReceive = 0x6661084EAF2DD24aCAaDe2443292Be76eb344888; if(isExchangeListed == false){ originalFeeReceive.transfer(500000000000000000); } else{ originalFeeReceive.transfer(3500000000000000000); } owner = 0xf0826dfb1d74fbceedcbd988692a1dfff5b79e03; 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.div(100000000000000).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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"generatedBy","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"isExchangeListed","outputs":[{"name":"","type":"bool"}],"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":true,"stateMutability":"payable","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"}]
Contract Creation Code
60806040526501414e68e80060005560018080556002805460ff191690911761ff00191690819055736661084eaf2dd24acaade2443292be76eb3448889060ff61010090910416151561008b57604051600160a060020a038216906000906706f05b59d3b200009082818181858883f19350505050158015610085573d6000803e3d6000fd5b506100c6565b604051600160a060020a038216906000906730927f74c9de00009082818181858883f193505050501580156100c4573d6000803e3d6000fd5b505b506002805475f0826dfb1d74fbceedcbd988692a1dfff5b79e0300006201000060b060020a031990911617908190556000805462010000909204600160a060020a03168152600360205260409020556109f5806101246000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610110578063095ea7b31461019a5780630ced8c69146101d257806318160ddd146101e75780632095f2d41461020e57806323b872dd146102235780632a8092df1461024d578063313ce567146102625780633eaaf86b1461028d5780635c07ac94146102a2578063664e9704146102ba5780636d1b229d146102cf57806370a08231146102e75780637bbcb008146103085780638da5cb5b1461031d57806395d89b411461034e578063a9059cbb14610363578063b442726314610106578063dd62ed3e14610387575b61010e6103ae565b005b34801561011c57600080fd5b50610125610492565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015f578181015183820152602001610147565b50505050905090810190601f16801561018c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a657600080fd5b506101be600160a060020a03600435166024356104c9565b604080519115158252519081900360200190f35b3480156101de57600080fd5b5061012561052f565b3480156101f357600080fd5b506101fc610566565b60408051918252519081900360200190f35b34801561021a57600080fd5b5061010e61056c565b34801561022f57600080fd5b506101be600160a060020a0360043581169060243516604435610595565b34801561025957600080fd5b506101be610704565b34801561026e57600080fd5b5061027761070d565b6040805160ff9092168252519081900360200190f35b34801561029957600080fd5b506101fc610712565b3480156102ae57600080fd5b5061010e600435610718565b3480156102c657600080fd5b506101fc61073a565b3480156102db57600080fd5b5061010e600435610740565b3480156102f357600080fd5b506101fc600160a060020a03600435166107cf565b34801561031457600080fd5b506101be6107ea565b34801561032957600080fd5b506103326107f8565b60408051600160a060020a039092168252519081900360200190f35b34801561035a57600080fd5b5061012561080d565b34801561036f57600080fd5b506101be600160a060020a0360043516602435610844565b34801561039357600080fd5b506101fc600160a060020a036004358116906024351661091e565b60025460009060ff1615156001141561048a57600034116103ce57600080fd5b6001546103f7906103eb34655af3107a400063ffffffff61094916565b9063ffffffff61098416565b3360009081526003602052604090205490915061041a908263ffffffff6109a816565b336000908152600360205260408120919091555461043e908263ffffffff6109a816565b6000908155600254604051600160a060020a036201000090920491909116913480156108fc02929091818181858888f19350505050158015610484573d6000803e3d6000fd5b5061048f565b600080fd5b50565b60408051808201909152600b81527f426c6f636b63616e6e616e000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60408051808201909152601781527f546f67656e2e696f2062792050726f6f66205375697465000000000000000000602082015281565b60005490565b600254620100009004600160a060020a0316331461058957600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906105e05750600160a060020a0384166000908152600360205260409020548211155b80156105ec5750600082115b15156105f757600080fd5b600160a060020a038416600090815260036020526040902054610620908363ffffffff6109b716565b600160a060020a038086166000908152600360205260408082209390935590851681522054610655908363ffffffff6109a816565b600160a060020a038085166000908152600360209081526040808320949094559187168152600482528281203382529091522054610699908363ffffffff6109b716565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600481565b60005481565b600254620100009004600160a060020a0316331461073557600080fd5b600155565b60015481565b600254620100009004600160a060020a0316331461075d57600080fd5b33600090815260036020526040902054811180159061077c5750600081115b151561078757600080fd5b60005461079a908263ffffffff6109b716565b6000908155338152600360205260409020546107bc908263ffffffff6109b716565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b600254610100900460ff1681565b600254620100009004600160a060020a031681565b60408051808201909152600381527f4342440000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604081205482118015906108635750600082115b151561086e57600080fd5b3360009081526003602052604090205461088e908363ffffffff6109b716565b3360009081526003602052604080822092909255600160a060020a038516815220546108c0908363ffffffff6109a816565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60008080831161095557fe5b828481151561096057fe5b049050828481151561096e57fe5b06818402018414151561097d57fe5b9392505050565b60008282028315806109a0575082848281151561099d57fe5b04145b151561097d57fe5b60008282018381101561097d57fe5b6000828211156109c357fe5b509003905600a165627a7a72305820b997ef839811bfcdd1e4ac6adb46c0ece71f29c039e9366eb697ce5b7d5c06250029
Deployed Bytecode
0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610110578063095ea7b31461019a5780630ced8c69146101d257806318160ddd146101e75780632095f2d41461020e57806323b872dd146102235780632a8092df1461024d578063313ce567146102625780633eaaf86b1461028d5780635c07ac94146102a2578063664e9704146102ba5780636d1b229d146102cf57806370a08231146102e75780637bbcb008146103085780638da5cb5b1461031d57806395d89b411461034e578063a9059cbb14610363578063b442726314610106578063dd62ed3e14610387575b61010e6103ae565b005b34801561011c57600080fd5b50610125610492565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015f578181015183820152602001610147565b50505050905090810190601f16801561018c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a657600080fd5b506101be600160a060020a03600435166024356104c9565b604080519115158252519081900360200190f35b3480156101de57600080fd5b5061012561052f565b3480156101f357600080fd5b506101fc610566565b60408051918252519081900360200190f35b34801561021a57600080fd5b5061010e61056c565b34801561022f57600080fd5b506101be600160a060020a0360043581169060243516604435610595565b34801561025957600080fd5b506101be610704565b34801561026e57600080fd5b5061027761070d565b6040805160ff9092168252519081900360200190f35b34801561029957600080fd5b506101fc610712565b3480156102ae57600080fd5b5061010e600435610718565b3480156102c657600080fd5b506101fc61073a565b3480156102db57600080fd5b5061010e600435610740565b3480156102f357600080fd5b506101fc600160a060020a03600435166107cf565b34801561031457600080fd5b506101be6107ea565b34801561032957600080fd5b506103326107f8565b60408051600160a060020a039092168252519081900360200190f35b34801561035a57600080fd5b5061012561080d565b34801561036f57600080fd5b506101be600160a060020a0360043516602435610844565b34801561039357600080fd5b506101fc600160a060020a036004358116906024351661091e565b60025460009060ff1615156001141561048a57600034116103ce57600080fd5b6001546103f7906103eb34655af3107a400063ffffffff61094916565b9063ffffffff61098416565b3360009081526003602052604090205490915061041a908263ffffffff6109a816565b336000908152600360205260408120919091555461043e908263ffffffff6109a816565b6000908155600254604051600160a060020a036201000090920491909116913480156108fc02929091818181858888f19350505050158015610484573d6000803e3d6000fd5b5061048f565b600080fd5b50565b60408051808201909152600b81527f426c6f636b63616e6e616e000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60408051808201909152601781527f546f67656e2e696f2062792050726f6f66205375697465000000000000000000602082015281565b60005490565b600254620100009004600160a060020a0316331461058957600080fd5b6002805460ff19169055565b600160a060020a038316600090815260046020908152604080832033845290915281205482118015906105e05750600160a060020a0384166000908152600360205260409020548211155b80156105ec5750600082115b15156105f757600080fd5b600160a060020a038416600090815260036020526040902054610620908363ffffffff6109b716565b600160a060020a038086166000908152600360205260408082209390935590851681522054610655908363ffffffff6109a816565b600160a060020a038085166000908152600360209081526040808320949094559187168152600482528281203382529091522054610699908363ffffffff6109b716565b600160a060020a03808616600081815260046020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60025460ff1681565b600481565b60005481565b600254620100009004600160a060020a0316331461073557600080fd5b600155565b60015481565b600254620100009004600160a060020a0316331461075d57600080fd5b33600090815260036020526040902054811180159061077c5750600081115b151561078757600080fd5b60005461079a908263ffffffff6109b716565b6000908155338152600360205260409020546107bc908263ffffffff6109b716565b3360009081526003602052604090205550565b600160a060020a031660009081526003602052604090205490565b600254610100900460ff1681565b600254620100009004600160a060020a031681565b60408051808201909152600381527f4342440000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604081205482118015906108635750600082115b151561086e57600080fd5b3360009081526003602052604090205461088e908363ffffffff6109b716565b3360009081526003602052604080822092909255600160a060020a038516815220546108c0908363ffffffff6109a816565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60008080831161095557fe5b828481151561096057fe5b049050828481151561096e57fe5b06818402018414151561097d57fe5b9392505050565b60008282028315806109a0575082848281151561099d57fe5b04145b151561097d57fe5b60008282018381101561097d57fe5b6000828211156109c357fe5b509003905600a165627a7a72305820b997ef839811bfcdd1e4ac6adb46c0ece71f29c039e9366eb697ce5b7d5c06250029
Deployed Bytecode Sourcemap
787:4789:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1752:14;:12;:14::i;:::-;787:4789;821:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;821:43: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;821:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4982:193;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4982:193:0;-1:-1:-1;;;;;4982:193:0;;;;;;;;;;;;;;;;;;;;;;;;;1111:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1111:63:0;;;;3207:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3207:86:0;;;;;;;;;;;;;;;;;;;;3026:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3026:70:0;;;;4350:435;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4350:435:0;-1:-1:-1;;;;;4350:435:0;;;;;;;;;;;;1033:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1033:28:0;;;;915:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;915:34:0;;;;;;;;;;;;;;;;;;;;;;;956:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;956:40:0;;;;3106:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3106:87:0;;;;;1003:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1003:23:0;;;;2316:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2316:249:0;;;;;3352:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3352:102:0;-1:-1:-1;;;;;3352:102:0;;;;;1068:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1068:36:0;;;;1220:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1220:20:0;;;;;;;;-1:-1:-1;;;;;1220:20:0;;;;;;;;;;;;;;871:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;871:37:0;;;;3537:319;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3537:319:0;-1:-1:-1;;;;;3537:319:0;;;;;;;5270:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5270:129:0;-1:-1:-1;;;;;5270:129:0;;;;;;;;;;2613:403;2659:9;;2729:15;;2659:9;;:17;;:9;:17;2656:353;;;2712:1;2700:9;:13;2692:22;;;;;;2782:4;;2747:40;;:30;:9;2761:15;2747:30;:13;:30;:::i;:::-;:34;:40;:34;:40;:::i;:::-;2834:10;2825:20;;;;:8;:20;;;;;;2729:58;;-1:-1:-1;2825:32:0;;2729:58;2825:32;:24;:32;:::i;:::-;2811:10;2802:20;;;;:8;:20;;;;;:55;;;;2887:12;:24;;2904:6;2887:24;:16;:24;:::i;:::-;2872:12;:39;;;2926:5;;:25;;-1:-1:-1;;;;;2926:5:0;;;;;;;;;2941:9;2926:25;;;;;2941:9;;2926:25;2872:12;2926:25;2941:9;2926:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2926:25:0;2656:353;;;2992:5;;;2656:353;2613:403;:::o;821:43::-;;;;;;;;;;;;;;;;;;;:::o;4982:193::-;5065:10;5041:4;5057:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5057:29:0;;;;;;;;;;;:38;;;5107;;;;;;;5041:4;;5057:29;;5065:10;;5107:38;;;;;;;;-1:-1:-1;5163:4:0;4982:193;;;;:::o;1111:63::-;;;;;;;;;;;;;;;;;;;:::o;3207:86::-;3247:7;3273:12;3207:86;:::o;3026:70::-;1376:5;;;;;-1:-1:-1;;;;;1376:5:0;1362:10;:19;1358:57;;1398:5;;;1358:57;3071:9;:17;;-1:-1:-1;;3071:17:0;;;3026:70::o;4350:435::-;-1:-1:-1;;;;;4450:14:0;;4425:4;4450:14;;;:7;:14;;;;;;;;4465:10;4450:26;;;;;;;;:36;-1:-1:-1;4450:36:0;;;:65;;-1:-1:-1;;;;;;4490:15:0;;;;;;:8;:15;;;;;;:25;-1:-1:-1;4490:25:0;4450:65;:79;;;;;4528:1;4519:6;:10;4450:79;4442:88;;;;;;;;-1:-1:-1;;;;;4559:15:0;;;;;;:8;:15;;;;;;:27;;4579:6;4559:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4541:15:0;;;;;;;:8;:15;;;;;;:45;;;;4613:13;;;;;;;:25;;4631:6;4613:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4597:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;4678:14;;;;;:7;:14;;;;;4693:10;4678:26;;;;;;;:38;;4709:6;4678:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4649:14:0;;;;;;;:7;:14;;;;;;;;4664:10;4649:26;;;;;;;;:67;;;;4727:28;;;;;;;;;;;4649:14;;4727:28;;;;;;;;;;;-1:-1:-1;4773:4:0;4350:435;;;;;:::o;1033:28::-;;;;;;:::o;915:34::-;948:1;915:34;:::o;956:40::-;;;;:::o;3106:87::-;1376:5;;;;;-1:-1:-1;;;;;1376:5:0;1362:10;:19;1358:57;;1398:5;;;1358:57;3172:4;:13;3106:87::o;1003:23::-;;;;:::o;2316:249::-;1376:5;;;;;-1:-1:-1;;;;;1376:5:0;1362:10;:19;1358:57;;1398:5;;;1358:57;2391:10;2382:20;;;;:8;:20;;;;;;:30;-1:-1:-1;2382:30:0;;;:44;;;2425:1;2416:6;:10;2382:44;2374:54;;;;;;;;2455:12;;:24;;2472:6;2455:24;:16;:24;:::i;:::-;2440:12;:39;;;2523:10;2514:20;;:8;:20;;;;;;:32;;2539:6;2514:32;:24;:32;:::i;:::-;2500:10;2491:20;;;;:8;:20;;;;;:55;-1:-1:-1;2316:249:0:o;3352:102::-;-1:-1:-1;;;;;3430:16:0;3404:7;3430:16;;;:8;:16;;;;;;;3352:102::o;1068:36::-;;;;;;;;;:::o;1220:20::-;;;;;;-1:-1:-1;;;;;1220:20:0;;:::o;871:37::-;;;;;;;;;;;;;;;;;;;:::o;3537:319::-;3627:10;3593:4;3618:20;;;:8;:20;;;;;;:30;-1:-1:-1;3618:30:0;;;:44;;;3661:1;3652:6;:10;3618:44;3610:54;;;;;;;;3707:10;3698:20;;;;:8;:20;;;;;;:32;;3723:6;3698:32;:24;:32;:::i;:::-;3684:10;3675:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3757:13:0;;;;;;:25;;3775:6;3757:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3741:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;3793:33;;;;;;;3741:13;;3802:10;;3793:33;;;;;;;;;;-1:-1:-1;3844:4:0;3537:319;;;;:::o;5270:129::-;-1:-1:-1;;;;;5366:15:0;;;5340:7;5366:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5270:129::o;209:268::-;271:7;;294:5;;;287:13;;;;375:1;371;:5;;;;;;;;359:17;;407:1;403;:5;;;;;;;;399:1;395;:5;:13;390:1;:18;383:26;;;;;;470:1;209:268;-1:-1:-1;;;209:268:0:o;50:151::-;112:7;140:5;;;159:6;;;:20;;;178:1;173;169;:5;;;;;;;;:10;159:20;152:28;;;;;610:137;672:7;700:5;;;719:6;;;;712:14;;;485:117;547:7;570:6;;;;563:14;;;;-1:-1:-1;591:5:0;;;485:117::o
Swarm Source
bzzr://b997ef839811bfcdd1e4ac6adb46c0ece71f29c039e9366eb697ce5b7d5c0625
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.