ERC-20
Overview
Max Total Supply
50,000,000 LEF
Holders
2,129
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ICoinToken
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-29 */ pragma solidity ^0.4.23; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } /** * @dev Allows the current owner to relinquish control of the contract. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { 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 Approval(address indexed owner, address indexed spender, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { require((_value == 0 ) || (allowed[msg.sender][_spender] == 0)); 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) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint 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 ICoinToken is StandardToken{ string public constant name = "lightning exchange finance"; // solium-disable-line uppercase string public constant symbol = "LEF"; // solium-disable-line uppercase uint8 public constant decimals = 18; // solium-disable-line uppercase uint256 public constant INITIAL_SUPPLY = 50000000000000000000000000; //这里是发行总量 * 精度 /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() ICoinToken() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; emit Transfer(0x0, msg.sender, INITIAL_SUPPLY); } /** * The fallback function. */ function() payable public { revert(); } }
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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"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"}]
Contract Creation Code
608060405234801561001057600080fd5b506a295be96e64066972000000600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a361087c806100786000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103b3565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b9565b3480156101dd57600080fd5b50610195610530565b3480156101f257600080fd5b506101fb61053f565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610544565b34801561024157600080fd5b50610195600160a060020a0360043516610634565b34801561026257600080fd5b506100d361064f565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610686565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610767565b3480156102bf57600080fd5b50610195600160a060020a0360043581169060243516610800565b60408051808201909152601a81527f6c696768746e696e672065786368616e67652066696e616e6365000000000000602082015281565b60008115806103415750336000908152600260209081526040808320600160a060020a0387168452909152902054155b151561034c57600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b6000600160a060020a03831615156103d057600080fd5b600160a060020a0384166000908152602081905260409020548211156103f557600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561042557600080fd5b600160a060020a03841660009081526020819052604090205461044e908363ffffffff61082b16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610483908363ffffffff61083d16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546104c5908363ffffffff61082b16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a295be96e6406697200000081565b601281565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561059957336000908152600260209081526040808320600160a060020a03881684529091528120556105ce565b6105a9818463ffffffff61082b16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4c45460000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561069d57600080fd5b336000908152602081905260409020548211156106b957600080fd5b336000908152602081905260409020546106d9908363ffffffff61082b16565b3360009081526020819052604080822092909255600160a060020a0385168152205461070b908363ffffffff61083d16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461079b908363ffffffff61083d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561083757fe5b50900390565b8181018281101561084a57fe5b929150505600a165627a7a7230582041e99fc31ec7a363f20f6f7f11e28299f44799ebfd4414e7996a83a6793d02ea0029
Deployed Bytecode
0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103b3565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b9565b3480156101dd57600080fd5b50610195610530565b3480156101f257600080fd5b506101fb61053f565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610544565b34801561024157600080fd5b50610195600160a060020a0360043516610634565b34801561026257600080fd5b506100d361064f565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610686565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610767565b3480156102bf57600080fd5b50610195600160a060020a0360043581169060243516610800565b60408051808201909152601a81527f6c696768746e696e672065786368616e67652066696e616e6365000000000000602082015281565b60008115806103415750336000908152600260209081526040808320600160a060020a0387168452909152902054155b151561034c57600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b6000600160a060020a03831615156103d057600080fd5b600160a060020a0384166000908152602081905260409020548211156103f557600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561042557600080fd5b600160a060020a03841660009081526020819052604090205461044e908363ffffffff61082b16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610483908363ffffffff61083d16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546104c5908363ffffffff61082b16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a295be96e6406697200000081565b601281565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561059957336000908152600260209081526040808320600160a060020a03881684529091528120556105ce565b6105a9818463ffffffff61082b16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4c45460000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561069d57600080fd5b336000908152602081905260409020548211156106b957600080fd5b336000908152602081905260409020546106d9908363ffffffff61082b16565b3360009081526020819052604080822092909255600160a060020a0385168152205461070b908363ffffffff61083d16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461079b908363ffffffff61083d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561083757fe5b50900390565b8181018281101561084a57fe5b929150505600a165627a7a7230582041e99fc31ec7a363f20f6f7f11e28299f44799ebfd4414e7996a83a6793d02ea0029
Deployed Bytecode Sourcemap
7969:699:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8653:8;;;8008:58;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8008:58: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;8008:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5786:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5786:244:0;-1:-1:-1;;;;;5786:244:0;;;;;;;;;;;;;;;;;;;;;;;;;3294:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3294:79:0;;;;;;;;;;;;;;;;;;;;4761:419;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4761:419:0;-1:-1:-1;;;;;4761:419:0;;;;;;;;;;;;8246:67;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8246:67:0;;;;8175:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8175:35:0;;;;;;;;;;;;;;;;;;;;;;;7589:375;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7589:375:0;-1:-1:-1;;;;;7589:375:0;;;;;;;4016:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4016:95:0;-1:-1:-1;;;;;4016:95:0;;;;;8102:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8102:37:0;;;;3520:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3520:301:0;-1:-1:-1;;;;;3520:301:0;;;;;;;6895:253;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6895:253:0;-1:-1:-1;;;;;6895:253:0;;;;;;;6337:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6337:122:0;-1:-1:-1;;;;;6337:122:0;;;;;;;;;;8008:58;;;;;;;;;;;;;;;;;;;:::o;5786:244::-;5853:4;5871:11;;;5870:54;;-1:-1:-1;5897:10:0;5889:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5889:29:0;;;;;;;;;;:34;5870:54;5862:63;;;;;;;;5936:10;5928:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5928:29:0;;;;;;;;;;;;:38;;;5974;;;;;;;5928:29;;5936:10;5974:38;;;;;;;;;;;-1:-1:-1;6022:4:0;5786:244;;;;:::o;3294:79::-;3357:12;;3294:79;:::o;4761:419::-;4844:4;-1:-1:-1;;;;;4861:17:0;;;;4853:26;;;;;;-1:-1:-1;;;;;4900:15:0;;:8;:15;;;;;;;;;;;4890:25;;;4882:34;;;;;;-1:-1:-1;;;;;4937:14:0;;;;;;:7;:14;;;;;;;;4952:10;4937:26;;;;;;;;4927:36;;;4919:45;;;;;;-1:-1:-1;;;;;4985:15:0;;:8;:15;;;;;;;;;;;:27;;5005:6;4985:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4967:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5031:13;;;;;;;:25;;5049:6;5031:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5015:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5088:14;;;;;:7;:14;;;;;5103:10;5088:26;;;;;;;:38;;5119:6;5088:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5059:14:0;;;;;;;:7;:14;;;;;;;;5074:10;5059:26;;;;;;;;:67;;;;5134:28;;;;;;;;;;;5059:14;;5134:28;;;;;;;;;;;-1:-1:-1;5172:4:0;4761:419;;;;;:::o;8246:67::-;8287:26;8246:67;:::o;8175:35::-;8208:2;8175:35;:::o;7589:375::-;7706:10;7673:4;7698:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7698:29:0;;;;;;;;;;7734:27;;;7730:148;;;7774:10;7798:1;7766:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7766:29:0;;;;;;;;;:33;7730:148;;;7844:30;:8;7857:16;7844:30;:12;:30;:::i;:::-;7820:10;7812:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7812:29:0;;;;;;;;;:62;7730:148;7894:10;7916:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7885:61:0;;7916:29;;;;;;;;;;;7885:61;;;;;;;;;7894:10;7885:61;;;;;;;;;;;-1:-1:-1;7956:4:0;;7589:375;-1:-1:-1;;;7589:375:0:o;4016:95::-;-1:-1:-1;;;;;4091:16:0;4072:7;4091:16;;;;;;;;;;;;4016:95::o;8102:37::-;;;;;;;;;;;;;;;;;;;:::o;3520:301::-;3583:4;-1:-1:-1;;;;;3600:17:0;;;;3592:26;;;;;;3648:10;3639:8;:20;;;;;;;;;;;3629:30;;;3621:39;;;;;;3695:10;3686:8;:20;;;;;;;;;;;:32;;3711:6;3686:32;:24;:32;:::i;:::-;3672:10;3663:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3737:13:0;;;;;;:25;;3755:6;3737:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3721:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3770:33;;;;;;;3721:13;;3779:10;;3770:33;;;;;;;;;;-1:-1:-1;3813:4:0;3520:301;;;;:::o;6895:253::-;7023:10;6973:4;7015:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7015:29:0;;;;;;;;;;:46;;7049:11;7015:46;:33;:46;:::i;:::-;6991:10;6983:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6983:29:0;;;;;;;;;;;;:78;;;7069:61;;;;;;6983:29;;7069:61;;;;;;;;;;;-1:-1:-1;7140:4:0;6895:253;;;;:::o;6337:122::-;-1:-1:-1;;;;;6430:15:0;;;6411:7;6430:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6337:122::o;1969:103::-;2027:7;2046:6;;;;2039:14;;;;-1:-1:-1;2063:5:0;;;1969:103::o;2129:113::-;2205:5;;;2220:6;;;;2213:14;;;;2129:113;;;;:::o
Swarm Source
bzzr://41e99fc31ec7a363f20f6f7f11e28299f44799ebfd4414e7996a83a6793d02ea
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.