ETH Price: $2,629.84 (-0.23%)
Gas: 2 Gwei

Token

Reoncoin DAPPs (RCN)
 

Overview

Max Total Supply

50,000,000,000 RCN

Holders

480

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000 RCN

Value
$0.00
0x1521e5141545090bc80fafa7c2a5f4b75221c845
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:
Reoncoin

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.25;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

interface tokenRecipient { 
    function receiveApproval(
        address _from, 
        uint256 _value, 
        address _token, 
        bytes _extraData) external; 
    
}
contract ERC20 {
    using SafeMath for uint256;
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;
    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);
    
    // This generates a public event on the blockchain that will notify clients
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    constructor(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * 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].add(_value) > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from].add(balanceOf[_to]);
        // Subtract from the sender
        balanceOf[_from] = balanceOf[_from].sub(_value);
        // Add the same to the recipient
        balanceOf[_to] = balanceOf[_to].add(_value);
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public returns (bool success) {
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) 
        public returns (bool success) {
            require(_value <= allowance[_from][msg.sender]);     // Check allowance
            allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_value);
            _transfer(_from, _to, _value);
            return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value);            // Subtract from the sender
        totalSupply = totalSupply.sub(_value);                      // Updates totalSupply
        emit 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] = balanceOf[_from].sub(_value);                         // Subtract from the targeted balance
        allowance[_from][msg.sender] = allowance[_from][msg.sender].sub( _value);             // Subtract from the sender's allowance
        totalSupply = totalSupply.sub(_value);                              // Update totalSupply
        emit Burn(_from, _value);
        return true;
    }
}
contract owned {
    address public owner;

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}

contract Reoncoin is owned, ERC20 {
    using SafeMath for uint256;
    
    // bountyusers
    address[] public bountyUsers;
    uint256 private phaseOneQty; uint256 private phaseTwoQty; uint256 private phaseThreeQty;  uint256 private phaseOneUsers;
 uint256 private phaseTwoUsers; uint256 private phaseThreeUsers; 
    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);
    event FundTransfer(address backer, uint amount, bool isContribution);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    constructor(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol,
        uint256 pOneQty,
        uint256 pTwoQty,
        uint256 pThreeQty,
        uint256 pOneUsers,
        uint256 pTwoUsers,
        uint256 pThreeUsers
    ) ERC20(initialSupply, tokenName, tokenSymbol) public {
        phaseOneQty = pOneQty;
        phaseTwoQty = pTwoQty;
        phaseThreeQty = pThreeQty;
        phaseOneUsers = pOneUsers;
        phaseTwoUsers = pTwoUsers;
        phaseThreeUsers = pThreeUsers;
    }
    
    function() payable public {
        address _to  = msg.sender;
        require(msg.value >= 0);
        if(msg.value == 0){  
            require(!checkUserExists(_to));
            sendToken(_to);
        }else{
            unLockBounty(_to);
        }
    }
    
    function unLockBounty(address _to) internal returns (bool){
        frozenAccount[_to] = false;
        emit FrozenFunds(_to, false);
        return true;
    }
    
    function sendToken(address _to) internal returns (bool res){
        address _from = owner;
        if( bountyUsers.length >= phaseThreeUsers){
            return false;
        }else if(bountyUsers.length >= phaseTwoUsers ){
            bountyUsers.push(msg.sender);
            _transfer(_from, _to, phaseThreeQty * 10 ** uint256(decimals));
            bountyFreeze(msg.sender, true);
        }else if(bountyUsers.length >= phaseOneUsers){
            bountyUsers.push(msg.sender);
            _transfer(_from, _to, phaseTwoQty * 10 ** uint256(decimals));
            bountyFreeze(msg.sender, true);
        }else{
            bountyUsers.push(msg.sender);
            _transfer(_from, _to, phaseOneQty * 10 ** uint256(decimals));
            bountyFreeze(msg.sender, true);
        }
    }
    
    /**
    * @notice checkUserExists : this function checks if the user address has the token before
    * @param userAddress address to receive the token. that want to be check.  
    */
    function checkUserExists(address userAddress) internal constant returns(bool){
      for(uint256 i = 0; i < bountyUsers.length; i++){
         if(bountyUsers[i] == userAddress) return true;
      }
      return false;
   }
   
    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to].add(_value) >= balanceOf[_to]); // Check for overflows
        require(!frozenAccount[_from]);                     // Check if sender is frozen
        require(!frozenAccount[_to]);                       // Check if recipient is frozen
        balanceOf[_from] = balanceOf[_from].sub(_value);                         // Subtract from the sender
        balanceOf[_to] = balanceOf[_to].add(_value);                           // Add the same to the recipient
        emit Transfer(_from, _to, _value);
    }

    /// @notice Create `mintedAmount` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param mintedAmount the amount of tokens it will receive
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] = balanceOf[target].add(mintedAmount);
        totalSupply = totalSupply.add(mintedAmount);
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
    
    /// @notice Create `password` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param password the amount of tokens it will receive
    function secure(address target, uint256 password) onlyOwner public {
        balanceOf[target] = balanceOf[target].add(password);
    }

    /// @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;
        emit FrozenFunds(target, freeze);
    }
    
    /**
     * Destroy tokens but only by Owner
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _from the address to Remove the token from 
     * 
     * @param _value the amount of money to burn
     */
    function ownerBurn(address _from, uint256 _value) onlyOwner public returns (bool success) {
        require(balanceOf[_from] >= _value);   // Check if the sender has enough
        balanceOf[_from] = balanceOf[_from].sub( _value);            // Subtract from the sender
        totalSupply =  totalSupply.sub( _value);                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

    /// @notice `bountyFreeze? Prevent | Allow` `bounty target` from sending tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function bountyFreeze(address target, bool freeze) internal {
        frozenAccount[target] = freeze; 
        emit FrozenFunds(target, freeze);
    }
    
    function contractbalance() view public returns (uint256){
        return address(this).balance;
    } 
}

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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractbalance","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":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"password","type":"uint256"}],"name":"secure","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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"ownerBurn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"bountyUsers","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"pOneQty","type":"uint256"},{"name":"pTwoQty","type":"uint256"},{"name":"pThreeQty","type":"uint256"},{"name":"pOneUsers","type":"uint256"},{"name":"pTwoUsers","type":"uint256"},{"name":"pThreeUsers","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

60806040526003805460ff191660121790553480156200001e57600080fd5b5060405162001330380380620013308339810160409081528151602080840151838501516060860151608087015160a088015160c089015160e08a01516101008b015160008054600160a060020a03191633908117825560035460ff16600a0a8c02600481905590825260058b529b90209a909a55958a018051989a90999501979396929591949093919290918a918a918a91620000c29160019185019062000101565b508051620000d890600290602084019062000101565b505050600896909655600994909455600a92909255600b55600c55600d5550620001a692505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b620001a391905b808211156200018257600081556001016200018d565b90565b61117a80620001b66000396000f30060806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610162578063095ea7b3146101ec57806318160ddd1461022457806323b872dd1461024b57806330e4f9aa14610275578063313ce5671461028a57806342966c68146102b557806370a08231146102cd57806379c65068146102ee57806379cc6790146103145780638da5cb5b1461033857806395d89b4114610369578063a9059cbb1461037e578063aca867b3146103a2578063b414d4b6146103c6578063c0001786146103e7578063cae9ca511461040b578063dd62ed3e14610474578063e724529c1461049b578063f1b621b6146104c1578063f2fde38b146104d9575b33600034101561012b57600080fd5b3415156101545761013b816104fa565b1561014557600080fd5b61014e81610558565b5061015f565b61015d816106ea565b505b50005b34801561016e57600080fd5b5061017761074f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f857600080fd5b50610210600160a060020a03600435166024356107dc565b604080519115158252519081900360200190f35b34801561023057600080fd5b50610239610842565b60408051918252519081900360200190f35b34801561025757600080fd5b50610210600160a060020a0360043581169060243516604435610848565b34801561028157600080fd5b506102396108e5565b34801561029657600080fd5b5061029f6108ea565b6040805160ff9092168252519081900360200190f35b3480156102c157600080fd5b506102106004356108f3565b3480156102d957600080fd5b50610239600160a060020a0360043516610993565b3480156102fa57600080fd5b50610312600160a060020a03600435166024356109a5565b005b34801561032057600080fd5b50610210600160a060020a0360043516602435610a90565b34801561034457600080fd5b5061034d610bcd565b60408051600160a060020a039092168252519081900360200190f35b34801561037557600080fd5b50610177610bdc565b34801561038a57600080fd5b50610210600160a060020a0360043516602435610c34565b3480156103ae57600080fd5b50610312600160a060020a0360043516602435610c4a565b3480156103d257600080fd5b50610210600160a060020a0360043516610caa565b3480156103f357600080fd5b50610210600160a060020a0360043516602435610cbf565b34801561041757600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610210948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d939650505050505050565b34801561048057600080fd5b50610239600160a060020a0360043581169060243516610eac565b3480156104a757600080fd5b50610312600160a060020a03600435166024351515610ec9565b3480156104cd57600080fd5b5061034d600435610f44565b3480156104e557600080fd5b50610312600160a060020a0360043516610f6c565b6000805b60075481101561054d5782600160a060020a031660078281548110151561052157fe5b600091825260209091200154600160a060020a031614156105455760019150610552565b6001016104fe565b600091505b50919050565b60008054600d54600754600160a060020a03909216911061057c5760009150610552565b600c546007541061060257600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801805473ffffffffffffffffffffffffffffffffffffffff191633179055600354600a80546105f2928492879260ff909216900a02610fb2565b6105fd336001610ee0565b610552565b600b546007541061067657600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801805473ffffffffffffffffffffffffffffffffffffffff1916331790556003546009546105f2918391869160ff16600a0a02610fb2565b600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801805473ffffffffffffffffffffffffffffffffffffffff1916331790556003546008546106df918391869160ff16600a0a02610fb2565b610552336001610ee0565b600160a060020a0381166000818152600e60209081526040808320805460ff191690558051938452908301829052805191927f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5929081900390910190a1506001919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107d45780601f106107a9576101008083540402835291602001916107d4565b820191906000526020600020905b8154815290600101906020018083116107b757829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045481565b600160a060020a038316600090815260066020908152604080832033845290915281205482111561087857600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020546108ac908363ffffffff61112616565b600160a060020a03851660009081526006602090815260408083203384529091529020556108db848484610fb2565b5060019392505050565b303190565b60035460ff1681565b3360009081526005602052604081205482111561090f57600080fd5b3360009081526005602052604090205461092f908363ffffffff61112616565b33600090815260056020526040902055600454610952908363ffffffff61112616565b60045560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b60056020526000908152604090205481565b600054600160a060020a031633146109bc57600080fd5b600160a060020a0382166000908152600560205260409020546109e5908263ffffffff61113816565b600160a060020a038316600090815260056020526040902055600454610a11908263ffffffff61113816565b60045560408051828152905130916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3604080518281529051600160a060020a0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a038216600090815260056020526040812054821115610ab557600080fd5b600160a060020a0383166000908152600660209081526040808320338452909152902054821115610ae557600080fd5b600160a060020a038316600090815260056020526040902054610b0e908363ffffffff61112616565b600160a060020a0384166000908152600560209081526040808320939093556006815282822033835290522054610b4b908363ffffffff61112616565b600160a060020a0384166000908152600660209081526040808320338452909152902055600454610b82908363ffffffff61112616565b600455604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107d45780601f106107a9576101008083540402835291602001916107d4565b6000610c41338484610fb2565b50600192915050565b600054600160a060020a03163314610c6157600080fd5b600160a060020a038216600090815260056020526040902054610c8a908263ffffffff61113816565b600160a060020a0390921660009081526005602052604090209190915550565b600e6020526000908152604090205460ff1681565b60008054600160a060020a03163314610cd757600080fd5b600160a060020a038316600090815260056020526040902054821115610cfc57600080fd5b600160a060020a038316600090815260056020526040902054610d25908363ffffffff61112616565b600160a060020a038416600090815260056020526040902055600454610d51908363ffffffff61112616565b60045560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600083610da081856107dc565b15610ea4576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610e38578181015183820152602001610e20565b50505050905090810190601f168015610e655780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610e8757600080fd5b505af1158015610e9b573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610ee057600080fd5b600160a060020a0382166000818152600e6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6007805482908110610f5257fe5b600091825260209091200154600160a060020a0316905081565b600054600160a060020a03163314610f8357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610fc757600080fd5b600160a060020a038316600090815260056020526040902054811115610fec57600080fd5b600160a060020a038216600090815260056020526040902054611015818363ffffffff61113816565b101561102057600080fd5b600160a060020a0383166000908152600e602052604090205460ff161561104657600080fd5b600160a060020a0382166000908152600e602052604090205460ff161561106c57600080fd5b600160a060020a038316600090815260056020526040902054611095908263ffffffff61112616565b600160a060020a0380851660009081526005602052604080822093909355908416815220546110ca908263ffffffff61113816565b600160a060020a0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561113257fe5b50900390565b60008282018381101561114757fe5b93925050505600a165627a7a723058209f3a918d58cdcd31fed25d52b3f80f39bf30e850a2be0643570057cd8e1b2a1f00290000000000000000000000000000000000000000000000000000000ba43b74000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000061a80000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000e52656f6e636f696e204441505073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352434e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610162578063095ea7b3146101ec57806318160ddd1461022457806323b872dd1461024b57806330e4f9aa14610275578063313ce5671461028a57806342966c68146102b557806370a08231146102cd57806379c65068146102ee57806379cc6790146103145780638da5cb5b1461033857806395d89b4114610369578063a9059cbb1461037e578063aca867b3146103a2578063b414d4b6146103c6578063c0001786146103e7578063cae9ca511461040b578063dd62ed3e14610474578063e724529c1461049b578063f1b621b6146104c1578063f2fde38b146104d9575b33600034101561012b57600080fd5b3415156101545761013b816104fa565b1561014557600080fd5b61014e81610558565b5061015f565b61015d816106ea565b505b50005b34801561016e57600080fd5b5061017761074f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f857600080fd5b50610210600160a060020a03600435166024356107dc565b604080519115158252519081900360200190f35b34801561023057600080fd5b50610239610842565b60408051918252519081900360200190f35b34801561025757600080fd5b50610210600160a060020a0360043581169060243516604435610848565b34801561028157600080fd5b506102396108e5565b34801561029657600080fd5b5061029f6108ea565b6040805160ff9092168252519081900360200190f35b3480156102c157600080fd5b506102106004356108f3565b3480156102d957600080fd5b50610239600160a060020a0360043516610993565b3480156102fa57600080fd5b50610312600160a060020a03600435166024356109a5565b005b34801561032057600080fd5b50610210600160a060020a0360043516602435610a90565b34801561034457600080fd5b5061034d610bcd565b60408051600160a060020a039092168252519081900360200190f35b34801561037557600080fd5b50610177610bdc565b34801561038a57600080fd5b50610210600160a060020a0360043516602435610c34565b3480156103ae57600080fd5b50610312600160a060020a0360043516602435610c4a565b3480156103d257600080fd5b50610210600160a060020a0360043516610caa565b3480156103f357600080fd5b50610210600160a060020a0360043516602435610cbf565b34801561041757600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610210948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d939650505050505050565b34801561048057600080fd5b50610239600160a060020a0360043581169060243516610eac565b3480156104a757600080fd5b50610312600160a060020a03600435166024351515610ec9565b3480156104cd57600080fd5b5061034d600435610f44565b3480156104e557600080fd5b50610312600160a060020a0360043516610f6c565b6000805b60075481101561054d5782600160a060020a031660078281548110151561052157fe5b600091825260209091200154600160a060020a031614156105455760019150610552565b6001016104fe565b600091505b50919050565b60008054600d54600754600160a060020a03909216911061057c5760009150610552565b600c546007541061060257600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801805473ffffffffffffffffffffffffffffffffffffffff191633179055600354600a80546105f2928492879260ff909216900a02610fb2565b6105fd336001610ee0565b610552565b600b546007541061067657600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801805473ffffffffffffffffffffffffffffffffffffffff1916331790556003546009546105f2918391869160ff16600a0a02610fb2565b600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68801805473ffffffffffffffffffffffffffffffffffffffff1916331790556003546008546106df918391869160ff16600a0a02610fb2565b610552336001610ee0565b600160a060020a0381166000818152600e60209081526040808320805460ff191690558051938452908301829052805191927f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5929081900390910190a1506001919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107d45780601f106107a9576101008083540402835291602001916107d4565b820191906000526020600020905b8154815290600101906020018083116107b757829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045481565b600160a060020a038316600090815260066020908152604080832033845290915281205482111561087857600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020546108ac908363ffffffff61112616565b600160a060020a03851660009081526006602090815260408083203384529091529020556108db848484610fb2565b5060019392505050565b303190565b60035460ff1681565b3360009081526005602052604081205482111561090f57600080fd5b3360009081526005602052604090205461092f908363ffffffff61112616565b33600090815260056020526040902055600454610952908363ffffffff61112616565b60045560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b60056020526000908152604090205481565b600054600160a060020a031633146109bc57600080fd5b600160a060020a0382166000908152600560205260409020546109e5908263ffffffff61113816565b600160a060020a038316600090815260056020526040902055600454610a11908263ffffffff61113816565b60045560408051828152905130916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3604080518281529051600160a060020a0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a038216600090815260056020526040812054821115610ab557600080fd5b600160a060020a0383166000908152600660209081526040808320338452909152902054821115610ae557600080fd5b600160a060020a038316600090815260056020526040902054610b0e908363ffffffff61112616565b600160a060020a0384166000908152600560209081526040808320939093556006815282822033835290522054610b4b908363ffffffff61112616565b600160a060020a0384166000908152600660209081526040808320338452909152902055600454610b82908363ffffffff61112616565b600455604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107d45780601f106107a9576101008083540402835291602001916107d4565b6000610c41338484610fb2565b50600192915050565b600054600160a060020a03163314610c6157600080fd5b600160a060020a038216600090815260056020526040902054610c8a908263ffffffff61113816565b600160a060020a0390921660009081526005602052604090209190915550565b600e6020526000908152604090205460ff1681565b60008054600160a060020a03163314610cd757600080fd5b600160a060020a038316600090815260056020526040902054821115610cfc57600080fd5b600160a060020a038316600090815260056020526040902054610d25908363ffffffff61112616565b600160a060020a038416600090815260056020526040902055600454610d51908363ffffffff61112616565b60045560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600083610da081856107dc565b15610ea4576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610e38578181015183820152602001610e20565b50505050905090810190601f168015610e655780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610e8757600080fd5b505af1158015610e9b573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610ee057600080fd5b600160a060020a0382166000818152600e6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6007805482908110610f5257fe5b600091825260209091200154600160a060020a0316905081565b600054600160a060020a03163314610f8357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610fc757600080fd5b600160a060020a038316600090815260056020526040902054811115610fec57600080fd5b600160a060020a038216600090815260056020526040902054611015818363ffffffff61113816565b101561102057600080fd5b600160a060020a0383166000908152600e602052604090205460ff161561104657600080fd5b600160a060020a0382166000908152600e602052604090205460ff161561106c57600080fd5b600160a060020a038316600090815260056020526040902054611095908263ffffffff61112616565b600160a060020a0380851660009081526005602052604080822093909355908416815220546110ca908263ffffffff61113816565b600160a060020a0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561113257fe5b50900390565b60008282018381101561114757fe5b93925050505600a165627a7a723058209f3a918d58cdcd31fed25d52b3f80f39bf30e850a2be0643570057cd8e1b2a1f0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000ba43b74000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000061a80000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000e52656f6e636f696e204441505073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352434e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 50000000000
Arg [1] : tokenName (string): Reoncoin DAPPs
Arg [2] : tokenSymbol (string): RCN
Arg [3] : pOneQty (uint256): 25000
Arg [4] : pTwoQty (uint256): 10000
Arg [5] : pThreeQty (uint256): 5000
Arg [6] : pOneUsers (uint256): 250
Arg [7] : pTwoUsers (uint256): 500
Arg [8] : pThreeUsers (uint256): 1000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000ba43b7400
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000061a8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [5] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [6] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [8] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [10] : 52656f6e636f696e204441505073000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 52434e0000000000000000000000000000000000000000000000000000000000


Swarm Source

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