ETH Price: $3,160.86 (-5.28%)
Gas: 8 Gwei

Token

MONEY MONSTER (MMON)
 

Overview

Max Total Supply

1,800,000,000 MMON

Holders

1,968

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
100 MMON

Value
$0.00
0x0b2e47bf0180155b07ca65154d81e70f697a2d31
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:
MMONToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-04-14
*/

pragma solidity ^0.4.18;

// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    function Owned() public {
        owner = msg.sender;
    }

    function changeOwner(address _newOwner) public onlyOwner{
        owner = _newOwner;
    }
}


// Safe maths, borrowed from OpenZeppelin
// ----------------------------------------------------------------------------
library SafeMath {

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

  function div(uint a, uint b) internal pure returns (uint) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

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

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

}

contract tokenRecipient {
  function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public;
}

contract ERC20Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant public returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) public returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract limitedFactor {
    using SafeMath for uint;
    
    uint256 public totalSupply = 0;
    uint256 public topTotalSupply = 18*10**8*10**6;
    uint256 public teamSupply = percent(15);
    uint256 public teamAlloacting = 0;
    uint256 internal teamReleasetokenEachMonth = 5 * teamSupply / 100;
    uint256 public creationInvestmentSupply = percent(15);
    uint256 public creationInvestmenting = 0;
    uint256 public ICOtotalSupply = percent(30);
    uint256 public ICOSupply = 0;
    uint256 public communitySupply = percent(20);
    uint256 public communityAllocating = 0;
    uint256 public angelWheelFinanceSupply = percent(20);
    uint256 public angelWheelFinancing = 0;
    address public walletAddress;
    uint256 public teamAddressFreezeTime = startTimeRoundOne;
    address public teamAddress;
    uint256 internal teamAddressTransfer = 0;
    uint256 public exchangeRateRoundOne = 16000;
    uint256 public exchangeRateRoundTwo = 10000;
    uint256 internal startTimeRoundOne = 1526313600;
    uint256 internal stopTimeRoundOne =  1528991999;
    
    modifier teamAccountNeedFreeze18Months(address _address) {
        if(_address == teamAddress) {
            require(now >= teamAddressFreezeTime + 1.5 years);
        }
        _;
    }
    
    modifier releaseToken (address _user, uint256 _time, uint256 _value) {
        if (_user == teamAddress){
            require (teamAddressTransfer + _value <= calcReleaseToken(_time)); 
        }
        _;
    }
    
    function calcReleaseToken (uint256 _time) internal view returns (uint256) {
        uint256 _timeDifference = _time - (teamAddressFreezeTime + 1.5 years);
        return _timeDifference / (3600 * 24 * 30) * teamReleasetokenEachMonth;
    } 
    
     /// @dev calcute the tokens
    function percent(uint256 percentage) internal view returns (uint256) {
        return percentage.mul(topTotalSupply).div(100);
    }

}

contract standardToken is ERC20Token, limitedFactor {
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowances;

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    /* Transfers tokens from your address to other */
    function transfer(address _to, uint256 _value) 
        public 
        teamAccountNeedFreeze18Months(msg.sender) 
        releaseToken(msg.sender, now, _value)
        returns (bool success) 
    {
        require (balances[msg.sender] >= _value);           // Throw if sender has insufficient balance
        require (balances[_to] + _value >= balances[_to]);  // Throw if owerflow detected
        balances[msg.sender] -= _value;                     // Deduct senders balance
        balances[_to] += _value;                            // Add recivers blaance
        if (msg.sender == teamAddress) {
            teamAddressTransfer += _value;
        }
        emit Transfer(msg.sender, _to, _value);                  // Raise Transfer event
        return true;
    }

    /* Approve other address to spend tokens on your account */
    function approve(address _spender, uint256 _value) public returns (bool success) {
        require(balances[msg.sender] >= _value);
        allowances[msg.sender][_spender] = _value;          // Set allowance
        emit Approval(msg.sender, _spender, _value);             // Raise Approval event
        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);              // Cast spender to tokenRecipient contract
        approve(_spender, _value);                                      // Set approval to contract for _value
        spender.receiveApproval(msg.sender, _value, this, _extraData);  // Raise method on _spender contract
        return true;
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require (balances[_from] >= _value);                // Throw if sender does not have enough balance
        require (balances[_to] + _value >= balances[_to]);  // Throw if overflow detected
        require (_value <= allowances[_from][msg.sender]);  // Throw if you do not have allowance
        balances[_from] -= _value;                          // Deduct senders balance
        balances[_to] += _value;                            // Add recipient blaance
        allowances[_from][msg.sender] -= _value;            // Deduct allowance for this address
        emit Transfer(_from, _to, _value);                       // Raise Transfer event
        return true;
    }

    /* Get the amount of allowed tokens to spend */
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining) {
        return allowances[_owner][_spender];
    }

}

contract MMONToken is standardToken,Owned {
    using SafeMath for uint;

    string constant public name="MONEY MONSTER";
    string constant public symbol="MMON";
    uint256 constant public decimals=6;
    
    bool public ICOStart;
    
    /// @dev Fallback to calling deposit when ether is sent directly to contract.
    function() public payable {
        require (ICOStart);
        depositToken(msg.value);
    }
    
    /// @dev initial function
    function MMONToken() public {
        owner=msg.sender;
        ICOStart = true;
    }
    
    /// @dev Buys tokens with Ether.
    function depositToken(uint256 _value) internal {
        uint256 tokenAlloc = buyPriceAt(getTime()) * _value;
        require(tokenAlloc != 0);
        ICOSupply = ICOSupply.add(tokenAlloc);
        require (ICOSupply <= ICOtotalSupply);
        mintTokens(msg.sender, tokenAlloc);
        forwardFunds();
    }
    
    /// @dev internal function
    function forwardFunds() internal {
        if (walletAddress != address(0)){
            walletAddress.transfer(msg.value);
        }
    }
    
    /// @dev Issue new tokens
    function mintTokens(address _to, uint256 _amount) internal {
        require (balances[_to] + _amount >= balances[_to]);     // Check for overflows
        balances[_to] = balances[_to].add(_amount);             // Set minted coins to target
        totalSupply = totalSupply.add(_amount);
        require(totalSupply <= topTotalSupply);
        emit Transfer(0x0, _to, _amount);                            // Create Transfer event from 0x
    }
    
    /// @dev Calculate exchange
    function buyPriceAt(uint256 _time) internal constant returns(uint256) {
        if (_time >= startTimeRoundOne && _time <= stopTimeRoundOne) {
            return exchangeRateRoundOne;
        }  else {
            return 0;
        }
    }
    
    /// @dev Get time
    function getTime() internal constant returns(uint256) {
        return now;
    }
    
    /// @dev set initial message
    function setInitialVaribles(address _walletAddress, address _teamAddress) public onlyOwner {
        walletAddress = _walletAddress;
        teamAddress = _teamAddress;
    }
    
    /// @dev withDraw Ether to a Safe Wallet
    function withDraw(address _etherAddress) public payable onlyOwner {
        require (_etherAddress != address(0));
        address contractAddress = this;
        _etherAddress.transfer(contractAddress.balance);
    }
    
    /// @dev allocate Token
    function allocateTokens(address[] _owners, uint256[] _values) public onlyOwner {
        require (_owners.length == _values.length);
        for(uint256 i = 0; i < _owners.length ; i++){
            address owner = _owners[i];
            uint256 value = _values[i];
            mintTokens(owner, value);
        }
    }
    
    /// @dev allocate token for Team Address
    function allocateTeamToken() public onlyOwner {
        require(balances[teamAddress] == 0);
        mintTokens(teamAddress, teamSupply);
        teamAddressFreezeTime = now;
    }
    
    function allocateCommunityToken (address[] _commnityAddress, uint256[] _amount) public onlyOwner {
        communityAllocating = mintMultiToken(_commnityAddress, _amount, communityAllocating);
        require (communityAllocating <= communitySupply);
    }
    /// @dev allocate token for Private Address
    function allocateCreationInvestmentingToken(address[] _creationInvestmentingingAddress, uint256[] _amount) public onlyOwner {
        creationInvestmenting = mintMultiToken(_creationInvestmentingingAddress, _amount, creationInvestmenting);
        require (creationInvestmenting <= creationInvestmentSupply);
    }
    
    /// @dev allocate token for contributors Address
    function allocateAngelWheelFinanceToken(address[] _angelWheelFinancingAddress, uint256[] _amount) public onlyOwner {
        //require(balances[contributorsAddress] == 0);
        angelWheelFinancing = mintMultiToken(_angelWheelFinancingAddress, _amount, angelWheelFinancing);
        require (angelWheelFinancing <= angelWheelFinanceSupply);
    }
    
    function mintMultiToken (address[] _multiAddr, uint256[] _multiAmount, uint256 _target) internal returns (uint256){
        require (_multiAddr.length == _multiAmount.length);
        for(uint256 i = 0; i < _multiAddr.length ; i++){
            address owner = _multiAddr[i];
            uint256 value = _multiAmount[i];
            _target = _target.add(value);
            mintTokens(owner, value);
        }
        return _target;
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_creationInvestmentingingAddress","type":"address[]"},{"name":"_amount","type":"uint256[]"}],"name":"allocateCreationInvestmentingToken","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":false,"inputs":[{"name":"_etherAddress","type":"address"}],"name":"withDraw","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"ICOtotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ICOSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamAddress","outputs":[{"name":"","type":"address"}],"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":"teamSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_commnityAddress","type":"address[]"},{"name":"_amount","type":"uint256[]"}],"name":"allocateCommunityToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"walletAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateRoundOne","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamAddressFreezeTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_walletAddress","type":"address"},{"name":"_teamAddress","type":"address"}],"name":"setInitialVaribles","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allocateTeamToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"topTotalSupply","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":true,"inputs":[],"name":"exchangeRateRoundTwo","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"creationInvestmentSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owners","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"allocateTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"teamAlloacting","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"angelWheelFinancing","outputs":[{"name":"","type":"uint256"}],"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":"ICOStart","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"angelWheelFinanceSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"creationInvestmenting","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"communityAllocating","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_angelWheelFinancingAddress","type":"address[]"},{"name":"_amount","type":"uint256[]"}],"name":"allocateAngelWheelFinanceToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"communitySupply","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":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":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

6060604052600060015566066517289880006002556200002e600f6401000000006200128b6200014882021704565b60038190556000600455606490600502046005556200005c600f6401000000006200128b6200014882021704565b60065560006007556200007e601e6401000000006200128b6200014882021704565b6008556000600955620000a060146401000000006200128b6200014882021704565b600a556000600b55620000c260146401000000006200128b6200014882021704565b600c556000600d55601454600f556000601155613e80601255612710601355635af9b280601455635b2290ff6015553415620000fd57600080fd5b6018805460a060020a60ff0219600160a060020a033316600160a060020a031992831681179092169091171674010000000000000000000000000000000000000000179055620001d6565b60006200018a606462000175600254856200019064010000000002620012b9179091906401000000009004565b90640100000000620012dd620001be82021704565b92915050565b6000828202831580620001ae5750828482811515620001ab57fe5b04145b1515620001b757fe5b9392505050565b6000808284811515620001cd57fe5b04949350505050565b61132080620001e66000396000f3006060604052600436106101c15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301d8112181146101f557806306fdde0314610284578063095ea7b31461030e5780630a67d2c7146103445780630d329d141461035857806315b73a1d1461037d57806318160ddd146103905780631c75f085146103a357806323b872dd146103d25780632cfac6ec146103fa578063313ce5671461040d578063652f78cc146104205780636ad5b3ea146104af5780636c5ca1fa146104c25780636e88865a146104d557806370a08231146104e857806376d260bb146105075780637c9677be1461052c57806385c09f261461053f5780638da5cb5b1461055257806395d89b41146105655780639a325e5214610578578063a6df33a21461058b578063a6f9dae11461059e578063a7368afb146105bd578063a79a3c301461064c578063a9059cbb1461065f578063ab75a4a214610681578063cae9ca5114610694578063d01ab31a146106f9578063d86c5bf71461070c578063d9d8b2ee1461071f578063dd62ed3e14610732578063e96d36ac14610757578063eb3f1b611461076a578063fcceea26146107f9575b60185474010000000000000000000000000000000000000000900460ff1615156101ea57600080fd5b6101f33461080c565b005b341561020057600080fd5b6101f360046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061086b95505050505050565b341561028f57600080fd5b6102976108a7565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d35780820151838201526020016102bb565b50505050905090810190601f1680156103005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561031957600080fd5b610330600160a060020a03600435166024356108de565b604051901515815260200160405180910390f35b6101f3600160a060020a036004351661096d565b341561036357600080fd5b61036b6109d8565b60405190815260200160405180910390f35b341561038857600080fd5b61036b6109de565b341561039b57600080fd5b61036b6109e4565b34156103ae57600080fd5b6103b66109ea565b604051600160a060020a03909116815260200160405180910390f35b34156103dd57600080fd5b610330600160a060020a03600435811690602435166044356109f9565b341561040557600080fd5b61036b610b07565b341561041857600080fd5b61036b610b0d565b341561042b57600080fd5b6101f3600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610b1295505050505050565b34156104ba57600080fd5b6103b6610b4e565b34156104cd57600080fd5b61036b610b5d565b34156104e057600080fd5b61036b610b63565b34156104f357600080fd5b61036b600160a060020a0360043516610b69565b341561051257600080fd5b6101f3600160a060020a0360043581169060243516610b88565b341561053757600080fd5b6101f3610bde565b341561054a57600080fd5b61036b610c3d565b341561055d57600080fd5b6103b6610c43565b341561057057600080fd5b610297610c52565b341561058357600080fd5b61036b610c89565b341561059657600080fd5b61036b610c8f565b34156105a957600080fd5b6101f3600160a060020a0360043516610c95565b34156105c857600080fd5b6101f3600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610cdf95505050505050565b341561065757600080fd5b61036b610d69565b341561066a57600080fd5b610330600160a060020a0360043516602435610d6f565b341561068c57600080fd5b61036b610eb8565b341561069f57600080fd5b61033060048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610ebe95505050505050565b341561070457600080fd5b610330610fe6565b341561071757600080fd5b61036b611007565b341561072a57600080fd5b61036b61100d565b341561073d57600080fd5b61036b600160a060020a0360043581169060243516611013565b341561076257600080fd5b61036b61103e565b341561077557600080fd5b6101f360046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061104495505050505050565b341561080457600080fd5b61036b611080565b60008161081f61081a611086565b61108a565b02905080151561082e57600080fd5b600954610841908263ffffffff6110b616565b600981905560085490111561085557600080fd5b61085f33826110cc565b61086761119f565b5050565b60185433600160a060020a0390811691161461088657600080fd5b61089382826007546111e6565b600781905560065490111561086757600080fd5b60408051908101604052600d81527f4d4f4e4559204d4f4e5354455200000000000000000000000000000000000000602082015281565b600160a060020a0333166000908152601660205260408120548290101561090457600080fd5b600160a060020a03338116600081815260176020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60185460009033600160a060020a0390811691161461098b57600080fd5b600160a060020a03821615156109a057600080fd5b5030600160a060020a038083169082163180156108fc0290604051600060405180830381858888f19350505050151561086757600080fd5b60085481565b60095481565b60015481565b601054600160a060020a031681565b600160a060020a03831660009081526016602052604081205482901015610a1f57600080fd5b600160a060020a0383166000908152601660205260409020548281011015610a4657600080fd5b600160a060020a0380851660009081526017602090815260408083203390941683529290522054821115610a7957600080fd5b600160a060020a03808516600081815260166020908152604080832080548890039055878516808452818420805489019055848452601783528184203390961684529490915290819020805486900390557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035481565b600681565b60185433600160a060020a03908116911614610b2d57600080fd5b610b3a8282600b546111e6565b600b819055600a5490111561086757600080fd5b600e54600160a060020a031681565b60125481565b600f5481565b600160a060020a0381166000908152601660205260409020545b919050565b60185433600160a060020a03908116911614610ba357600080fd5b600e8054600160a060020a0393841673ffffffffffffffffffffffffffffffffffffffff199182161790915560108054929093169116179055565b60185433600160a060020a03908116911614610bf957600080fd5b601054600160a060020a031660009081526016602052604090205415610c1e57600080fd5b601054600354610c3791600160a060020a0316906110cc565b42600f55565b60025481565b601854600160a060020a031681565b60408051908101604052600481527f4d4d4f4e00000000000000000000000000000000000000000000000000000000602082015281565b60135481565b60065481565b60185433600160a060020a03908116911614610cb057600080fd5b6018805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6018546000908190819033600160a060020a03908116911614610d0157600080fd5b8351855114610d0f57600080fd5b600092505b8451831015610d6257848381518110610d2957fe5b906020019060200201519150838381518110610d4157fe5b906020019060200201519050610d5782826110cc565b600190920191610d14565b5050505050565b60045481565b6010546000903390600160a060020a0380831691161415610d9f57600f546302d1cd4001421015610d9f57600080fd5b601054339042908590600160a060020a0380851691161415610dd457610dc48261126a565b60115482011115610dd457600080fd5b600160a060020a03331660009081526016602052604090205486901015610dfa57600080fd5b600160a060020a0387166000908152601660205260409020548681011015610e2157600080fd5b600160a060020a0333811660008181526016602052604080822080548b900390558a8416825290208054890190556010549091161415610e645760118054870190555b86600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405190815260200160405180910390a35060019695505050505050565b600d5481565b600083610ecb81856108de565b5080600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f7d578082015183820152602001610f65565b50505050905090810190601f168015610faa5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610fcb57600080fd5b5af11515610fd857600080fd5b506001979650505050505050565b60185474010000000000000000000000000000000000000000900460ff1681565b600c5481565b60075481565b600160a060020a03918216600090815260176020908152604080832093909416825291909152205490565b600b5481565b60185433600160a060020a0390811691161461105f57600080fd5b61106c8282600d546111e6565b600d819055600c5490111561086757600080fd5b600a5481565b4290565b600060145482101580156110a057506015548211155b156110ae5750601254610b83565b506000610b83565b6000828201838110156110c557fe5b9392505050565b600160a060020a03821660009081526016602052604090205481810110156110f357600080fd5b600160a060020a03821660009081526016602052604090205461111c908263ffffffff6110b616565b600160a060020a038316600090815260166020526040902055600154611148908263ffffffff6110b616565b600181905560025490111561115c57600080fd5b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600e54600160a060020a0316156111e457600e54600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156111e457600080fd5b565b60008060008085518751146111fa57600080fd5b600092505b865183101561125f5786838151811061121457fe5b90602001906020020151915085838151811061122c57fe5b906020019060200201519050611248858263ffffffff6110b616565b945061125482826110cc565b6001909201916111ff565b509295945050505050565b600f5460055460009183036302d1cd3f19019062278d008204029392505050565b60006112b360646112a7600254856112b990919063ffffffff16565b9063ffffffff6112dd16565b92915050565b60008282028315806112d557508284828115156112d257fe5b04145b15156110c557fe5b60008082848115156112eb57fe5b049493505050505600a165627a7a7230582056a084b5d81700264d592017568343087ec503c7625471060ba4c875a1c772a00029

Deployed Bytecode

0x6060604052600436106101c15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301d8112181146101f557806306fdde0314610284578063095ea7b31461030e5780630a67d2c7146103445780630d329d141461035857806315b73a1d1461037d57806318160ddd146103905780631c75f085146103a357806323b872dd146103d25780632cfac6ec146103fa578063313ce5671461040d578063652f78cc146104205780636ad5b3ea146104af5780636c5ca1fa146104c25780636e88865a146104d557806370a08231146104e857806376d260bb146105075780637c9677be1461052c57806385c09f261461053f5780638da5cb5b1461055257806395d89b41146105655780639a325e5214610578578063a6df33a21461058b578063a6f9dae11461059e578063a7368afb146105bd578063a79a3c301461064c578063a9059cbb1461065f578063ab75a4a214610681578063cae9ca5114610694578063d01ab31a146106f9578063d86c5bf71461070c578063d9d8b2ee1461071f578063dd62ed3e14610732578063e96d36ac14610757578063eb3f1b611461076a578063fcceea26146107f9575b60185474010000000000000000000000000000000000000000900460ff1615156101ea57600080fd5b6101f33461080c565b005b341561020057600080fd5b6101f360046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061086b95505050505050565b341561028f57600080fd5b6102976108a7565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d35780820151838201526020016102bb565b50505050905090810190601f1680156103005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561031957600080fd5b610330600160a060020a03600435166024356108de565b604051901515815260200160405180910390f35b6101f3600160a060020a036004351661096d565b341561036357600080fd5b61036b6109d8565b60405190815260200160405180910390f35b341561038857600080fd5b61036b6109de565b341561039b57600080fd5b61036b6109e4565b34156103ae57600080fd5b6103b66109ea565b604051600160a060020a03909116815260200160405180910390f35b34156103dd57600080fd5b610330600160a060020a03600435811690602435166044356109f9565b341561040557600080fd5b61036b610b07565b341561041857600080fd5b61036b610b0d565b341561042b57600080fd5b6101f3600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610b1295505050505050565b34156104ba57600080fd5b6103b6610b4e565b34156104cd57600080fd5b61036b610b5d565b34156104e057600080fd5b61036b610b63565b34156104f357600080fd5b61036b600160a060020a0360043516610b69565b341561051257600080fd5b6101f3600160a060020a0360043581169060243516610b88565b341561053757600080fd5b6101f3610bde565b341561054a57600080fd5b61036b610c3d565b341561055d57600080fd5b6103b6610c43565b341561057057600080fd5b610297610c52565b341561058357600080fd5b61036b610c89565b341561059657600080fd5b61036b610c8f565b34156105a957600080fd5b6101f3600160a060020a0360043516610c95565b34156105c857600080fd5b6101f3600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610cdf95505050505050565b341561065757600080fd5b61036b610d69565b341561066a57600080fd5b610330600160a060020a0360043516602435610d6f565b341561068c57600080fd5b61036b610eb8565b341561069f57600080fd5b61033060048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610ebe95505050505050565b341561070457600080fd5b610330610fe6565b341561071757600080fd5b61036b611007565b341561072a57600080fd5b61036b61100d565b341561073d57600080fd5b61036b600160a060020a0360043581169060243516611013565b341561076257600080fd5b61036b61103e565b341561077557600080fd5b6101f360046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061104495505050505050565b341561080457600080fd5b61036b611080565b60008161081f61081a611086565b61108a565b02905080151561082e57600080fd5b600954610841908263ffffffff6110b616565b600981905560085490111561085557600080fd5b61085f33826110cc565b61086761119f565b5050565b60185433600160a060020a0390811691161461088657600080fd5b61089382826007546111e6565b600781905560065490111561086757600080fd5b60408051908101604052600d81527f4d4f4e4559204d4f4e5354455200000000000000000000000000000000000000602082015281565b600160a060020a0333166000908152601660205260408120548290101561090457600080fd5b600160a060020a03338116600081815260176020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60185460009033600160a060020a0390811691161461098b57600080fd5b600160a060020a03821615156109a057600080fd5b5030600160a060020a038083169082163180156108fc0290604051600060405180830381858888f19350505050151561086757600080fd5b60085481565b60095481565b60015481565b601054600160a060020a031681565b600160a060020a03831660009081526016602052604081205482901015610a1f57600080fd5b600160a060020a0383166000908152601660205260409020548281011015610a4657600080fd5b600160a060020a0380851660009081526017602090815260408083203390941683529290522054821115610a7957600080fd5b600160a060020a03808516600081815260166020908152604080832080548890039055878516808452818420805489019055848452601783528184203390961684529490915290819020805486900390557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035481565b600681565b60185433600160a060020a03908116911614610b2d57600080fd5b610b3a8282600b546111e6565b600b819055600a5490111561086757600080fd5b600e54600160a060020a031681565b60125481565b600f5481565b600160a060020a0381166000908152601660205260409020545b919050565b60185433600160a060020a03908116911614610ba357600080fd5b600e8054600160a060020a0393841673ffffffffffffffffffffffffffffffffffffffff199182161790915560108054929093169116179055565b60185433600160a060020a03908116911614610bf957600080fd5b601054600160a060020a031660009081526016602052604090205415610c1e57600080fd5b601054600354610c3791600160a060020a0316906110cc565b42600f55565b60025481565b601854600160a060020a031681565b60408051908101604052600481527f4d4d4f4e00000000000000000000000000000000000000000000000000000000602082015281565b60135481565b60065481565b60185433600160a060020a03908116911614610cb057600080fd5b6018805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6018546000908190819033600160a060020a03908116911614610d0157600080fd5b8351855114610d0f57600080fd5b600092505b8451831015610d6257848381518110610d2957fe5b906020019060200201519150838381518110610d4157fe5b906020019060200201519050610d5782826110cc565b600190920191610d14565b5050505050565b60045481565b6010546000903390600160a060020a0380831691161415610d9f57600f546302d1cd4001421015610d9f57600080fd5b601054339042908590600160a060020a0380851691161415610dd457610dc48261126a565b60115482011115610dd457600080fd5b600160a060020a03331660009081526016602052604090205486901015610dfa57600080fd5b600160a060020a0387166000908152601660205260409020548681011015610e2157600080fd5b600160a060020a0333811660008181526016602052604080822080548b900390558a8416825290208054890190556010549091161415610e645760118054870190555b86600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405190815260200160405180910390a35060019695505050505050565b600d5481565b600083610ecb81856108de565b5080600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f7d578082015183820152602001610f65565b50505050905090810190601f168015610faa5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610fcb57600080fd5b5af11515610fd857600080fd5b506001979650505050505050565b60185474010000000000000000000000000000000000000000900460ff1681565b600c5481565b60075481565b600160a060020a03918216600090815260176020908152604080832093909416825291909152205490565b600b5481565b60185433600160a060020a0390811691161461105f57600080fd5b61106c8282600d546111e6565b600d819055600c5490111561086757600080fd5b600a5481565b4290565b600060145482101580156110a057506015548211155b156110ae5750601254610b83565b506000610b83565b6000828201838110156110c557fe5b9392505050565b600160a060020a03821660009081526016602052604090205481810110156110f357600080fd5b600160a060020a03821660009081526016602052604090205461111c908263ffffffff6110b616565b600160a060020a038316600090815260166020526040902055600154611148908263ffffffff6110b616565b600181905560025490111561115c57600080fd5b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600e54600160a060020a0316156111e457600e54600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156111e457600080fd5b565b60008060008085518751146111fa57600080fd5b600092505b865183101561125f5786838151811061121457fe5b90602001906020020151915085838151811061122c57fe5b906020019060200201519050611248858263ffffffff6110b616565b945061125482826110cc565b6001909201916111ff565b509295945050505050565b600f5460055460009183036302d1cd3f19019062278d008204029392505050565b60006112b360646112a7600254856112b990919063ffffffff16565b9063ffffffff6112dd16565b92915050565b60008282028315806112d557508284828115156112d257fe5b04145b15156110c557fe5b60008082848115156112eb57fe5b049493505050505600a165627a7a7230582056a084b5d81700264d592017568343087ec503c7625471060ba4c875a1c772a00029

Swarm Source

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