ETH Price: $3,406.86 (-0.30%)
Gas: 19 Gwei

Token

Mjolnir (MJR)
 

Overview

Max Total Supply

9,859,716,997 MJR

Holders

1,303

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mtogas.eth
Balance
126,000 MJR

Value
$0.00
0xc32de03e195fa0e2e59338968c37d53b7a151c98
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:
Mjolnir

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.24;
/*-------------------------------------------------------------------------*/
// Mjolnir is the Official Token for Mjolnir Guard Platform
// Https://www.mjolnirguard.co
// All the git source are available on Mjolnir Guard Github
/*-------------------------------------------------------------------------*/
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
/*-------------------------------------------------------------------------*/
contract owned {
    address public owner;

    function owned() {
        owner = msg.sender;
    }

    modifier onlyOwner {
        if (msg.sender != owner) throw;
        _;
    }

    function transferOwnership(address newOwner) onlyOwner {
        if (newOwner == 0x0) throw;
        owner = newOwner;
    }
}
/*-------------------------------------------------------------------------*/
/**
 * Overflow aware uint math functions.
 */
contract SafeMath {
  //internals

  function safeMul(uint a, uint b) internal returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function safeSub(uint a, uint b) internal returns (uint) {
    assert(b <= a);
    return a - b;
  }

  function safeAdd(uint a, uint b) internal returns (uint) {
    uint c = a + b;
    assert(c>=a && c>=b);
    return c;
  }

  function assert(bool assertion) internal {
    if (!assertion) throw;
  }
}
/*-------------------------------------------------------------------------*/
contract Mjolnir is owned, SafeMath {
	
	string 	public MjolnirWebsite	= "https://mjolnirguard.co";
	address public MjolnirAddress 	= this;
	address public creator 				= msg.sender;
    string 	public name 				= "Mjolnir";
    string 	public symbol 				= "MJR";
    uint8 	public decimals 			= 18;											    
    uint256 public totalSupply 			= 9859716997000000000000000000;
    uint256 public buyPrice 			= 3500000;
	uint256 public sellPrice 			= 3500000;
   	
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;
	mapping (address => bool) public frozenAccount;

    event Transfer(address indexed from, address indexed to, uint256 value);				
    event FundTransfer(address backer, uint amount, bool isContribution);
     // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);
	event FrozenFunds(address target, bool frozen);
    
    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function Mjolnir() public {
        balanceOf[msg.sender] = totalSupply;    											
		creator = msg.sender;
    }
    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value >= balanceOf[_to]);
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
    }

    /**
     * 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);
    }
    
    /// @notice Buy tokens from contract by sending ether
    function () payable internal {
        uint amount = msg.value * buyPrice ; 
		uint amountRaised;
		uint bonus = 0;
		
		bonus = getBonus(amount);
		amount = amount +  bonus;
		
		//amount = now ;
		
        require(balanceOf[creator] >= amount);               				
        require(msg.value > 0);
		amountRaised = safeAdd(amountRaised, msg.value);                    
		balanceOf[msg.sender] = safeAdd(balanceOf[msg.sender], amount);     
        balanceOf[creator] = safeSub(balanceOf[creator], amount);           
        Transfer(creator, msg.sender, amount);               				
        creator.transfer(amountRaised);
    }
	
	/// @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 {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

	
	/**
     * 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;
        }
    }
	
    /// @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 the users can sell to the contract
    /// @param newBuyPrice Price users can buy from the contract
    function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public {
        sellPrice = newSellPrice;
        buyPrice = newBuyPrice;
    }
	
	
	/**
     * 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);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        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);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
	
	function getBonus(uint _amount) constant private returns (uint256) {
        
		if(now >= 1524873600 && now <= 1527551999) { 
            return _amount * 100 / 100;
        }
		
		if(now >= 1527552000 && now <= 1530316799) { 
            return _amount * 100 / 100;
        }
		
		if(now >= 1530316800 && now <= 1532995199) { 
            return _amount * 100 / 100;
        }
		
		if(now >= 1532995200 && now <= 1535759999) { 
            return _amount * 100 / 100;
        }
		
		if(now >= 1535760000 && now <= 1538438399) { 
            return _amount * 100 / 100;
        }
		
        return 0;
    }
	
	/// @notice Sell `amount` tokens to contract
    /// @param amount amount of tokens to be sold
    function sell(uint256 amount) public {
        require(this.balance >= amount * sellPrice);      // checks if the contract has enough ether to buy
        _transfer(msg.sender, this, amount);              // makes the transfers
        msg.sender.transfer(amount * sellPrice);          // sends ether to the seller. It's important to do this last to avoid recursion attacks
    }
	
 }
/*-------------------------------------------------------------------------*/

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"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":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","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":"sellPrice","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":"MjolnirAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MjolnirWebsite","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"","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":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","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":false,"name":"backer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"isContribution","type":"bool"}],"name":"FundTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"}]

60c0604052601760808190527f68747470733a2f2f6d6a6f6c6e697267756172642e636f00000000000000000060a090815262000040916001919062000161565b5060028054600160a060020a0319908116301790915560038054909116331790556040805180820190915260078082527f4d6a6f6c6e6972000000000000000000000000000000000000000000000000006020909201918252620000a79160049162000161565b506040805180820190915260038082527f4d4a5200000000000000000000000000000000000000000000000000000000006020909201918252620000ee9160059162000161565b506006805460ff191660121790556b1fdbc4496977b294f2f40000600755623567e060088190556009553480156200012557600080fd5b506000805433600160a060020a031991821681178355600754818452600a60205260409093209290925560038054909116909117905562000206565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b6200020391905b80821115620001e25760008155600101620001ed565b90565b610e5a80620002166000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d05d3f811461026157806305fefda71461029257806306fdde03146102af578063095ea7b31461033957806318160ddd14610371578063313ce5671461039857806342966c68146103c35780634b750334146103db57806370a08231146103f057806379c650681461041157806379cc6790146104355780637f7624d0146104595780638620410b1461046e5780638da5cb5b1461048357806395d89b4114610498578063a9059cbb146104ad578063b414d4b6146104d1578063bdd3abd9146104f2578063cae9ca5114610507578063dd62ed3e14610570578063e4849b3214610597578063e724529c146105af578063f2fde38b146105d5575b6008543402600080610143836105f6565b600354600160a060020a03166000908152600a60205260409020549381019390915083111561017157600080fd5b6000341161017e57600080fd5b61018882346106c8565b336000908152600a60205260409020549092506101a590846106c8565b336000908152600a602052604080822092909255600354600160a060020a0316815220546101d390846106ec565b60038054600160a060020a039081166000908152600a60209081526040918290209490945591548251878152925133949190921692600080516020610e0f833981519152929081900390910190a3600354604051600160a060020a039091169083156108fc029084906000818181858888f1935050505015801561025b573d6000803e3d6000fd5b50505050005b34801561026d57600080fd5b50610276610700565b60408051600160a060020a039092168252519081900360200190f35b34801561029e57600080fd5b506102ad60043560243561070f565b005b3480156102bb57600080fd5b506102c4610731565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fe5781810151838201526020016102e6565b50505050905090810190601f16801561032b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034557600080fd5b5061035d600160a060020a03600435166024356107bf565b604080519115158252519081900360200190f35b34801561037d57600080fd5b506103866107ec565b60408051918252519081900360200190f35b3480156103a457600080fd5b506103ad6107f2565b6040805160ff9092168252519081900360200190f35b3480156103cf57600080fd5b5061035d6004356107fb565b3480156103e757600080fd5b50610386610873565b3480156103fc57600080fd5b50610386600160a060020a0360043516610879565b34801561041d57600080fd5b506102ad600160a060020a036004351660243561088b565b34801561044157600080fd5b5061035d600160a060020a036004351660243561091d565b34801561046557600080fd5b506102766109ee565b34801561047a57600080fd5b506103866109fd565b34801561048f57600080fd5b50610276610a03565b3480156104a457600080fd5b506102c4610a12565b3480156104b957600080fd5b506102ad600160a060020a0360043516602435610a6d565b3480156104dd57600080fd5b5061035d600160a060020a0360043516610a7c565b3480156104fe57600080fd5b506102c4610a91565b34801561051357600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261035d948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610aeb9650505050505050565b34801561057c57600080fd5b50610386600160a060020a0360043581169060243516610c04565b3480156105a357600080fd5b506102ad600435610c21565b3480156105bb57600080fd5b506102ad600160a060020a03600435166024351515610c6e565b3480156105e157600080fd5b506102ad600160a060020a0360043516610ce9565b6000635ae3b98042101580156106105750635b0c97ff4211155b156106235760648281025b0490506106c3565b635b0c9800421015801561063b5750635b36c7ff4211155b1561064a57606482810261061b565b635b36c80042101580156106625750635b5fa67f4211155b1561067157606482810261061b565b635b5fa68042101580156106895750635b89d67f4211155b1561069857606482810261061b565b635b89d68042101580156106b05750635bb2b4ff4211155b156106bf57606482810261061b565b5060005b919050565b60008282016106e58482108015906106e05750838210155b610d44565b9392505050565b60006106fa83831115610d44565b50900390565b600354600160a060020a031681565b600054600160a060020a0316331461072657600080fd5b600991909155600855565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b505050505081565b336000908152600b60209081526040808320600160a060020a039590951683529390529190912055600190565b60075481565b60065460ff1681565b336000908152600a602052604081205482111561081757600080fd5b336000818152600a602090815260409182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60095481565b600a6020526000908152604090205481565b600054600160a060020a031633146108a257600080fd5b600160a060020a0382166000908152600a60209081526040808320805485019055600780548501905580518481529051309392600080516020610e0f833981519152928290030190a3604080518281529051600160a060020a038416913091600080516020610e0f8339815191529181900360200190a35050565b600160a060020a0382166000908152600a602052604081205482111561094257600080fd5b600160a060020a0383166000908152600b6020908152604080832033845290915290205482111561097257600080fd5b600160a060020a0383166000818152600a6020908152604080832080548790039055600b825280832033845282529182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600254600160a060020a031681565b60085481565b600054600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107b75780601f1061078c576101008083540402835291602001916107b7565b610a78338383610d53565b5050565b600c6020526000908152604090205460ff1681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107b75780601f1061078c576101008083540402835291602001916107b7565b600083610af881856107bf565b15610bfc576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610b90578181015183820152602001610b78565b50505050905090810190601f168015610bbd5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610bdf57600080fd5b505af1158015610bf3573d6000803e3d6000fd5b50505050600191505b509392505050565b600b60209081526000928352604080842090915290825290205481565b600954810230311015610c3357600080fd5b610c3e333083610d53565b6009546040513391830280156108fc02916000818181858888f19350505050158015610a78573d6000803e3d6000fd5b600054600160a060020a03163314610c8557600080fd5b600160a060020a0382166000818152600c6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a03163314610d0057600080fd5b600160a060020a0381161515610d1557600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b801515610d5057600080fd5b50565b600160a060020a0382161515610d6857600080fd5b600160a060020a0383166000908152600a6020526040902054811115610d8d57600080fd5b600160a060020a0382166000908152600a60205260409020548181011015610db457600080fd5b600160a060020a038084166000818152600a602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610e0f833981519152929081900390910190a35050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d9b47731c37fba162e2fed8757734d0aaa6ed9b002433813442d682a15dc26d80029

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d05d3f811461026157806305fefda71461029257806306fdde03146102af578063095ea7b31461033957806318160ddd14610371578063313ce5671461039857806342966c68146103c35780634b750334146103db57806370a08231146103f057806379c650681461041157806379cc6790146104355780637f7624d0146104595780638620410b1461046e5780638da5cb5b1461048357806395d89b4114610498578063a9059cbb146104ad578063b414d4b6146104d1578063bdd3abd9146104f2578063cae9ca5114610507578063dd62ed3e14610570578063e4849b3214610597578063e724529c146105af578063f2fde38b146105d5575b6008543402600080610143836105f6565b600354600160a060020a03166000908152600a60205260409020549381019390915083111561017157600080fd5b6000341161017e57600080fd5b61018882346106c8565b336000908152600a60205260409020549092506101a590846106c8565b336000908152600a602052604080822092909255600354600160a060020a0316815220546101d390846106ec565b60038054600160a060020a039081166000908152600a60209081526040918290209490945591548251878152925133949190921692600080516020610e0f833981519152929081900390910190a3600354604051600160a060020a039091169083156108fc029084906000818181858888f1935050505015801561025b573d6000803e3d6000fd5b50505050005b34801561026d57600080fd5b50610276610700565b60408051600160a060020a039092168252519081900360200190f35b34801561029e57600080fd5b506102ad60043560243561070f565b005b3480156102bb57600080fd5b506102c4610731565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fe5781810151838201526020016102e6565b50505050905090810190601f16801561032b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034557600080fd5b5061035d600160a060020a03600435166024356107bf565b604080519115158252519081900360200190f35b34801561037d57600080fd5b506103866107ec565b60408051918252519081900360200190f35b3480156103a457600080fd5b506103ad6107f2565b6040805160ff9092168252519081900360200190f35b3480156103cf57600080fd5b5061035d6004356107fb565b3480156103e757600080fd5b50610386610873565b3480156103fc57600080fd5b50610386600160a060020a0360043516610879565b34801561041d57600080fd5b506102ad600160a060020a036004351660243561088b565b34801561044157600080fd5b5061035d600160a060020a036004351660243561091d565b34801561046557600080fd5b506102766109ee565b34801561047a57600080fd5b506103866109fd565b34801561048f57600080fd5b50610276610a03565b3480156104a457600080fd5b506102c4610a12565b3480156104b957600080fd5b506102ad600160a060020a0360043516602435610a6d565b3480156104dd57600080fd5b5061035d600160a060020a0360043516610a7c565b3480156104fe57600080fd5b506102c4610a91565b34801561051357600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261035d948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610aeb9650505050505050565b34801561057c57600080fd5b50610386600160a060020a0360043581169060243516610c04565b3480156105a357600080fd5b506102ad600435610c21565b3480156105bb57600080fd5b506102ad600160a060020a03600435166024351515610c6e565b3480156105e157600080fd5b506102ad600160a060020a0360043516610ce9565b6000635ae3b98042101580156106105750635b0c97ff4211155b156106235760648281025b0490506106c3565b635b0c9800421015801561063b5750635b36c7ff4211155b1561064a57606482810261061b565b635b36c80042101580156106625750635b5fa67f4211155b1561067157606482810261061b565b635b5fa68042101580156106895750635b89d67f4211155b1561069857606482810261061b565b635b89d68042101580156106b05750635bb2b4ff4211155b156106bf57606482810261061b565b5060005b919050565b60008282016106e58482108015906106e05750838210155b610d44565b9392505050565b60006106fa83831115610d44565b50900390565b600354600160a060020a031681565b600054600160a060020a0316331461072657600080fd5b600991909155600855565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b505050505081565b336000908152600b60209081526040808320600160a060020a039590951683529390529190912055600190565b60075481565b60065460ff1681565b336000908152600a602052604081205482111561081757600080fd5b336000818152600a602090815260409182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60095481565b600a6020526000908152604090205481565b600054600160a060020a031633146108a257600080fd5b600160a060020a0382166000908152600a60209081526040808320805485019055600780548501905580518481529051309392600080516020610e0f833981519152928290030190a3604080518281529051600160a060020a038416913091600080516020610e0f8339815191529181900360200190a35050565b600160a060020a0382166000908152600a602052604081205482111561094257600080fd5b600160a060020a0383166000908152600b6020908152604080832033845290915290205482111561097257600080fd5b600160a060020a0383166000818152600a6020908152604080832080548790039055600b825280832033845282529182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600254600160a060020a031681565b60085481565b600054600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107b75780601f1061078c576101008083540402835291602001916107b7565b610a78338383610d53565b5050565b600c6020526000908152604090205460ff1681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107b75780601f1061078c576101008083540402835291602001916107b7565b600083610af881856107bf565b15610bfc576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610b90578181015183820152602001610b78565b50505050905090810190601f168015610bbd5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610bdf57600080fd5b505af1158015610bf3573d6000803e3d6000fd5b50505050600191505b509392505050565b600b60209081526000928352604080842090915290825290205481565b600954810230311015610c3357600080fd5b610c3e333083610d53565b6009546040513391830280156108fc02916000818181858888f19350505050158015610a78573d6000803e3d6000fd5b600054600160a060020a03163314610c8557600080fd5b600160a060020a0382166000818152600c6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a03163314610d0057600080fd5b600160a060020a0381161515610d1557600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b801515610d5057600080fd5b50565b600160a060020a0382161515610d6857600080fd5b600160a060020a0383166000908152600a6020526040902054811115610d8d57600080fd5b600160a060020a0382166000908152600a60205260409020548181011015610db457600080fd5b600160a060020a038084166000818152600a602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610e0f833981519152929081900390910190a35050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d9b47731c37fba162e2fed8757734d0aaa6ed9b002433813442d682a15dc26d80029

Swarm Source

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