ETH Price: $3,108.58 (+3.70%)
Gas: 5 Gwei

Token

MobileGo (MGO)
 

Overview

Max Total Supply

100,000,000 MGO

Holders

15,027 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000001 ETH

Onchain Market Cap

$277,766.00

Circulating Supply Market Cap

$213,746.00

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A dedicated token to bring eSports to everyone.

Profitability / Loss

Since Initial Offer Price
:$0.76 99.63%

Market

Volume (24H):$0.14
Market Capitalization:$213,746.00
Circulating Supply:76,951,936.00 MGO
Market Data Source: Coinmarketcap

ICO Information

ICO Start Date : Apr 25, 2017   
ICO End Date : May 25, 2017
Total Raised : $106,138,404
ICO Price  : $0.76
Country : USA

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MobileGoToken

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-06-04
*/

pragma solidity ^0.4.11;

/*
--------------------------------------------------------------------------------
The MobileGo [MGO] Token Smart Contract

Credit:
Stefan Crnojević [email protected]
MobileGo Inc, Game Credits Inc

ERC20: https://github.com/ethereum/EIPs/issues/20
ERC223: https://github.com/ethereum/EIPs/issues/223

MIT Licence
--------------------------------------------------------------------------------
*/

/*
* Contract that is working with ERC223 tokens
*/

contract ContractReceiver {
  function tokenFallback(address _from, uint _value, bytes _data) {
    /* Fix for Mist warning */
    _from;
    _value;
    _data;
  }
}


contract MobileGoToken {
    /* Contract Constants */
    string public constant _name = "MobileGo Token";
    string public constant _symbol = "MGO";
    uint8 public constant _decimals = 8;

    /* The supply is initially 100,000,000MGO to the precision of 8 decimals */
    uint256 public constant _initialSupply = 10000000000000000;

    /* Contract Variables */
    address public owner;
    uint256 public _currentSupply;
    mapping(address => uint256) public balances;
    mapping(address => mapping (address => uint256)) public allowed;

    /* Constructor initializes the owner's balance and the supply  */
    function MobileGoToken() {
        owner = msg.sender;
        _currentSupply = _initialSupply;
        balances[owner] = _initialSupply;
    }

    /* ERC20 Events */
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed from, address indexed to, uint256 value);

    /* ERC223 Events */
    event Transfer(address indexed from, address indexed to, uint value, bytes data);

    /* Non-ERC Events */
    event Burn(address indexed from, uint256 amount, uint256 currentSupply, bytes data);

    /* ERC20 Functions */
    /* Return current supply in smallest denomination (1MGO = 100000000) */
    function totalSupply() constant returns (uint256 totalSupply) {
        return _initialSupply;
    }

    /* Returns the balance of a particular account */
    function balanceOf(address _address) constant returns (uint256 balance) {
        return balances[_address];
    }

    /* Transfer the balance from the sender's address to the address _to */
    function transfer(address _to, uint _value) returns (bool success) {
        if (balances[msg.sender] >= _value
            && _value > 0
            && balances[_to] + _value > balances[_to]) {
            bytes memory empty;
            if(isContract(_to)) {
                return transferToContract(_to, _value, empty);
            } else {
                return transferToAddress(_to, _value, empty);
            }
        } else {
            return false;
        }
    }

    /* Withdraws to address _to form the address _from up to the amount _value */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        if (balances[_from] >= _value
            && allowed[_from][msg.sender] >= _value
            && _value > 0
            && balances[_to] + _value > balances[_to]) {
            balances[_from] -= _value;
            allowed[_from][msg.sender] -= _value;
            balances[_to] += _value;
            Transfer(_from, _to, _value);
            return true;
        } else {
            return false;
        }
    }

    /* Allows _spender to withdraw the _allowance amount form sender */
    function approve(address _spender, uint256 _allowance) returns (bool success) {
        if (_allowance <= _currentSupply) {
            allowed[msg.sender][_spender] = _allowance;
            Approval(msg.sender, _spender, _allowance);
            return true;
        } else {
            return false;
        }
    }

    /* Checks how much _spender can withdraw from _owner */
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /* ERC223 Functions */
    /* Get the contract constant _name */
    function name() constant returns (string name) {
        return _name;
    }

    /* Get the contract constant _symbol */
    function symbol() constant returns (string symbol) {
        return _symbol;
    }

    /* Get the contract constant _decimals */
    function decimals() constant returns (uint8 decimals) {
        return _decimals;
    }

    /* Transfer the balance from the sender's address to the address _to with data _data */
    function transfer(address _to, uint _value, bytes _data) returns (bool success) {
        if (balances[msg.sender] >= _value
            && _value > 0
            && balances[_to] + _value > balances[_to]) {
            if(isContract(_to)) {
                return transferToContract(_to, _value, _data);
            } else {
                return transferToAddress(_to, _value, _data);
            }
        } else {
            return false;
        }
    }

    /* Transfer function when _to represents a regular address */
    function transferToAddress(address _to, uint _value, bytes _data) internal returns (bool success) {
        balances[msg.sender] -= _value;
        balances[_to] += _value;
        Transfer(msg.sender, _to, _value);
        Transfer(msg.sender, _to, _value, _data);
        return true;
    }

    /* Transfer function when _to represents a contract address, with the caveat
    that the contract needs to implement the tokenFallback function in order to receive tokens */
    function transferToContract(address _to, uint _value, bytes _data) internal returns (bool success) {
        balances[msg.sender] -= _value;
        balances[_to] += _value;
        ContractReceiver receiver = ContractReceiver(_to);
        receiver.tokenFallback(msg.sender, _value, _data);
        Transfer(msg.sender, _to, _value);
        Transfer(msg.sender, _to, _value, _data);
        return true;
    }

    /* Infers if whether _address is a contract based on the presence of bytecode */
    function isContract(address _address) internal returns (bool is_contract) {
        uint length;
        if (_address == 0) return false;
        assembly {
            length := extcodesize(_address)
        }
        if(length > 0) {
            return true;
        } else {
            return false;
        }
    }

    /* Non-ERC Functions */
    /* Remove the specified amount of the tokens from the supply permanently */
    function burn(uint256 _value, bytes _data) returns (bool success) {
        if (balances[msg.sender] >= _value
            && _value > 0) {
            balances[msg.sender] -= _value;
            _currentSupply -= _value;
            Burn(msg.sender, _value, _currentSupply, _data);
            return true;
        } else {
            return false;
        }
    }

    /* Returns the total amount of tokens in supply */
    function currentSupply() constant returns (uint256 currentSupply) {
        return _currentSupply;
    }

    /* Returns the total amount of tokens ever burned */
    function amountBurned() constant returns (uint256 amountBurned) {
        return _initialSupply - _currentSupply;
    }

    /* Stops any attempt to send Ether to this contract */
    function () {
        throw;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"name","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_allowance","type":"uint256"}],"name":"approve","outputs":[{"name":"success","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":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"decimals","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"amountBurned","outputs":[{"name":"amountBurned","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentSupply","outputs":[{"name":"currentSupply","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":true,"inputs":[],"name":"_currentSupply","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"_symbol","outputs":[{"name":"","type":"string"}],"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":true,"inputs":[],"name":"_initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_name","outputs":[{"name":"","type":"string"}],"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":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"currentSupply","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Burn","type":"event"}]

6060604052341561000c57fe5b5b60008054600160a060020a03191633600160a060020a0390811691909117808355662386f26fc1000060018190559116825260026020526040909120555b5b61107b8061005b6000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610130578063095ea7b3146101c057806318160ddd146101f357806323b872dd1461021557806327e235e31461024e578063313ce5671461027c57806332424aa3146102a25780635290d773146102c85780635c658165146102ea57806370a082311461031e578063771282f61461034c5780638da5cb5b1461036e57806395d89b411461039a578063a4fefad61461042a578063a9059cbb1461044c578063b09f12661461047f578063be45fd621461050f578063c3b2d33714610586578063d28d8852146105a8578063dd62ed3e14610638578063fe9d93031461066c575b341561012257fe5b61012e5b60006000fd5b565b005b341561013857fe5b6101406106d7565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c857fe5b6101df600160a060020a0360043516602435610718565b604080519115158252519081900360200190f35b34156101fb57fe5b610203610794565b60408051918252519081900360200190f35b341561021d57fe5b6101df600160a060020a03600435811690602435166044356107a0565b604080519115158252519081900360200190f35b341561025657fe5b610203600160a060020a03600435166108ba565b60408051918252519081900360200190f35b341561028457fe5b61028c6108cc565b6040805160ff9092168252519081900360200190f35b34156102aa57fe5b61028c6108d2565b6040805160ff9092168252519081900360200190f35b34156102d057fe5b6102036108d7565b60408051918252519081900360200190f35b34156102f257fe5b610203600160a060020a03600435811690602435166108e7565b60408051918252519081900360200190f35b341561032657fe5b610203600160a060020a0360043516610904565b60408051918252519081900360200190f35b341561035457fe5b610203610923565b60408051918252519081900360200190f35b341561037657fe5b61037e61092a565b60408051600160a060020a039092168252519081900360200190f35b34156103a257fe5b610140610939565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561043257fe5b61020361097a565b60408051918252519081900360200190f35b341561045457fe5b6101df600160a060020a0360043516602435610980565b604080519115158252519081900360200190f35b341561048757fe5b610140610a21565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561051757fe5b604080516020600460443581810135601f81018490048402850184019095528484526101df948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610a5895505050505050565b604080519115158252519081900360200190f35b341561058e57fe5b610203610af2565b60408051918252519081900360200190f35b34156105b057fe5b610140610afd565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561064057fe5b610203600160a060020a0360043581169060243516610b34565b60408051918252519081900360200190f35b341561067457fe5b60408051602060046024803582810135601f81018590048502860185019096528585526101df9583359593946044949392909201918190840183828082843750949650610b6195505050505050565b604080519115158252519081900360200190f35b6106df61102b565b5060408051808201909152600e81527f4d6f62696c65476f20546f6b656e00000000000000000000000000000000000060208201525b90565b600154600090821161078957600160a060020a03338116600081815260036020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600161078d565b5060005b5b92915050565b662386f26fc100005b90565b600160a060020a0383166000908152600260205260408120548290108015906107f05750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156107fc5750600082115b80156108215750600160a060020a038316600090815260026020526040902054828101115b156108ae57600160a060020a03808516600081815260026020818152604080842080548990039055600382528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060016108b2565b5060005b5b9392505050565b60026020526000908152604090205481565b60085b90565b600881565b600154662386f26fc10000035b90565b600360209081526000928352604080842090915290825290205481565b600160a060020a0381166000908152600260205260409020545b919050565b6001545b90565b600054600160a060020a031681565b61094161102b565b5060408051808201909152600381527f4d474f000000000000000000000000000000000000000000000000000000000060208201525b90565b60015481565b600061098a61102b565b600160a060020a0333166000908152600260205260409020548390108015906109b35750600083115b80156109d85750600160a060020a038416600090815260026020526040902054838101115b15610a14576109e684610c86565b156109fd576109f6848483610cc3565b9150610a19565b6109f6848483610ef5565b9150610a19565b610a19565b600091505b5b5092915050565b60408051808201909152600381527f4d474f0000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a033316600090815260026020526040812054839010801590610a815750600083115b8015610aa65750600160a060020a038416600090815260026020526040902054838101115b156108ae57610ab484610c86565b15610acb57610ac4848484610cc3565b90506108b2565b610ac4848484610ef5565b90506108b2565b6108b2565b5060006108b2565b5b9392505050565b662386f26fc1000081565b60408051808201909152600e81527f4d6f62696c65476f20546f6b656e000000000000000000000000000000000000602082015281565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600160a060020a033316600090815260026020526040812054839010801590610b8a5750600083115b1561078957600160a060020a0333166000818152600260209081526040918290208054879003905560018054879003908190558251878152808301829052606093810184815287519482019490945286517f8da2fc26da2245514483a393963ce93cac8be27cf30bbbc78569ff2ffe3eda1694899489939260808401918501908083838215610c34575b805182526020831115610c3457601f199092019160209182019101610c14565b505050905090810190601f168015610c605780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a250600161078d565b50600061078d565b5b92915050565b600080600160a060020a0383161515610ca25760009150610cbc565b50813b6000811115610cb75760019150610cbc565b600091505b5b50919050565b33600160a060020a0381811660008181526002602090815260408083208054899003905593881680835284832080548901905593517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152600481019384526024810188905260606044820190815287516064830152875193968a969563c0ee0b8a9591948b948b9492936084909101918501908083838215610d81575b805182526020831115610d8157601f199092019160209182019101610d61565b505050905090810190601f168015610dad5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610dca57fe5b6102c65a03f11515610dd857fe5b50505084600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a384600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360008314610eae575b805182526020831115610eae57601f199092019160209182019101610e8e565b505050905090810190601f168015610eda5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3600191505b509392505050565b600160a060020a033381166000818152600260209081526040808320805488900390559387168083528483208054880190558451878152945192949093927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a383600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360008314610fe6575b805182526020831115610fe657601f199092019160209182019101610fc6565b505050905090810190601f1680156110125780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35060015b9392505050565b60408051602081019091526000815290565b604080516020810190915260008152905600a165627a7a723058202b2d4af9208030f65fb28dab2d573417250d64002320f9771f95733bb8d049d90029

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610130578063095ea7b3146101c057806318160ddd146101f357806323b872dd1461021557806327e235e31461024e578063313ce5671461027c57806332424aa3146102a25780635290d773146102c85780635c658165146102ea57806370a082311461031e578063771282f61461034c5780638da5cb5b1461036e57806395d89b411461039a578063a4fefad61461042a578063a9059cbb1461044c578063b09f12661461047f578063be45fd621461050f578063c3b2d33714610586578063d28d8852146105a8578063dd62ed3e14610638578063fe9d93031461066c575b341561012257fe5b61012e5b60006000fd5b565b005b341561013857fe5b6101406106d7565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c857fe5b6101df600160a060020a0360043516602435610718565b604080519115158252519081900360200190f35b34156101fb57fe5b610203610794565b60408051918252519081900360200190f35b341561021d57fe5b6101df600160a060020a03600435811690602435166044356107a0565b604080519115158252519081900360200190f35b341561025657fe5b610203600160a060020a03600435166108ba565b60408051918252519081900360200190f35b341561028457fe5b61028c6108cc565b6040805160ff9092168252519081900360200190f35b34156102aa57fe5b61028c6108d2565b6040805160ff9092168252519081900360200190f35b34156102d057fe5b6102036108d7565b60408051918252519081900360200190f35b34156102f257fe5b610203600160a060020a03600435811690602435166108e7565b60408051918252519081900360200190f35b341561032657fe5b610203600160a060020a0360043516610904565b60408051918252519081900360200190f35b341561035457fe5b610203610923565b60408051918252519081900360200190f35b341561037657fe5b61037e61092a565b60408051600160a060020a039092168252519081900360200190f35b34156103a257fe5b610140610939565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561043257fe5b61020361097a565b60408051918252519081900360200190f35b341561045457fe5b6101df600160a060020a0360043516602435610980565b604080519115158252519081900360200190f35b341561048757fe5b610140610a21565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561051757fe5b604080516020600460443581810135601f81018490048402850184019095528484526101df948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610a5895505050505050565b604080519115158252519081900360200190f35b341561058e57fe5b610203610af2565b60408051918252519081900360200190f35b34156105b057fe5b610140610afd565b604080516020808252835181830152835191928392908301918501908083838215610186575b80518252602083111561018657601f199092019160209182019101610166565b505050905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561064057fe5b610203600160a060020a0360043581169060243516610b34565b60408051918252519081900360200190f35b341561067457fe5b60408051602060046024803582810135601f81018590048502860185019096528585526101df9583359593946044949392909201918190840183828082843750949650610b6195505050505050565b604080519115158252519081900360200190f35b6106df61102b565b5060408051808201909152600e81527f4d6f62696c65476f20546f6b656e00000000000000000000000000000000000060208201525b90565b600154600090821161078957600160a060020a03338116600081815260036020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600161078d565b5060005b5b92915050565b662386f26fc100005b90565b600160a060020a0383166000908152600260205260408120548290108015906107f05750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156107fc5750600082115b80156108215750600160a060020a038316600090815260026020526040902054828101115b156108ae57600160a060020a03808516600081815260026020818152604080842080548990039055600382528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060016108b2565b5060005b5b9392505050565b60026020526000908152604090205481565b60085b90565b600881565b600154662386f26fc10000035b90565b600360209081526000928352604080842090915290825290205481565b600160a060020a0381166000908152600260205260409020545b919050565b6001545b90565b600054600160a060020a031681565b61094161102b565b5060408051808201909152600381527f4d474f000000000000000000000000000000000000000000000000000000000060208201525b90565b60015481565b600061098a61102b565b600160a060020a0333166000908152600260205260409020548390108015906109b35750600083115b80156109d85750600160a060020a038416600090815260026020526040902054838101115b15610a14576109e684610c86565b156109fd576109f6848483610cc3565b9150610a19565b6109f6848483610ef5565b9150610a19565b610a19565b600091505b5b5092915050565b60408051808201909152600381527f4d474f0000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a033316600090815260026020526040812054839010801590610a815750600083115b8015610aa65750600160a060020a038416600090815260026020526040902054838101115b156108ae57610ab484610c86565b15610acb57610ac4848484610cc3565b90506108b2565b610ac4848484610ef5565b90506108b2565b6108b2565b5060006108b2565b5b9392505050565b662386f26fc1000081565b60408051808201909152600e81527f4d6f62696c65476f20546f6b656e000000000000000000000000000000000000602082015281565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600160a060020a033316600090815260026020526040812054839010801590610b8a5750600083115b1561078957600160a060020a0333166000818152600260209081526040918290208054879003905560018054879003908190558251878152808301829052606093810184815287519482019490945286517f8da2fc26da2245514483a393963ce93cac8be27cf30bbbc78569ff2ffe3eda1694899489939260808401918501908083838215610c34575b805182526020831115610c3457601f199092019160209182019101610c14565b505050905090810190601f168015610c605780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a250600161078d565b50600061078d565b5b92915050565b600080600160a060020a0383161515610ca25760009150610cbc565b50813b6000811115610cb75760019150610cbc565b600091505b5b50919050565b33600160a060020a0381811660008181526002602090815260408083208054899003905593881680835284832080548901905593517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152600481019384526024810188905260606044820190815287516064830152875193968a969563c0ee0b8a9591948b948b9492936084909101918501908083838215610d81575b805182526020831115610d8157601f199092019160209182019101610d61565b505050905090810190601f168015610dad5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610dca57fe5b6102c65a03f11515610dd857fe5b50505084600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a384600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360008314610eae575b805182526020831115610eae57601f199092019160209182019101610e8e565b505050905090810190601f168015610eda5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3600191505b509392505050565b600160a060020a033381166000818152600260209081526040808320805488900390559387168083528483208054880190558451878152945192949093927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a383600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360008314610fe6575b805182526020831115610fe657601f199092019160209182019101610fc6565b505050905090810190601f1680156110125780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35060015b9392505050565b60408051602081019091526000815290565b604080516020810190915260008152905600a165627a7a723058202b2d4af9208030f65fb28dab2d573417250d64002320f9771f95733bb8d049d90029

Swarm Source

bzzr://2b2d4af9208030f65fb28dab2d573417250d64002320f9771f95733bb8d049d9
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.