ETH Price: $2,535.41 (-0.14%)

Token

MSTCOIN (MSTCOIN)
 

Overview

Max Total Supply

500,000,000 MSTCOIN

Holders

467

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
29 MSTCOIN

Value
$0.00
0x0c7771ed5ce9a635d3a75181f220b3b51866f38e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MSTCOIN

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-05-03
*/

pragma solidity ^0.4.17;


contract Ownable {
    
    address public owner;

    /**
     * The address whcih deploys this contrcat is automatically assgined ownership.
     * */
    function Ownable() public {
        owner = msg.sender;
    }

    /**
     * Functions with this modifier can only be executed by the owner of the contract. 
     * */
    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    event OwnershipTransferred(address indexed from, address indexed to);

    /**
    * Transfers ownership to new Ethereum address. This function can only be called by the 
    * owner.
    * @param _newOwner the address to be granted ownership.
    **/
    function transferOwnership(address _newOwner) public onlyOwner {
        require(_newOwner != 0x0);
        OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }
}




library SafeMath {
    
    function mul(uint256 a, uint256 b) internal pure  returns (uint256) {
        uint256 c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal pure  returns (uint256) {
        uint256 c = a / b;
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}




contract ERC20Basic {
    uint256 public totalSupply;
    string public name;
    string public symbol;
    uint8 public decimals;
    function balanceOf(address who) constant public 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) constant public returns (uint256);
    function transferFrom(address from, address to, uint256 value) public  returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}




contract BasicToken is ERC20Basic {
    
    using SafeMath for uint256;
    
    mapping (address => uint256) internal balances;
    
    /**
    * Returns the balance of the qeuried address
    *
    * @param _who The address which is being qeuried
    **/
    function balanceOf(address _who) public view returns(uint256) {
        return balances[_who];
    }
    
    /**
    * Allows for the transfer of MSTCOIN tokens from peer to peer. 
    *
    * @param _to The address of the receiver
    * @param _value The amount of tokens to send
    **/
    function transfer(address _to, uint256 _value) public returns(bool) {
        require(balances[msg.sender] >= _value && _value > 0 && _to != 0x0);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        Transfer(msg.sender, _to, _value);
        return true;
    }
}




contract StandardToken is BasicToken, ERC20 {
    
    mapping (address => mapping (address => uint256)) internal allowances;
    
    /**
    * Returns the amount of tokens one has allowed another to spend on his or her behalf.
    *
    * @param _owner The address which is the owner of the tokens
    * @param _spender The address which has been allowed to spend tokens on the owner's
    * behalf
    **/
    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowances[_owner][_spender];
    }
    
    /**
    * Allows for the transfer of tokens on the behalf of the owner given that the owner has
    * allowed it previously. 
    *
    * @param _from The address of the owner
    * @param _to The address of the recipient 
    * @param _value The amount of tokens to be sent
    **/
    function transferFrom(address _from, address _to, uint256 _value) public  returns (bool) {
        require(allowances[_from][msg.sender] >= _value && _to != 0x0 && balances[_from] >= _value && _value > 0);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value);
        Transfer(_from, _to, _value);
        return true;
    }
    
    /**
    * Allows the owner of tokens to approve another to spend tokens on his or her behalf
    *
    * @param _spender The address which is being allowed to spend tokens on the owner' behalf
    * @param _value The amount of tokens to be sent
    **/
    function approve(address _spender, uint256 _value) public returns (bool) {
        require(_spender != 0x0 && _value > 0);
        if(allowances[msg.sender][_spender] > 0 ) {
            allowances[msg.sender][_spender] = 0;
        }
        allowances[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }
}




contract Pausable is Ownable {
   
    event Pause();
    event Unpause();
    event Freeze ();
    event LogFreeze();

    address public constant IcoAddress = 0xe9c5c1c7dA613Ef0749492dA01129DDDbA484857;  
    address public constant founderAddress = 0xF748D2322ADfE0E9f9b262Df6A2aD6CBF79A541A;

    bool public paused = true;
    
    /**
    * @dev modifier to allow actions only when the contract IS paused or if the 
    * owner or ICO contract is invoking the action
    */
    modifier whenNotPaused() {
        require(!paused || msg.sender == IcoAddress || msg.sender == founderAddress);
        _;
    }

    /**
    * @dev modifier to allow actions only when the contract IS NOT paused
    */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
    * @dev called by the owner to pause, triggers stopped state
    */
    function pause() public onlyOwner {
        paused = true;
        Pause();
    }
    

    /**
    * @dev called by the owner to unpause, returns to normal state
    */
    function unpause() public onlyOwner {
        paused = false;
        Unpause();
    }
    
}




contract PausableToken is StandardToken, Pausable {

  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }
}




contract MSTCOIN is PausableToken {
    
    function MSTCOIN() public {
        name = "MSTCOIN";
        symbol = "MSTCOIN";
        decimals = 6;
        totalSupply = 500000000e6;
        balances[founderAddress] = totalSupply;
        Transfer(address(this), founderAddress, totalSupply);
    }
    
    event Burn(address indexed burner, uint256 value);
    
    /**
    * Allows the owner to burn his own tokens.
    * 
    * @param _value The amount of token to be burned
    */
    function burn(uint256 _value) public onlyOwner {
        _burn(msg.sender, _value);
    }
    
    /**
    * Function is internally called by the burn function. 
    *
    * @param _who Will always be the owners address
    * @param _value The amount of tokens to be burned
    **/
    function _burn(address _who, uint256 _value) internal {
        require(_value <= balances[_who]);
        balances[_who] = balances[_who].sub(_value);
        totalSupply = totalSupply.sub(_value);
        Burn(_who, _value);
        Transfer(_who, address(0), _value);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"founderAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"IcoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[],"name":"LogFreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"}],"name":"OwnershipTransferred","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"}]

60606040526006805460a060020a60ff02191674010000000000000000000000000000000000000000179055341561003657600080fd5b60068054600160a060020a03191633600160a060020a031617905560408051908101604052600781527f4d5354434f494e0000000000000000000000000000000000000000000000000060208201526001908051610098929160200190610181565b5060408051908101604052600781527f4d5354434f494e00000000000000000000000000000000000000000000000000602082015260029080516100e0929160200190610181565b506003805460ff191660061790556601c6bf52634000600081815573f748d2322adfe0e9f9b262df6a2ad6cbf79a541a9081905260046020527f5590cf743b38a408f106fee87653185e1cb39680ac4a05f7f63d5ccbbf46237d8290559030600160a060020a0316907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060405190815260200160405180910390a361021c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101c257805160ff19168380011785556101ef565b828001600101855582156101ef579182015b828111156101ef5782518255916020019190600101906101d4565b506101fb9291506101ff565b5090565b61021991905b808211156101fb5760008155600101610205565b90565b610ce08061022b6000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce567146102025780633f4ba83a1461022b57806342966c681461024057806346bb2833146102565780634eb1483d146102855780635c975abb1461029857806370a08231146102ab5780638456cb59146102ca5780638da5cb5b146102dd57806395d89b41146102f0578063a9059cbb14610303578063dd62ed3e14610325578063f2fde38b1461034a575b600080fd5b341561010057600080fd5b610108610369565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610407565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c8610482565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a0360043581169060243516604435610488565b341561020d57600080fd5b610215610505565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b61023e61050e565b005b341561024b57600080fd5b61023e600435610575565b341561026157600080fd5b61026961059d565b604051600160a060020a03909116815260200160405180910390f35b341561029057600080fd5b6102696105b5565b34156102a357600080fd5b6101a16105cd565b34156102b657600080fd5b6101c8600160a060020a03600435166105dd565b34156102d557600080fd5b61023e6105f8565b34156102e857600080fd5b610269610665565b34156102fb57600080fd5b610108610674565b341561030e57600080fd5b6101a1600160a060020a03600435166024356106df565b341561033057600080fd5b6101c8600160a060020a0360043581169060243516610753565b341561035557600080fd5b61023e600160a060020a036004351661077e565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b505050505081565b60065460009060a060020a900460ff16158061043f575033600160a060020a031673e9c5c1c7da613ef0749492da01129dddba484857145b80610466575033600160a060020a031673f748d2322adfe0e9f9b262df6a2ad6cbf79a541a145b151561047157600080fd5b61047b8383610819565b9392505050565b60005481565b60065460009060a060020a900460ff1615806104c0575033600160a060020a031673e9c5c1c7da613ef0749492da01129dddba484857145b806104e7575033600160a060020a031673f748d2322adfe0e9f9b262df6a2ad6cbf79a541a145b15156104f257600080fd5b6104fd8484846108fe565b949350505050565b60035460ff1681565b60065433600160a060020a0390811691161461052957600080fd5b6006805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60065433600160a060020a0390811691161461059057600080fd5b61059a3382610a8e565b50565b73f748d2322adfe0e9f9b262df6a2ad6cbf79a541a81565b73e9c5c1c7da613ef0749492da01129dddba48485781565b60065460a060020a900460ff1681565b600160a060020a031660009081526004602052604090205490565b60065433600160a060020a0390811691161461061357600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600654600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156103ff5780601f106103d4576101008083540402835291602001916103ff565b60065460009060a060020a900460ff161580610717575033600160a060020a031673e9c5c1c7da613ef0749492da01129dddba484857145b8061073e575033600160a060020a031673f748d2322adfe0e9f9b262df6a2ad6cbf79a541a145b151561074957600080fd5b61047b8383610b8c565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60065433600160a060020a0390811691161461079957600080fd5b600160a060020a03811615156107ae57600080fd5b600654600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a038316158015906108335750600082115b151561083e57600080fd5b600160a060020a033381166000908152600560209081526040808320938716835292905290812054111561089557600160a060020a0333811660009081526005602090815260408083209387168352929052908120555b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600160a060020a0380841660009081526005602090815260408083203390941683529290529081205482901080159061093f5750600160a060020a03831615155b80156109645750600160a060020a038416600090815260046020526040902054829010155b80156109705750600082115b151561097b57600080fd5b600160a060020a0384166000908152600460205260409020546109a4908363ffffffff610c9316565b600160a060020a0380861660009081526004602052604080822093909355908516815220546109d9908363ffffffff610ca516565b600160a060020a03808516600090815260046020908152604080832094909455878316825260058152838220339093168252919091522054610a21908363ffffffff610c9316565b600160a060020a03808616600081815260056020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a038216600090815260046020526040902054811115610ab357600080fd5b600160a060020a038216600090815260046020526040902054610adc908263ffffffff610c9316565b600160a060020a03831660009081526004602052604081209190915554610b09908263ffffffff610c9316565b600055600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a0383167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600160a060020a033316600090815260046020526040812054829010801590610bb55750600082115b8015610bc95750600160a060020a03831615155b1515610bd457600080fd5b600160a060020a033316600090815260046020526040902054610bfd908363ffffffff610c9316565b600160a060020a033381166000908152600460205260408082209390935590851681522054610c32908363ffffffff610ca516565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600082821115610c9f57fe5b50900390565b60008282018381101561047b57fe00a165627a7a72305820f2fb1d439c16ccb55bc638db309b3efdde277d4706b7ed6a5d5b7cd877fdaf5c0029

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce567146102025780633f4ba83a1461022b57806342966c681461024057806346bb2833146102565780634eb1483d146102855780635c975abb1461029857806370a08231146102ab5780638456cb59146102ca5780638da5cb5b146102dd57806395d89b41146102f0578063a9059cbb14610303578063dd62ed3e14610325578063f2fde38b1461034a575b600080fd5b341561010057600080fd5b610108610369565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610407565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c8610482565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a0360043581169060243516604435610488565b341561020d57600080fd5b610215610505565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b61023e61050e565b005b341561024b57600080fd5b61023e600435610575565b341561026157600080fd5b61026961059d565b604051600160a060020a03909116815260200160405180910390f35b341561029057600080fd5b6102696105b5565b34156102a357600080fd5b6101a16105cd565b34156102b657600080fd5b6101c8600160a060020a03600435166105dd565b34156102d557600080fd5b61023e6105f8565b34156102e857600080fd5b610269610665565b34156102fb57600080fd5b610108610674565b341561030e57600080fd5b6101a1600160a060020a03600435166024356106df565b341561033057600080fd5b6101c8600160a060020a0360043581169060243516610753565b341561035557600080fd5b61023e600160a060020a036004351661077e565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b505050505081565b60065460009060a060020a900460ff16158061043f575033600160a060020a031673e9c5c1c7da613ef0749492da01129dddba484857145b80610466575033600160a060020a031673f748d2322adfe0e9f9b262df6a2ad6cbf79a541a145b151561047157600080fd5b61047b8383610819565b9392505050565b60005481565b60065460009060a060020a900460ff1615806104c0575033600160a060020a031673e9c5c1c7da613ef0749492da01129dddba484857145b806104e7575033600160a060020a031673f748d2322adfe0e9f9b262df6a2ad6cbf79a541a145b15156104f257600080fd5b6104fd8484846108fe565b949350505050565b60035460ff1681565b60065433600160a060020a0390811691161461052957600080fd5b6006805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60065433600160a060020a0390811691161461059057600080fd5b61059a3382610a8e565b50565b73f748d2322adfe0e9f9b262df6a2ad6cbf79a541a81565b73e9c5c1c7da613ef0749492da01129dddba48485781565b60065460a060020a900460ff1681565b600160a060020a031660009081526004602052604090205490565b60065433600160a060020a0390811691161461061357600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600654600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156103ff5780601f106103d4576101008083540402835291602001916103ff565b60065460009060a060020a900460ff161580610717575033600160a060020a031673e9c5c1c7da613ef0749492da01129dddba484857145b8061073e575033600160a060020a031673f748d2322adfe0e9f9b262df6a2ad6cbf79a541a145b151561074957600080fd5b61047b8383610b8c565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60065433600160a060020a0390811691161461079957600080fd5b600160a060020a03811615156107ae57600080fd5b600654600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a038316158015906108335750600082115b151561083e57600080fd5b600160a060020a033381166000908152600560209081526040808320938716835292905290812054111561089557600160a060020a0333811660009081526005602090815260408083209387168352929052908120555b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600160a060020a0380841660009081526005602090815260408083203390941683529290529081205482901080159061093f5750600160a060020a03831615155b80156109645750600160a060020a038416600090815260046020526040902054829010155b80156109705750600082115b151561097b57600080fd5b600160a060020a0384166000908152600460205260409020546109a4908363ffffffff610c9316565b600160a060020a0380861660009081526004602052604080822093909355908516815220546109d9908363ffffffff610ca516565b600160a060020a03808516600090815260046020908152604080832094909455878316825260058152838220339093168252919091522054610a21908363ffffffff610c9316565b600160a060020a03808616600081815260056020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a038216600090815260046020526040902054811115610ab357600080fd5b600160a060020a038216600090815260046020526040902054610adc908263ffffffff610c9316565b600160a060020a03831660009081526004602052604081209190915554610b09908263ffffffff610c9316565b600055600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a0383167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600160a060020a033316600090815260046020526040812054829010801590610bb55750600082115b8015610bc95750600160a060020a03831615155b1515610bd457600080fd5b600160a060020a033316600090815260046020526040902054610bfd908363ffffffff610c9316565b600160a060020a033381166000908152600460205260408082209390935590851681522054610c32908363ffffffff610ca516565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600082821115610c9f57fe5b50900390565b60008282018381101561047b57fe00a165627a7a72305820f2fb1d439c16ccb55bc638db309b3efdde277d4706b7ed6a5d5b7cd877fdaf5c0029

Swarm Source

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