Overview
Max Total Supply
900,000 DIVM
Holders
108 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3.9999999999995 DIVMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MyAdvancedToken
Compiler Version
v0.4.19-nightly.2017.11.11+commit.284c3839
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-11-29 */ pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } } interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { string public name = "DIVMGroup"; string public symbol = "DIVM"; uint8 public decimals = 18; uint256 public initialSupply = 10000; uint256 public totalSupply; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event Burn(address indexed from, uint256 value); function TokenERC20() public { totalSupply = initialSupply * 1 ether; balanceOf[msg.sender] = totalSupply; } function _transfer(address _from, address _to, uint _value) internal { require(_to != 0x0); require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value > balanceOf[_to]); uint previousBalances = balanceOf[_from] + balanceOf[_to]; balanceOf[_from] -= _value; balanceOf[_to] += _value; Transfer(_from, _to, _value); assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` in behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens in your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] -= _value; totalSupply -= _value; Burn(msg.sender, _value); return true; } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); require(_value <= allowance[_from][msg.sender]); balanceOf[_from] -= _value; allowance[_from][msg.sender] -= _value; totalSupply -= _value; Burn(_from, _value); return true; } } contract MyAdvancedToken is owned, TokenERC20 { address public beneficiary; address public reserveFund; address public Bounty; uint256 public sellPriceInWei; uint256 public buyPriceInWei; uint256 public Limit; uint256 public issueOfTokens; bool public TokenSaleStop = false; mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); function MyAdvancedToken() public { beneficiary = 0xe0C3c3FBA6D9793EDCeA6EA18298Fe22310Ed094; Bounty = 0xC87bB60EB3f7052f66E60BB5d961Eeffee1A8765; reserveFund = 0x60ab253bD32429ACD4242f14F54A8e50E233c0C5; } function _transfer(address _from, address _to, uint _value) internal { require (_to != 0x0); require (balanceOf[_from] > _value); require (balanceOf[_to] + _value > balanceOf[_to]); require(!frozenAccount[_from]); require(!frozenAccount[_to]); balanceOf[_from] -= _value; balanceOf[_to] += _value; Transfer(_from, _to, _value); } /// @notice Create `mintedAmount` tokens and send it to `target` /// @param target Address to receive the tokens /// @param mintedAmount the amount of tokens it will receive function mintToken(address target, uint256 mintedAmount) onlyOwner public { require (!TokenSaleStop); require (mintedAmount <= 7000000 * 1 ether - totalSupply); require (totalSupply + mintedAmount <= 7000000 * 1 ether); balanceOf[target] += mintedAmount; totalSupply += mintedAmount; issueOfTokens = totalSupply / 1 ether - initialSupply; Transfer(0, this, mintedAmount); Transfer(this, target, mintedAmount); } /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens /// @param target Address to be frozen /// @param freeze either to freeze it or not function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; FrozenFunds(target, freeze); } /// @notice Allow users to buy tokens for `newBuyPrice` eth and sell tokens for `newSellPrice` eth /// @param newSellPrice Price in wei the users can sell to the contract /// @param newBuyPrice Price in wei users can buy from the contract function setPrices(uint256 newSellPrice, uint256 newBuyPrice, uint256 newLimit) onlyOwner public { sellPriceInWei = newSellPrice; buyPriceInWei = newBuyPrice; Limit = newLimit; } /// @notice Buy tokens from contract by sending ether function () payable public { require (msg.value * Limit / 1 ether > 1); require (!TokenSaleStop); uint amount = msg.value * 1 ether / buyPriceInWei; _transfer(this, msg.sender, amount); if (this.balance > 2 ether) { Bounty.transfer(msg.value / 40);} if (this.balance > 10 ether) { reserveFund.transfer(msg.value / 7);} } function forwardFunds(uint256 withdraw) onlyOwner public { require (withdraw > 0); beneficiary.transfer(withdraw * 1 ether); } /// @notice Sell `amount` tokens to contract /// @param amount of tokens to be sold function sell(uint256 amount) public { require (amount > Limit); require (!TokenSaleStop); require(this.balance >= amount * sellPriceInWei); _transfer(msg.sender, this, amount * 1 ether); msg.sender.transfer(amount * sellPriceInWei); } function crowdsaleStop(bool Stop) onlyOwner public { TokenSaleStop = Stop; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"Stop","type":"bool"}],"name":"crowdsaleStop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"Limit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"},{"name":"newLimit","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"Bounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserveFund","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"issueOfTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"withdraw","type":"uint256"}],"name":"forwardFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPriceInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TokenSaleStop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buyPriceInWei","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":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
606060405260408051908101604052600981527f4449564d47726f75700000000000000000000000000000000000000000000000602082015260019080516200004d92916020019062000165565b5060408051908101604052600481527f4449564d00000000000000000000000000000000000000000000000000000000602082015260029080516200009792916020019062000165565b506003805460ff19908116601217909155612710600455600f805490911690553415620000c357600080fd5b60008054600160a060020a033316600160a060020a031991821681178355600454670de0b6b3a7640000026005819055908352600660205260409092209190915560088054821673e0c3c3fba6d9793edcea6ea18298fe22310ed094179055600a8054821673c87bb60eb3f7052f66e60bb5d961eeffee1a8765179055600980549091167360ab253bd32429acd4242f14f54a8e50e233c0c51790556200020a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a857805160ff1916838001178555620001d8565b82800160010185558215620001d8579182015b82811115620001d8578251825591602001919060010190620001bb565b50620001e6929150620001ea565b5090565b6200020791905b80821115620001e65760008155600101620001f1565b90565b610fab806200021a6000396000f3006060604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610274578063095ea7b3146102fe57806318160ddd1461033457806323b872dd14610359578063313ce56714610381578063378dc3dc146103aa57806338af3eed146103bd5780633a16f2ef146103ec57806342966c68146104065780634f0575061461041c57806370a082311461042f57806379c650681461044e57806379cc6790146104705780638da5cb5b1461049257806395d89b41146104a5578063a88fe42d146104b8578063a9059cbb146104d4578063aa53d504146104f6578063b414d4b614610509578063b7f92b7114610528578063c1b082b61461053b578063c89971211461054e578063cae9ca5114610564578063d5a81428146105c9578063dd62ed3e146105dc578063e4849b3214610601578063e724529c14610617578063f86ae8b21461063b578063fb7cf6941461064e575b60006001670de0b6b3a7640000600d54340281151561018f57fe5b041161019a57600080fd5b600f5460ff16156101aa57600080fd5b600c5434670de0b6b3a7640000028115156101c157fe5b0490506101cf303383610661565b671bc16d674ec8000030600160a060020a031631111561022057600a54600160a060020a03166028340480156108fc0290604051600060405180830381858888f19350505050151561022057600080fd5b678ac7230489e8000030600160a060020a031631111561027157600954600160a060020a03166007340480156108fc0290604051600060405180830381858888f19350505050151561027157600080fd5b50005b341561027f57600080fd5b610287610777565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102c35780820151838201526020016102ab565b50505050905090810190601f1680156102f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030957600080fd5b610320600160a060020a0360043516602435610815565b604051901515815260200160405180910390f35b341561033f57600080fd5b610347610845565b60405190815260200160405180910390f35b341561036457600080fd5b610320600160a060020a036004358116906024351660443561084b565b341561038c57600080fd5b6103946108c2565b60405160ff909116815260200160405180910390f35b34156103b557600080fd5b6103476108cb565b34156103c857600080fd5b6103d06108d1565b604051600160a060020a03909116815260200160405180910390f35b34156103f757600080fd5b61040460043515156108e0565b005b341561041157600080fd5b61032060043561090e565b341561042757600080fd5b610347610999565b341561043a57600080fd5b610347600160a060020a036004351661099f565b341561045957600080fd5b610404600160a060020a03600435166024356109b1565b341561047b57600080fd5b610320600160a060020a0360043516602435610ada565b341561049d57600080fd5b6103d0610bb6565b34156104b057600080fd5b610287610bc5565b34156104c357600080fd5b610404600435602435604435610c30565b34156104df57600080fd5b610404600160a060020a0360043516602435610c59565b341561050157600080fd5b6103d0610c68565b341561051457600080fd5b610320600160a060020a0360043516610c77565b341561053357600080fd5b6103d0610c8c565b341561054657600080fd5b610347610c9b565b341561055957600080fd5b610404600435610ca1565b341561056f57600080fd5b61032060048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610d0a95505050505050565b34156105d457600080fd5b610347610e3c565b34156105e757600080fd5b610347600160a060020a0360043581169060243516610e42565b341561060c57600080fd5b610404600435610e5f565b341561062257600080fd5b610404600160a060020a03600435166024351515610ee4565b341561064657600080fd5b610320610f70565b341561065957600080fd5b610347610f79565b600160a060020a038216151561067657600080fd5b600160a060020a03831660009081526006602052604090205481901161069b57600080fd5b600160a060020a038216600090815260066020526040902054818101116106c157600080fd5b600160a060020a03831660009081526010602052604090205460ff16156106e757600080fd5b600160a060020a03821660009081526010602052604090205460ff161561070d57600080fd5b600160a060020a038084166000818152600660205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a3505050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b505050505081565b600160a060020a033381166000908152600760209081526040808320938616835292905220819055600192915050565b60055481565b600160a060020a0380841660009081526007602090815260408083203390941683529290529081205482111561088057600080fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220805483900390556108b8848484610661565b5060019392505050565b60035460ff1681565b60045481565b600854600160a060020a031681565b60005433600160a060020a039081169116146108fb57600080fd5b600f805460ff1916911515919091179055565b600160a060020a0333166000908152600660205260408120548290101561093457600080fd5b600160a060020a03331660008181526006602052604090819020805485900390556005805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b600d5481565b60066020526000908152604090205481565b60005433600160a060020a039081169116146109cc57600080fd5b600f5460ff16156109dc57600080fd5b6005546a05ca4ec2a79a7f67000000038111156109f857600080fd5b6005546a05ca4ec2a79a7f670000009082011115610a1557600080fd5b600160a060020a03821660009081526006602052604090208054820190556005805482019081905560045490670de0b6b3a7640000900403600e55600160a060020a03301660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a381600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600160a060020a03821660009081526006602052604081205482901015610b0057600080fd5b600160a060020a0380841660009081526007602090815260408083203390941683529290522054821115610b3357600080fd5b600160a060020a038084166000818152600660209081526040808320805488900390556007825280832033909516835293905282902080548590039055600580548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561080d5780601f106107e25761010080835404028352916020019161080d565b60005433600160a060020a03908116911614610c4b57600080fd5b600b92909255600c55600d55565b610c64338383610661565b5050565b600a54600160a060020a031681565b60106020526000908152604090205460ff1681565b600954600160a060020a031681565b600e5481565b60005433600160a060020a03908116911614610cbc57600080fd5b60008111610cc957600080fd5b600854600160a060020a0316670de0b6b3a7640000820280156108fc0290604051600060405180830381858888f193505050501515610d0757600080fd5b50565b600083610d178185610815565b15610e345780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610dcd578082015183820152602001610db5565b50505050905090810190601f168015610dfa5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610e1b57600080fd5b6102c65a03f11515610e2c57600080fd5b505050600191505b509392505050565b600b5481565b600760209081526000928352604080842090915290825290205481565b600d548111610e6d57600080fd5b600f5460ff1615610e7d57600080fd5b600b548102600160a060020a033016311015610e9857600080fd5b610ead333083670de0b6b3a764000002610661565b33600160a060020a03166108fc600b5483029081150290604051600060405180830381858888f193505050501515610d0757600080fd5b60005433600160a060020a03908116911614610eff57600080fd5b600160a060020a03821660009081526010602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b600f5460ff1681565b600c54815600a165627a7a72305820ef2b1f93b1f71f3eeed292931a094a2459b6cf7580ee51a82ff7b3a1476ef1cd0029
Deployed Bytecode
0x6060604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610274578063095ea7b3146102fe57806318160ddd1461033457806323b872dd14610359578063313ce56714610381578063378dc3dc146103aa57806338af3eed146103bd5780633a16f2ef146103ec57806342966c68146104065780634f0575061461041c57806370a082311461042f57806379c650681461044e57806379cc6790146104705780638da5cb5b1461049257806395d89b41146104a5578063a88fe42d146104b8578063a9059cbb146104d4578063aa53d504146104f6578063b414d4b614610509578063b7f92b7114610528578063c1b082b61461053b578063c89971211461054e578063cae9ca5114610564578063d5a81428146105c9578063dd62ed3e146105dc578063e4849b3214610601578063e724529c14610617578063f86ae8b21461063b578063fb7cf6941461064e575b60006001670de0b6b3a7640000600d54340281151561018f57fe5b041161019a57600080fd5b600f5460ff16156101aa57600080fd5b600c5434670de0b6b3a7640000028115156101c157fe5b0490506101cf303383610661565b671bc16d674ec8000030600160a060020a031631111561022057600a54600160a060020a03166028340480156108fc0290604051600060405180830381858888f19350505050151561022057600080fd5b678ac7230489e8000030600160a060020a031631111561027157600954600160a060020a03166007340480156108fc0290604051600060405180830381858888f19350505050151561027157600080fd5b50005b341561027f57600080fd5b610287610777565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102c35780820151838201526020016102ab565b50505050905090810190601f1680156102f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030957600080fd5b610320600160a060020a0360043516602435610815565b604051901515815260200160405180910390f35b341561033f57600080fd5b610347610845565b60405190815260200160405180910390f35b341561036457600080fd5b610320600160a060020a036004358116906024351660443561084b565b341561038c57600080fd5b6103946108c2565b60405160ff909116815260200160405180910390f35b34156103b557600080fd5b6103476108cb565b34156103c857600080fd5b6103d06108d1565b604051600160a060020a03909116815260200160405180910390f35b34156103f757600080fd5b61040460043515156108e0565b005b341561041157600080fd5b61032060043561090e565b341561042757600080fd5b610347610999565b341561043a57600080fd5b610347600160a060020a036004351661099f565b341561045957600080fd5b610404600160a060020a03600435166024356109b1565b341561047b57600080fd5b610320600160a060020a0360043516602435610ada565b341561049d57600080fd5b6103d0610bb6565b34156104b057600080fd5b610287610bc5565b34156104c357600080fd5b610404600435602435604435610c30565b34156104df57600080fd5b610404600160a060020a0360043516602435610c59565b341561050157600080fd5b6103d0610c68565b341561051457600080fd5b610320600160a060020a0360043516610c77565b341561053357600080fd5b6103d0610c8c565b341561054657600080fd5b610347610c9b565b341561055957600080fd5b610404600435610ca1565b341561056f57600080fd5b61032060048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610d0a95505050505050565b34156105d457600080fd5b610347610e3c565b34156105e757600080fd5b610347600160a060020a0360043581169060243516610e42565b341561060c57600080fd5b610404600435610e5f565b341561062257600080fd5b610404600160a060020a03600435166024351515610ee4565b341561064657600080fd5b610320610f70565b341561065957600080fd5b610347610f79565b600160a060020a038216151561067657600080fd5b600160a060020a03831660009081526006602052604090205481901161069b57600080fd5b600160a060020a038216600090815260066020526040902054818101116106c157600080fd5b600160a060020a03831660009081526010602052604090205460ff16156106e757600080fd5b600160a060020a03821660009081526010602052604090205460ff161561070d57600080fd5b600160a060020a038084166000818152600660205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a3505050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b505050505081565b600160a060020a033381166000908152600760209081526040808320938616835292905220819055600192915050565b60055481565b600160a060020a0380841660009081526007602090815260408083203390941683529290529081205482111561088057600080fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220805483900390556108b8848484610661565b5060019392505050565b60035460ff1681565b60045481565b600854600160a060020a031681565b60005433600160a060020a039081169116146108fb57600080fd5b600f805460ff1916911515919091179055565b600160a060020a0333166000908152600660205260408120548290101561093457600080fd5b600160a060020a03331660008181526006602052604090819020805485900390556005805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b600d5481565b60066020526000908152604090205481565b60005433600160a060020a039081169116146109cc57600080fd5b600f5460ff16156109dc57600080fd5b6005546a05ca4ec2a79a7f67000000038111156109f857600080fd5b6005546a05ca4ec2a79a7f670000009082011115610a1557600080fd5b600160a060020a03821660009081526006602052604090208054820190556005805482019081905560045490670de0b6b3a7640000900403600e55600160a060020a03301660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a381600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600160a060020a03821660009081526006602052604081205482901015610b0057600080fd5b600160a060020a0380841660009081526007602090815260408083203390941683529290522054821115610b3357600080fd5b600160a060020a038084166000818152600660209081526040808320805488900390556007825280832033909516835293905282902080548590039055600580548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561080d5780601f106107e25761010080835404028352916020019161080d565b60005433600160a060020a03908116911614610c4b57600080fd5b600b92909255600c55600d55565b610c64338383610661565b5050565b600a54600160a060020a031681565b60106020526000908152604090205460ff1681565b600954600160a060020a031681565b600e5481565b60005433600160a060020a03908116911614610cbc57600080fd5b60008111610cc957600080fd5b600854600160a060020a0316670de0b6b3a7640000820280156108fc0290604051600060405180830381858888f193505050501515610d0757600080fd5b50565b600083610d178185610815565b15610e345780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610dcd578082015183820152602001610db5565b50505050905090810190601f168015610dfa5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610e1b57600080fd5b6102c65a03f11515610e2c57600080fd5b505050600191505b509392505050565b600b5481565b600760209081526000928352604080842090915290825290205481565b600d548111610e6d57600080fd5b600f5460ff1615610e7d57600080fd5b600b548102600160a060020a033016311015610e9857600080fd5b610ead333083670de0b6b3a764000002610661565b33600160a060020a03166108fc600b5483029081150290604051600060405180830381858888f193505050501515610d0757600080fd5b60005433600160a060020a03908116911614610eff57600080fd5b600160a060020a03821660009081526010602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b600f5460ff1681565b600c54815600a165627a7a72305820ef2b1f93b1f71f3eeed292931a094a2459b6cf7580ee51a82ff7b3a1476ef1cd0029
Swarm Source
bzzr://ef2b1f93b1f71f3eeed292931a094a2459b6cf7580ee51a82ff7b3a1476ef1cd
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.