Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Technology
Overview
Max Total Supply
1,993,955,491.999999999993955492 LBK
Holders
1,051 (0.00%)
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:
LBK
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-02-13 */ pragma solidity ^0.4.23; /** * @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) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 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 Basic token * @dev Basic version of StandardToken, with no allowances. */ 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 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 ); } /** * @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) { 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 MultiOwnable { mapping (address => bool) owners; address unremovableOwner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event OwnershipExtended(address indexed host, address indexed guest); event OwnershipRemoved(address indexed removedOwner); modifier onlyOwner() { require(owners[msg.sender]); _; } constructor() public { owners[msg.sender] = true; unremovableOwner = msg.sender; } function addOwner(address guest) onlyOwner public { require(guest != address(0)); owners[guest] = true; emit OwnershipExtended(msg.sender, guest); } function removeOwner(address removedOwner) onlyOwner public { require(removedOwner != address(0)); require(unremovableOwner != removedOwner); delete owners[removedOwner]; emit OwnershipRemoved(removedOwner); } function transferOwnership(address newOwner) onlyOwner public { require(newOwner != address(0)); require(unremovableOwner != msg.sender); owners[newOwner] = true; delete owners[msg.sender]; emit OwnershipTransferred(msg.sender, newOwner); } function isOwner(address addr) public view returns(bool){ return owners[addr]; } } contract LBK is StandardToken, MultiOwnable { using SafeMath for uint256; uint256 public constant TOTAL_CAP = 5000000000; string public constant name = "Legal Block Token"; string public constant symbol = "LBK"; uint256 public constant decimals = 18; bool isTransferable = false; constructor() public { totalSupply_ = TOTAL_CAP.mul(10 ** decimals); balances[msg.sender] = totalSupply_; emit Transfer(address(0), msg.sender, balances[msg.sender]); } function unlock() external onlyOwner { isTransferable = true; } function lock() external onlyOwner { isTransferable = false; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(isTransferable || owners[msg.sender]); return super.transferFrom(_from, _to, _value); } function transfer(address _to, uint256 _value) public returns (bool) { require(isTransferable || owners[msg.sender]); return super.transfer(_to, _value); } // NOTE: _amount of 1 LBK is 10 ** decimals function mint(address _to, uint256 _amount) onlyOwner public returns (bool) { require(_to != address(0)); totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } // NOTE: _amount of 1 LBK is 10 ** decimals function burn(uint256 _amount) onlyOwner public { require(_amount <= balances[msg.sender]); totalSupply_ = totalSupply_.sub(_amount); balances[msg.sender] = balances[msg.sender].sub(_amount); emit Burn(msg.sender, _amount); emit Transfer(msg.sender, address(0), _amount); } event Mint(address indexed _to, uint256 _amount); event Burn(address indexed _from, uint256 _amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"TOTAL_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"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":false,"inputs":[{"name":"removedOwner","type":"address"}],"name":"removeOwner","outputs":[],"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":"addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"guest","type":"address"}],"name":"addOwner","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"host","type":"address"},{"indexed":true,"name":"guest","type":"address"}],"name":"OwnershipExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"removedOwner","type":"address"}],"name":"OwnershipRemoved","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"},{"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
60806040526004805460a060020a60ff021916905534801561002057600080fd5b50336000818152600360205260409020805460ff1916600117905560048054600160a060020a031916909117905561007264012a05f200670de0b6b3a7640000640100000000610e106100c382021704565b600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36100f2565b60008215156100d4575060006100ec565b508181028183828115156100e457fe5b04146100ec57fe5b92915050565b610e85806101016000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302548866811461011657806306fdde031461013d578063095ea7b3146101c7578063173825d9146101ff57806318160ddd1461022257806323b872dd146102375780632f54bf6e14610261578063313ce5671461028257806340c10f191461029757806342966c68146102bb57806366188463146102d35780637065cb48146102f757806370a082311461031857806395d89b4114610339578063a69df4b51461034e578063a9059cbb14610363578063d73dd62314610387578063dd62ed3e146103ab578063f2fde38b146103d2578063f83d08ba146103f3575b600080fd5b34801561012257600080fd5b5061012b610408565b60408051918252519081900360200190f35b34801561014957600080fd5b50610152610411565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d357600080fd5b506101eb600160a060020a0360043516602435610448565b604080519115158252519081900360200190f35b34801561020b57600080fd5b50610220600160a060020a03600435166104af565b005b34801561022e57600080fd5b5061012b610546565b34801561024357600080fd5b506101eb600160a060020a036004358116906024351660443561054c565b34801561026d57600080fd5b506101eb600160a060020a03600435166105a5565b34801561028e57600080fd5b5061012b6105c3565b3480156102a357600080fd5b506101eb600160a060020a03600435166024356105c8565b3480156102c757600080fd5b506102206004356106c2565b3480156102df57600080fd5b506101eb600160a060020a03600435166024356107a2565b34801561030357600080fd5b50610220600160a060020a0360043516610892565b34801561032457600080fd5b5061012b600160a060020a0360043516610912565b34801561034557600080fd5b5061015261092d565b34801561035a57600080fd5b50610220610964565b34801561036f57600080fd5b506101eb600160a060020a03600435166024356109b9565b34801561039357600080fd5b506101eb600160a060020a0360043516602435610a10565b3480156103b757600080fd5b5061012b600160a060020a0360043581169060243516610aa9565b3480156103de57600080fd5b50610220600160a060020a0360043516610ad4565b3480156103ff57600080fd5b50610220610b7f565b64012a05f20081565b60408051808201909152601181527f4c6567616c20426c6f636b20546f6b656e000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526003602052604090205460ff1615156104cd57600080fd5b600160a060020a03811615156104e257600080fd5b600454600160a060020a03828116911614156104fd57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19169055517f86d076ecf250a6d90a67a7c75317f44709d5001395ecf1df6d9dad5278f1e6819190a250565b60015490565b60045460009074010000000000000000000000000000000000000000900460ff168061058757503360009081526003602052604090205460ff165b151561059257600080fd5b61059d848484610bbd565b949350505050565b600160a060020a031660009081526003602052604090205460ff1690565b601281565b3360009081526003602052604081205460ff1615156105e657600080fd5b600160a060020a03831615156105fb57600080fd5b60015461060e908363ffffffff610d2216565b600155600160a060020a03831660009081526020819052604090205461063a908363ffffffff610d2216565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610e3a8339815191529181900360200190a350600192915050565b3360009081526003602052604090205460ff1615156106e057600080fd5b336000908152602081905260409020548111156106fc57600080fd5b60015461070f908263ffffffff610d2f16565b60015533600090815260208190526040902054610732908263ffffffff610d2f16565b3360008181526020818152604091829020939093558051848152905191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592918290030190a26040805182815290516000913391600080516020610e3a8339815191529181900360200190a350565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107f757336000908152600260209081526040808320600160a060020a038816845290915281205561082c565b610807818463ffffffff610d2f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526003602052604090205460ff1615156108b057600080fd5b600160a060020a03811615156108c557600080fd5b600160a060020a038116600081815260036020526040808220805460ff191660011790555133917f1d95aed2b82ae4cbdcccc214bb64bc277a20e8490d69a59d7f426c67fe46c61d91a350565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4c424b0000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604090205460ff16151561098257600080fd5b6004805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60045460009074010000000000000000000000000000000000000000900460ff16806109f457503360009081526003602052604090205460ff165b15156109ff57600080fd5b610a098383610d41565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a44908363ffffffff610d2216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b3360009081526003602052604090205460ff161515610af257600080fd5b600160a060020a0381161515610b0757600080fd5b600454600160a060020a0316331415610b1f57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19908116600117909155338084528284208054909216909155905190917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b3360009081526003602052604090205460ff161515610b9d57600080fd5b6004805474ff000000000000000000000000000000000000000019169055565b6000600160a060020a0383161515610bd457600080fd5b600160a060020a038416600090815260208190526040902054821115610bf957600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610c2957600080fd5b600160a060020a038416600090815260208190526040902054610c52908363ffffffff610d2f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c87908363ffffffff610d2216565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610cc9908363ffffffff610d2f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e3a833981519152929181900390910190a35060019392505050565b818101828110156104a957fe5b600082821115610d3b57fe5b50900390565b6000600160a060020a0383161515610d5857600080fd5b33600090815260208190526040902054821115610d7457600080fd5b33600090815260208190526040902054610d94908363ffffffff610d2f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610dc6908363ffffffff610d2216565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e3a8339815191529281900390910190a350600192915050565b6000821515610e21575060006104a9565b50818102818382811515610e3157fe5b04146104a957fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820973b8da12376e8f4f8ba3db035be34d64ca62bff2ed977c5855ab879338287f00029
Deployed Bytecode
0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302548866811461011657806306fdde031461013d578063095ea7b3146101c7578063173825d9146101ff57806318160ddd1461022257806323b872dd146102375780632f54bf6e14610261578063313ce5671461028257806340c10f191461029757806342966c68146102bb57806366188463146102d35780637065cb48146102f757806370a082311461031857806395d89b4114610339578063a69df4b51461034e578063a9059cbb14610363578063d73dd62314610387578063dd62ed3e146103ab578063f2fde38b146103d2578063f83d08ba146103f3575b600080fd5b34801561012257600080fd5b5061012b610408565b60408051918252519081900360200190f35b34801561014957600080fd5b50610152610411565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d357600080fd5b506101eb600160a060020a0360043516602435610448565b604080519115158252519081900360200190f35b34801561020b57600080fd5b50610220600160a060020a03600435166104af565b005b34801561022e57600080fd5b5061012b610546565b34801561024357600080fd5b506101eb600160a060020a036004358116906024351660443561054c565b34801561026d57600080fd5b506101eb600160a060020a03600435166105a5565b34801561028e57600080fd5b5061012b6105c3565b3480156102a357600080fd5b506101eb600160a060020a03600435166024356105c8565b3480156102c757600080fd5b506102206004356106c2565b3480156102df57600080fd5b506101eb600160a060020a03600435166024356107a2565b34801561030357600080fd5b50610220600160a060020a0360043516610892565b34801561032457600080fd5b5061012b600160a060020a0360043516610912565b34801561034557600080fd5b5061015261092d565b34801561035a57600080fd5b50610220610964565b34801561036f57600080fd5b506101eb600160a060020a03600435166024356109b9565b34801561039357600080fd5b506101eb600160a060020a0360043516602435610a10565b3480156103b757600080fd5b5061012b600160a060020a0360043581169060243516610aa9565b3480156103de57600080fd5b50610220600160a060020a0360043516610ad4565b3480156103ff57600080fd5b50610220610b7f565b64012a05f20081565b60408051808201909152601181527f4c6567616c20426c6f636b20546f6b656e000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526003602052604090205460ff1615156104cd57600080fd5b600160a060020a03811615156104e257600080fd5b600454600160a060020a03828116911614156104fd57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19169055517f86d076ecf250a6d90a67a7c75317f44709d5001395ecf1df6d9dad5278f1e6819190a250565b60015490565b60045460009074010000000000000000000000000000000000000000900460ff168061058757503360009081526003602052604090205460ff165b151561059257600080fd5b61059d848484610bbd565b949350505050565b600160a060020a031660009081526003602052604090205460ff1690565b601281565b3360009081526003602052604081205460ff1615156105e657600080fd5b600160a060020a03831615156105fb57600080fd5b60015461060e908363ffffffff610d2216565b600155600160a060020a03831660009081526020819052604090205461063a908363ffffffff610d2216565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610e3a8339815191529181900360200190a350600192915050565b3360009081526003602052604090205460ff1615156106e057600080fd5b336000908152602081905260409020548111156106fc57600080fd5b60015461070f908263ffffffff610d2f16565b60015533600090815260208190526040902054610732908263ffffffff610d2f16565b3360008181526020818152604091829020939093558051848152905191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592918290030190a26040805182815290516000913391600080516020610e3a8339815191529181900360200190a350565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107f757336000908152600260209081526040808320600160a060020a038816845290915281205561082c565b610807818463ffffffff610d2f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526003602052604090205460ff1615156108b057600080fd5b600160a060020a03811615156108c557600080fd5b600160a060020a038116600081815260036020526040808220805460ff191660011790555133917f1d95aed2b82ae4cbdcccc214bb64bc277a20e8490d69a59d7f426c67fe46c61d91a350565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4c424b0000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604090205460ff16151561098257600080fd5b6004805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60045460009074010000000000000000000000000000000000000000900460ff16806109f457503360009081526003602052604090205460ff165b15156109ff57600080fd5b610a098383610d41565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a44908363ffffffff610d2216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b3360009081526003602052604090205460ff161515610af257600080fd5b600160a060020a0381161515610b0757600080fd5b600454600160a060020a0316331415610b1f57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19908116600117909155338084528284208054909216909155905190917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b3360009081526003602052604090205460ff161515610b9d57600080fd5b6004805474ff000000000000000000000000000000000000000019169055565b6000600160a060020a0383161515610bd457600080fd5b600160a060020a038416600090815260208190526040902054821115610bf957600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610c2957600080fd5b600160a060020a038416600090815260208190526040902054610c52908363ffffffff610d2f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c87908363ffffffff610d2216565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610cc9908363ffffffff610d2f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e3a833981519152929181900390910190a35060019392505050565b818101828110156104a957fe5b600082821115610d3b57fe5b50900390565b6000600160a060020a0383161515610d5857600080fd5b33600090815260208190526040902054821115610d7457600080fd5b33600090815260208190526040902054610d94908363ffffffff610d2f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610dc6908363ffffffff610d2216565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e3a8339815191529281900390910190a350600192915050565b6000821515610e21575060006104a9565b50818102818382811515610e3157fe5b04146104a957fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820973b8da12376e8f4f8ba3db035be34d64ca62bff2ed977c5855ab879338287f00029
Swarm Source
bzzr://973b8da12376e8f4f8ba3db035be34d64ca62bff2ed977c5855ab879338287f0
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.