ETH Price: $3,307.95 (-3.04%)
Gas: 21 Gwei

Token

URUN (URUN)
 

Overview

Max Total Supply

80,000,000 URUN

Holders

3,389

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4.313078790231127488 URUN

Value
$0.00
0x61bd0594e0b02ebb679f1763684cad2c1c4f29aa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The only gambling platform 100% managed by its community. Players control the house, host all the games and receive most of the profit.

ICO Information

ICO Start Date : May 15th, 2018  
ICO End Date : October 15th, 2018
Total Cap : 80,000,000 URUN
Soft Cap : 4,000,000 URUN
Token Distribution Date : Immediately after purchasing
ICO Price  : 1 URUN = 0.00125 ETH
Bonus : 50%, 40%, 20%, 10%, 5%
Country : Hong Kong

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
URUNToken

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.4.23;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  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;
  }

  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;
  }

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

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}
/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}
/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    /// Total amount of tokens
  uint256 public totalSupply;
  
  function balanceOf(address _owner) public view returns (uint256 balance);
  
  function transfer(address _to, uint256 _amount) public returns (bool success);
  
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender) public view returns (uint256 remaining);
  
  function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success);
  
  function approve(address _spender, uint256 _amount) public returns (bool success);
  
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  //balance in each address account
  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _amount The amount to be transferred.
  */
  function transfer(address _to, uint256 _amount) public returns (bool success) {
    require(_to != address(0));
    require(balances[msg.sender] >= _amount && _amount > 0
        && balances[_to].add(_amount) > balances[_to]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Transfer(msg.sender, _to, _amount);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 */
contract StandardToken is ERC20, BasicToken {
  
  
  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _amount uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) {
    require(_to != address(0));
    require(balances[_from] >= _amount);
    require(allowed[_from][msg.sender] >= _amount);
    require(_amount > 0 && balances[_to].add(_amount) > balances[_to]);

    balances[_from] = balances[_from].sub(_amount);
    balances[_to] = balances[_to].add(_amount);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
    emit Transfer(_from, _to, _amount);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _amount The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _amount) public returns (bool success) {
    allowed[msg.sender][_spender] = _amount;
    emit Approval(msg.sender, _spender, _amount);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is StandardToken, Ownable {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public onlyOwner{
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[msg.sender] = balances[msg.sender].sub(_value);
        totalSupply = totalSupply.sub(_value);
        emit Burn(msg.sender, _value);
    }
}
/**
 * @title URUN Token
 * @dev Token representing URUN.
 */
 contract URUNToken is BurnableToken {
     string public name ;
     string public symbol ;
     uint8 public decimals = 18 ;
     
     /**
     *@dev users sending ether to this contract will be reverted. Any ether sent to the contract will be sent back to the caller
     */
     function ()public payable {
         revert();
     }
     
     /**
     * @dev Constructor function to initialize the initial supply of token to the creator of the contract
     * @param initialSupply The initial supply of tokens which will be fixed through out
     * @param tokenName The name of the token
     * @param tokenSymbol The symboll of the token
     */
     constructor(
            uint256 initialSupply,
            string tokenName,
            string tokenSymbol,
            address wallet
         ) public {
         owner = wallet;
         totalSupply = initialSupply.mul( 10 ** uint256(decimals)); //Update total supply with the decimal amount
         name = tokenName;
         symbol = tokenSymbol;
         balances[wallet] = totalSupply;
         
         //Emitting transfer event since assigning all tokens to the creator also corresponds to the transfer of tokens to the creator
         emit Transfer(address(0), msg.sender, totalSupply);
     }
     
     /**
     *@dev helper method to get token details, name, symbol and totalSupply in one go
     */
    function getTokenDetail() public view returns (string, string, uint256) {
	    return (name, symbol, totalSupply);
    }
 }

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":"_amount","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":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTokenDetail","outputs":[{"name":"","type":"string"},{"name":"","type":"string"},{"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","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":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":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":"wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526006805460ff191660121790553480156200001e57600080fd5b5060405162000df638038062000df68339810160409081528151602083015191830151606084015160038054600160a060020a038084163391909116600160a060020a03199283161790911617905560065492949384019391909101916200009c90859060ff16600a0a64010000000062000b846200012c82021704565b6000558251620000b490600490602086019062000166565b508151620000ca90600590602085019062000166565b5060008054600160a060020a0380841683526001602090815260408085208490558051938452513390921693927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050506200020b565b6000808315156200014157600091506200015f565b508282028284828115156200015257fe5b04146200015b57fe5b8091505b5092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b6200020891905b80821115620001e75760008155600101620001f2565b90565b610bdb806200021b6000396000f3006080604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018b57806323b872dd146101b2578063289de615146101dc578063313ce567146102d657806342966c681461030157806370a082311461031b5780638da5cb5b1461033c57806395d89b411461036d578063a9059cbb14610382578063dd62ed3e146103a6578063f2fde38b146103cd575b600080fd5b3480156100d557600080fd5b506100de6103ee565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610118578181015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015f57600080fd5b50610177600160a060020a036004351660243561047c565b604080519115158252519081900360200190f35b34801561019757600080fd5b506101a06104e6565b60408051918252519081900360200190f35b3480156101be57600080fd5b50610177600160a060020a03600435811690602435166044356104ec565b3480156101e857600080fd5b506101f16106af565b604051808060200180602001848152602001838103835286818151815260200191508051906020019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610298578181015183820152602001610280565b50505050905090810190601f1680156102c55780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156102e257600080fd5b506102eb6107f0565b6040805160ff9092168252519081900360200190f35b34801561030d57600080fd5b506103196004356107f9565b005b34801561032757600080fd5b506101a0600160a060020a03600435166108d4565b34801561034857600080fd5b506103516108ef565b60408051600160a060020a039092168252519081900360200190f35b34801561037957600080fd5b506100de6108fe565b34801561038e57600080fd5b50610177600160a060020a0360043516602435610959565b3480156103b257600080fd5b506101a0600160a060020a0360043581169060243516610a94565b3480156103d957600080fd5b50610319600160a060020a0360043516610abf565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000600160a060020a038316151561050357600080fd5b600160a060020a03841660009081526001602052604090205482111561052857600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561055b57600080fd5b6000821180156105915750600160a060020a03831660009081526001602052604090205461058f818463ffffffff610b5816565b115b151561059c57600080fd5b600160a060020a0384166000908152600160205260409020546105c5908363ffffffff610b7216565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105fa908363ffffffff610b5816565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610642908363ffffffff610b7216565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b606080600060046005600054828054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050855460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152959850879450925084019050828280156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b50505050509150925092509250909192565b60065460ff1681565b60035433600160a060020a0390811691161461081457600080fd5b600160a060020a03331660009081526001602052604090205481111561083957600080fd5b600160a060020a033316600090815260016020526040902054610862908263ffffffff610b7216565b600160a060020a0333166000908152600160205260408120919091555461088f908263ffffffff610b7216565b600055604080518281529051600160a060020a033316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104745780601f1061044957610100808354040283529160200191610474565b6000600160a060020a038316151561097057600080fd5b600160a060020a03331660009081526001602052604090205482118015906109985750600082115b80156109ca5750600160a060020a0383166000908152600160205260409020546109c8818463ffffffff610b5816565b115b15156109d557600080fd5b600160a060020a0333166000908152600160205260409020546109fe908363ffffffff610b7216565b600160a060020a033381166000908152600160205260408082209390935590851681522054610a33908363ffffffff610b5816565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610ada57600080fd5b600160a060020a0381161515610aef57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610b6757fe5b8091505b5092915050565b600082821115610b7e57fe5b50900390565b600080831515610b975760009150610b6b565b50828202828482811515610ba757fe5b0414610b6757fe00a165627a7a7230582079f81b7185d08ce3f72bc9bad4dbadd1ba0eeb29ebc6457484ba3f6fdb3fc88e00290000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000009162bd9c5bfb9e39e87ce3e39b558a5546710b800000000000000000000000000000000000000000000000000000000000000045552554e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045552554e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018b57806323b872dd146101b2578063289de615146101dc578063313ce567146102d657806342966c681461030157806370a082311461031b5780638da5cb5b1461033c57806395d89b411461036d578063a9059cbb14610382578063dd62ed3e146103a6578063f2fde38b146103cd575b600080fd5b3480156100d557600080fd5b506100de6103ee565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610118578181015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015f57600080fd5b50610177600160a060020a036004351660243561047c565b604080519115158252519081900360200190f35b34801561019757600080fd5b506101a06104e6565b60408051918252519081900360200190f35b3480156101be57600080fd5b50610177600160a060020a03600435811690602435166044356104ec565b3480156101e857600080fd5b506101f16106af565b604051808060200180602001848152602001838103835286818151815260200191508051906020019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610298578181015183820152602001610280565b50505050905090810190601f1680156102c55780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156102e257600080fd5b506102eb6107f0565b6040805160ff9092168252519081900360200190f35b34801561030d57600080fd5b506103196004356107f9565b005b34801561032757600080fd5b506101a0600160a060020a03600435166108d4565b34801561034857600080fd5b506103516108ef565b60408051600160a060020a039092168252519081900360200190f35b34801561037957600080fd5b506100de6108fe565b34801561038e57600080fd5b50610177600160a060020a0360043516602435610959565b3480156103b257600080fd5b506101a0600160a060020a0360043581169060243516610a94565b3480156103d957600080fd5b50610319600160a060020a0360043516610abf565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000600160a060020a038316151561050357600080fd5b600160a060020a03841660009081526001602052604090205482111561052857600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561055b57600080fd5b6000821180156105915750600160a060020a03831660009081526001602052604090205461058f818463ffffffff610b5816565b115b151561059c57600080fd5b600160a060020a0384166000908152600160205260409020546105c5908363ffffffff610b7216565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105fa908363ffffffff610b5816565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610642908363ffffffff610b7216565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b606080600060046005600054828054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050855460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152959850879450925084019050828280156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b50505050509150925092509250909192565b60065460ff1681565b60035433600160a060020a0390811691161461081457600080fd5b600160a060020a03331660009081526001602052604090205481111561083957600080fd5b600160a060020a033316600090815260016020526040902054610862908263ffffffff610b7216565b600160a060020a0333166000908152600160205260408120919091555461088f908263ffffffff610b7216565b600055604080518281529051600160a060020a033316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104745780601f1061044957610100808354040283529160200191610474565b6000600160a060020a038316151561097057600080fd5b600160a060020a03331660009081526001602052604090205482118015906109985750600082115b80156109ca5750600160a060020a0383166000908152600160205260409020546109c8818463ffffffff610b5816565b115b15156109d557600080fd5b600160a060020a0333166000908152600160205260409020546109fe908363ffffffff610b7216565b600160a060020a033381166000908152600160205260408082209390935590851681522054610a33908363ffffffff610b5816565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610ada57600080fd5b600160a060020a0381161515610aef57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610b6757fe5b8091505b5092915050565b600082821115610b7e57fe5b50900390565b600080831515610b975760009150610b6b565b50828202828482811515610ba757fe5b0414610b6757fe00a165627a7a7230582079f81b7185d08ce3f72bc9bad4dbadd1ba0eeb29ebc6457484ba3f6fdb3fc88e0029

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

0000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000009162bd9c5bfb9e39e87ce3e39b558a5546710b800000000000000000000000000000000000000000000000000000000000000045552554e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045552554e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 80000000
Arg [1] : tokenName (string): URUN
Arg [2] : tokenSymbol (string): URUN
Arg [3] : wallet (address): 0x09162Bd9C5BfB9e39E87Ce3e39B558a5546710b8

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000004c4b400
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 00000000000000000000000009162bd9c5bfb9e39e87ce3e39b558a5546710b8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5552554e00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5552554e00000000000000000000000000000000000000000000000000000000


Swarm Source

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