ERC-20
Overview
Max Total Supply
8,059.5 WIT
Holders
111
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WitCoin
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-09 */ pragma solidity ^0.4.13; contract ERC20Basic { function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant 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 ERC223 is ERC20 { function name() constant returns (string _name); function symbol() constant returns (string _symbol); function decimals() constant returns (uint8 _decimals); function transfer(address to, uint256 value, bytes data) returns (bool); } contract ERC223ReceivingContract { function tokenFallback(address _from, uint256 _value, bytes _data); } contract KnowledgeTokenInterface is ERC223{ event Mint(address indexed to, uint256 amount); function changeMinter(address newAddress) returns (bool); function mint(address _to, uint256 _amount) returns (bool); } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { 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) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } 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; } } contract ERC20BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 public 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)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); 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 constant returns (uint256 balance) { return balances[_owner]; } function totalSupply() constant returns (uint256 _totalSupply) { return totalSupply; } } contract ERC20Token is ERC20, ERC20BasicToken { mapping (address => mapping (address => uint256)) 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)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); 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; 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 constant returns (uint256 remaining) { return allowed[_owner][_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 */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract ERC223Token is ERC223, ERC20Token { using SafeMath for uint256; string public name; string public symbol; uint8 public decimals; // Function to access name of token . function name() constant returns (string _name) { return name; } // Function to access symbol of token . function symbol() constant returns (string _symbol) { return symbol; } // Function to access decimals of token . function decimals() constant returns (uint8 _decimals) { return decimals; } // Function that is called when a user or another contract wants to transfer funds . function transfer(address _to, uint256 _value, bytes _data) returns (bool success) { if (isContract(_to)) { ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, _data); } return super.transfer(_to, _value); } // Standard function transfer similar to ERC20 transfer with no _data . // Added due to backwards compatibility reasons . function transfer(address _to, uint256 _value) returns (bool success) { if (isContract(_to)) { bytes memory empty; ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, empty); } return super.transfer(_to, _value); } //assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private returns (bool is_contract) { uint length; assembly { length := extcodesize(_addr) } return (length > 0); } } contract KnowledgeToken is KnowledgeTokenInterface, Ownable, ERC223Token { address public minter; modifier onlyMinter() { // Only minter is allowed to proceed. require (msg.sender == minter); _; } function mint(address _to, uint256 _amount) onlyMinter public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Transfer(0x0, _to, _amount); Mint(_to, _amount); return true; } function changeMinter(address newAddress) public onlyOwner returns (bool) { minter = newAddress; } } contract WitCoin is KnowledgeToken{ function WitCoin() { totalSupply = 0; name = "Witcoin"; symbol = "WIT"; decimals = 8; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","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
606060405234156200001057600080fd5b5b5b60008054600160a060020a03191633600160a060020a03161790555b600060025560408051908101604052600781527f576974636f696e00000000000000000000000000000000000000000000000000602082015260049080516200007c929160200190620000db565b5060408051908101604052600381527f574954000000000000000000000000000000000000000000000000000000000060208201526005908051620000c6929160200190620000db565b506006805460ff191660081790555b62000185565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011e57805160ff19168380011785556200014e565b828001600101855582156200014e579182015b828111156200014e57825182559160200191906001019062000131565b5b506200015d92915062000161565b5090565b6200018291905b808211156200015d576000815560010162000168565b5090565b90565b610f9080620001956000396000f300606060405236156100d55763ffffffff60e060020a60003504166306fdde0381146100da5780630754617214610165578063095ea7b31461019457806318160ddd146101ca57806323b872dd146101ef5780632c4d4d181461022b578063313ce5671461025e57806340c10f191461028757806366188463146102bd57806370a08231146102f35780638da5cb5b1461032457806395d89b4114610353578063a9059cbb146103de578063be45fd6214610414578063d73dd6231461048d578063dd62ed3e146104c3578063f2fde38b146104fa575b600080fd5b34156100e557600080fd5b6100ed61051b565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012a5780820151818401525b602001610111565b50505050905090810190601f1680156101575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017057600080fd5b6101786105c4565b604051600160a060020a03909116815260200160405180910390f35b341561019f57600080fd5b6101b6600160a060020a03600435166024356105d8565b604051901515815260200160405180910390f35b34156101d557600080fd5b6101dd610645565b60405190815260200160405180910390f35b34156101fa57600080fd5b6101b6600160a060020a036004358116906024351660443561064c565b604051901515815260200160405180910390f35b341561023657600080fd5b6101b6600160a060020a0360043516610778565b604051901515815260200160405180910390f35b341561026957600080fd5b6102716107c8565b60405160ff909116815260200160405180910390f35b341561029257600080fd5b6101b6600160a060020a03600435166024356107d2565b604051901515815260200160405180910390f35b34156102c857600080fd5b6101b6600160a060020a03600435166024356108ce565b604051901515815260200160405180910390f35b34156102fe57600080fd5b6101dd600160a060020a03600435166109ca565b60405190815260200160405180910390f35b341561032f57600080fd5b6101786109e9565b604051600160a060020a03909116815260200160405180910390f35b341561035e57600080fd5b6100ed6109f8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012a5780820151818401525b602001610111565b50505050905090810190601f1680156101575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103e957600080fd5b6101b6600160a060020a0360043516602435610aa1565b604051901515815260200160405180910390f35b341561041f57600080fd5b6101b660048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610bb495505050505050565b604051901515815260200160405180910390f35b341561049857600080fd5b6101b6600160a060020a0360043516602435610cbe565b604051901515815260200160405180910390f35b34156104ce57600080fd5b6101dd600160a060020a0360043581169060243516610d63565b60405190815260200160405180910390f35b341561050557600080fd5b610519600160a060020a0360043516610d90565b005b610523610f40565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b505050505090505b90565b6006546101009004600160a060020a031681565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6002545b90565b600080600160a060020a038416151561066457600080fd5b50600160a060020a038085166000818152600360209081526040808320339095168352938152838220549282526001905291909120546106aa908463ffffffff610e2916565b600160a060020a0380871660009081526001602052604080822093909355908616815220546106df908463ffffffff610e4016565b600160a060020a038516600090815260016020526040902055610708818463ffffffff610e2916565b600160a060020a03808716600081815260036020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b6000805433600160a060020a0390811691161461079457600080fd5b6006805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a038516021790555b5b919050565b60065460ff165b90565b60065460009033600160a060020a0390811661010090920416146107f557600080fd5b600254610808908363ffffffff610e4016565b600255600160a060020a038316600090815260016020526040902054610834908363ffffffff610e4016565b600160a060020a0384166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a382600160a060020a03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858360405190815260200160405180910390a25060015b5b92915050565b600160a060020a0333811660009081526003602090815260408083209386168352929052908120548083111561092b57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610962565b61093b818463ffffffff610e2916565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b600054600160a060020a031681565b610a00610f40565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b505050505090505b90565b6000610aab610f40565b6000610ab685610e5a565b15610b9f575083600160a060020a03811663c0ee0b8a3386856040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b3d5780820151818401525b602001610b24565b50505050905090810190601f168015610b6a5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610b8a57600080fd5b6102c65a03f11515610b9b57600080fd5b5050505b610ba98585610e69565b92505b505092915050565b600080610bc085610e5a565b15610ca9575083600160a060020a03811663c0ee0b8a3386866040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c475780820151818401525b602001610c2e565b50505050905090810190601f168015610c745780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610c9457600080fd5b6102c65a03f11515610ca557600080fd5b5050505b610cb38585610e69565b91505b509392505050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610cf6908363ffffffff610e4016565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60005433600160a060020a03908116911614610dab57600080fd5b600160a060020a0381161515610dc057600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600082821115610e3557fe5b508082035b92915050565b600082820183811015610e4f57fe5b8091505b5092915050565b6000813b908111905b50919050565b6000600160a060020a0383161515610e8057600080fd5b600160a060020a033316600090815260016020526040902054610ea9908363ffffffff610e2916565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ede908363ffffffff610e4016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b60206040519081016040526000815290565b602060405190810160405260008152905600a165627a7a72305820ab2dca2afbaea5cd2f7373beac905099432a12b62330529165ae2148e0fff82f0029
Deployed Bytecode
0x606060405236156100d55763ffffffff60e060020a60003504166306fdde0381146100da5780630754617214610165578063095ea7b31461019457806318160ddd146101ca57806323b872dd146101ef5780632c4d4d181461022b578063313ce5671461025e57806340c10f191461028757806366188463146102bd57806370a08231146102f35780638da5cb5b1461032457806395d89b4114610353578063a9059cbb146103de578063be45fd6214610414578063d73dd6231461048d578063dd62ed3e146104c3578063f2fde38b146104fa575b600080fd5b34156100e557600080fd5b6100ed61051b565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012a5780820151818401525b602001610111565b50505050905090810190601f1680156101575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017057600080fd5b6101786105c4565b604051600160a060020a03909116815260200160405180910390f35b341561019f57600080fd5b6101b6600160a060020a03600435166024356105d8565b604051901515815260200160405180910390f35b34156101d557600080fd5b6101dd610645565b60405190815260200160405180910390f35b34156101fa57600080fd5b6101b6600160a060020a036004358116906024351660443561064c565b604051901515815260200160405180910390f35b341561023657600080fd5b6101b6600160a060020a0360043516610778565b604051901515815260200160405180910390f35b341561026957600080fd5b6102716107c8565b60405160ff909116815260200160405180910390f35b341561029257600080fd5b6101b6600160a060020a03600435166024356107d2565b604051901515815260200160405180910390f35b34156102c857600080fd5b6101b6600160a060020a03600435166024356108ce565b604051901515815260200160405180910390f35b34156102fe57600080fd5b6101dd600160a060020a03600435166109ca565b60405190815260200160405180910390f35b341561032f57600080fd5b6101786109e9565b604051600160a060020a03909116815260200160405180910390f35b341561035e57600080fd5b6100ed6109f8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012a5780820151818401525b602001610111565b50505050905090810190601f1680156101575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103e957600080fd5b6101b6600160a060020a0360043516602435610aa1565b604051901515815260200160405180910390f35b341561041f57600080fd5b6101b660048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610bb495505050505050565b604051901515815260200160405180910390f35b341561049857600080fd5b6101b6600160a060020a0360043516602435610cbe565b604051901515815260200160405180910390f35b34156104ce57600080fd5b6101dd600160a060020a0360043581169060243516610d63565b60405190815260200160405180910390f35b341561050557600080fd5b610519600160a060020a0360043516610d90565b005b610523610f40565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b505050505090505b90565b6006546101009004600160a060020a031681565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6002545b90565b600080600160a060020a038416151561066457600080fd5b50600160a060020a038085166000818152600360209081526040808320339095168352938152838220549282526001905291909120546106aa908463ffffffff610e2916565b600160a060020a0380871660009081526001602052604080822093909355908616815220546106df908463ffffffff610e4016565b600160a060020a038516600090815260016020526040902055610708818463ffffffff610e2916565b600160a060020a03808716600081815260036020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b6000805433600160a060020a0390811691161461079457600080fd5b6006805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a038516021790555b5b919050565b60065460ff165b90565b60065460009033600160a060020a0390811661010090920416146107f557600080fd5b600254610808908363ffffffff610e4016565b600255600160a060020a038316600090815260016020526040902054610834908363ffffffff610e4016565b600160a060020a0384166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a382600160a060020a03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858360405190815260200160405180910390a25060015b5b92915050565b600160a060020a0333811660009081526003602090815260408083209386168352929052908120548083111561092b57600160a060020a033381166000908152600360209081526040808320938816835292905290812055610962565b61093b818463ffffffff610e2916565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b600054600160a060020a031681565b610a00610f40565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b505050505090505b90565b6000610aab610f40565b6000610ab685610e5a565b15610b9f575083600160a060020a03811663c0ee0b8a3386856040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b3d5780820151818401525b602001610b24565b50505050905090810190601f168015610b6a5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610b8a57600080fd5b6102c65a03f11515610b9b57600080fd5b5050505b610ba98585610e69565b92505b505092915050565b600080610bc085610e5a565b15610ca9575083600160a060020a03811663c0ee0b8a3386866040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c475780820151818401525b602001610c2e565b50505050905090810190601f168015610c745780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610c9457600080fd5b6102c65a03f11515610ca557600080fd5b5050505b610cb38585610e69565b91505b509392505050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610cf6908363ffffffff610e4016565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60005433600160a060020a03908116911614610dab57600080fd5b600160a060020a0381161515610dc057600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600082821115610e3557fe5b508082035b92915050565b600082820183811015610e4f57fe5b8091505b5092915050565b6000813b908111905b50919050565b6000600160a060020a0383161515610e8057600080fd5b600160a060020a033316600090815260016020526040902054610ea9908363ffffffff610e2916565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ede908363ffffffff610e4016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b60206040519081016040526000815290565b602060405190810160405260008152905600a165627a7a72305820ab2dca2afbaea5cd2f7373beac905099432a12b62330529165ae2148e0fff82f0029
Swarm Source
bzzr://ab2dca2afbaea5cd2f7373beac905099432a12b62330529165ae2148e0fff82f
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.