ETH Price: $3,266.33 (+3.15%)

Token

World Wide Anonymous Messaging (WWAM)
 

Overview

Max Total Supply

110,038.671 WWAM

Holders

287

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Balance
36.188 WWAM

Value
$0.00
0xb0d6576b4b92500576ef728df24c861e52e45e24
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:
CrowdsaleToken

Compiler Version
v0.4.6+commit.2dabbdf0

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-07-25
*/

pragma solidity ^0.4.6;

/*
 * ERC20 interface
 * see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 {
  uint public totalSupply;
  function balanceOf(address who) constant returns (uint);
  function allowance(address owner, address spender) constant returns (uint);

  function transfer(address to, uint value) returns (bool ok);
  function transferFrom(address from, address to, uint value) returns (bool ok);
  function approve(address spender, uint value) returns (bool ok);
  event Transfer(address indexed from, address indexed to, uint value);
  event Approval(address indexed owner, address indexed spender, uint value);
}

/**
 * Math operations with safety checks
 */
contract SafeMath {
  function safeMul(uint a, uint b) internal returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function safeDiv(uint a, uint b) internal returns (uint) {
    assert(b > 0);
    uint c = a / b;
    assert(a == b * c + a % b);
    return c;
  }

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

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

  function max64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a >= b ? a : b;
  }

  function min64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a < b ? a : b;
  }

  function max256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a >= b ? a : b;
  }

  function min256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a < b ? a : b;
  }

  function assert(bool assertion) internal {
    if (!assertion) {
      throw;
    }
  }
}



/**
 * Standard ERC20 token with Short Hand Attack and approve() race condition mitigation.
 *
 * Based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, SafeMath {

  /* Token supply got increased and a new owner received these tokens */
  event Minted(address receiver, uint amount);

  /* Actual balances of token holders */
  mapping(address => uint) balances;

  /* approve() allowances */
  mapping (address => mapping (address => uint)) allowed;

  /* Interface declaration */
  function isToken() public constant returns (bool weAre) {
    return true;
  }

  function transfer(address _to, uint _value) returns (bool success) {
    balances[msg.sender] = safeSub(balances[msg.sender], _value);
    balances[_to] = safeAdd(balances[_to], _value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  function transferFrom(address _from, address _to, uint _value) returns (bool success) {
    uint _allowance = allowed[_from][msg.sender];

    balances[_to] = safeAdd(balances[_to], _value);
    balances[_from] = safeSub(balances[_from], _value);
    allowed[_from][msg.sender] = safeSub(_allowance, _value);
    Transfer(_from, _to, _value);
    return true;
  }

  function balanceOf(address _owner) constant returns (uint balance) {
    return balances[_owner];
  }

  function approve(address _spender, uint _value) returns (bool success) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw;

    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  function allowance(address _owner, address _spender) constant returns (uint remaining) {
    return allowed[_owner][_spender];
  }

}

/**
 * Upgrade agent interface inspired by Lunyr.
 *
 * Upgrade agent transfers tokens to a new contract.
 * Upgrade agent itself can be the token contract, or just a middle man contract doing the heavy lifting.
 */
contract UpgradeAgent {

  uint public originalSupply;

  /** Interface marker */
  function isUpgradeAgent() public constant returns (bool) {
    return true;
  }

  function upgradeFrom(address _from, uint256 _value) public;

}

/**
 * A token upgrade mechanism where users can opt-in amount of tokens to the next smart contract revision.
 *
 * First envisioned by Golem and Lunyr projects.
 */
contract UpgradeableToken is StandardToken {

  /** Contract / person who can set the upgrade path. This can be the same as team multisig wallet, as what it is with its default value. */
  address public upgradeMaster;

  /** The next contract where the tokens will be migrated. */
  UpgradeAgent public upgradeAgent;

  /** How many tokens we have upgraded by now. */
  uint256 public totalUpgraded;

  /**
   * Upgrade states.
   *
   * - NotAllowed: The child contract has not reached a condition where the upgrade can bgun
   * - WaitingForAgent: Token allows upgrade, but we don't have a new agent yet
   * - ReadyToUpgrade: The agent is set, but not a single token has been upgraded yet
   * - Upgrading: Upgrade agent is set and the balance holders can upgrade their tokens
   *
   */
  enum UpgradeState {Unknown, NotAllowed, WaitingForAgent, ReadyToUpgrade, Upgrading}

  /**
   * Somebody has upgraded some of his tokens.
   */
  event Upgrade(address indexed _from, address indexed _to, uint256 _value);

  /**
   * New upgrade agent available.
   */
  event UpgradeAgentSet(address agent);

  /**
   * Do not allow construction without upgrade master set.
   */
  function UpgradeableToken(address _upgradeMaster) {
    upgradeMaster = _upgradeMaster;
  }

  /**
   * Allow the token holder to upgrade some of their tokens to a new contract.
   */
  function upgrade(uint256 value) public {

      UpgradeState state = getUpgradeState();
      if(!(state == UpgradeState.ReadyToUpgrade || state == UpgradeState.Upgrading)) {
        // Called in a bad state
        throw;
      }

      // Validate input value.
      if (value == 0) throw;

      balances[msg.sender] = safeSub(balances[msg.sender], value);

      // Take tokens out from circulation
      totalSupply = safeSub(totalSupply, value);
      totalUpgraded = safeAdd(totalUpgraded, value);

      // Upgrade agent reissues the tokens
      upgradeAgent.upgradeFrom(msg.sender, value);
      Upgrade(msg.sender, upgradeAgent, value);
  }

  /**
   * Set an upgrade agent that handles
   */
  function setUpgradeAgent(address agent) external {

      if(!canUpgrade()) {
        // The token is not yet in a state that we could think upgrading
        throw;
      }

      if (agent == 0x0) throw;
      // Only a master can designate the next agent
      if (msg.sender != upgradeMaster) throw;
      // Upgrade has already begun for an agent
      if (getUpgradeState() == UpgradeState.Upgrading) throw;

      upgradeAgent = UpgradeAgent(agent);

      // Bad interface
      if(!upgradeAgent.isUpgradeAgent()) throw;
      // Make sure that token supplies match in source and target
      if (upgradeAgent.originalSupply() != totalSupply) throw;

      UpgradeAgentSet(upgradeAgent);
  }

  /**
   * Get the state of the token upgrade.
   */
  function getUpgradeState() public constant returns(UpgradeState) {
    if(!canUpgrade()) return UpgradeState.NotAllowed;
    else if(address(upgradeAgent) == 0x00) return UpgradeState.WaitingForAgent;
    else if(totalUpgraded == 0) return UpgradeState.ReadyToUpgrade;
    else return UpgradeState.Upgrading;
  }

  /**
   * Change the upgrade master.
   *
   * This allows us to set a new owner for the upgrade mechanism.
   */
  function setUpgradeMaster(address master) public {
      if (master == 0x0) throw;
      if (msg.sender != upgradeMaster) throw;
      upgradeMaster = master;
  }

  /**
   * Child contract can enable to provide the condition when the upgrade can begun.
   */
  function canUpgrade() public constant returns(bool) {
     return true;
  }

}

/*
 * Ownable
 *
 * Base contract with an owner.
 * Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner.
 */
contract Ownable {
  address public owner;

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

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

  function transferOwnership(address newOwner) onlyOwner {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}

/**
 * Define interface for releasing the token transfer after a successful crowdsale.
 */
contract ReleasableToken is ERC20, Ownable {

  /* The finalizer contract that allows unlift the transfer limits on this token */
  address public releaseAgent;

  /** A crowdsale contract can release us to the wild if ICO success. If false we are are in transfer lock up period.*/
  bool public released = false;

  /** Map of agents that are allowed to transfer tokens regardless of the lock down period. These are crowdsale contracts and possible the team multisig itself. */
  mapping (address => bool) public transferAgents;

  /**
   * Limit token transfer until the crowdsale is over.
   *
   */
  modifier canTransfer(address _sender) {

    if(!released) {
        if(!transferAgents[_sender]) {
            throw;
        }
    }

    _;
  }

  /**
   * Set the contract that can call release and make the token transferable.
   *
   * Design choice. Allow reset the release agent to fix fat finger mistakes.
   */
  function setReleaseAgent(address addr) onlyOwner inReleaseState(false) public {

    // We don't do interface check here as we might want to a normal wallet address to act as a release agent
    releaseAgent = addr;
  }

  /**
   * Owner can allow a particular address (a crowdsale contract) to transfer tokens despite the lock up period.
   */
  function setTransferAgent(address addr, bool state) onlyOwner inReleaseState(false) public {
    transferAgents[addr] = state;
  }

  /**
   * One way function to release the tokens to the wild.
   *
   * Can be called only from the release agent that is the final ICO contract. It is only called if the crowdsale has been success (first milestone reached).
   */
  function releaseTokenTransfer() public onlyReleaseAgent {
    released = true;
  }

  /** The function can be called only before or after the tokens have been releasesd */
  modifier inReleaseState(bool releaseState) {
    if(releaseState != released) {
        throw;
    }
    _;
  }

  /** The function can be called only by a whitelisted release agent. */
  modifier onlyReleaseAgent() {
    if(msg.sender != releaseAgent) {
        throw;
    }
    _;
  }

  function transfer(address _to, uint _value) canTransfer(msg.sender) returns (bool success) {
    // Call StandardToken.transfer()
   return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint _value) canTransfer(_from) returns (bool success) {
    // Call StandardToken.transferForm()
    return super.transferFrom(_from, _to, _value);
  }

}

/**
 * A token that can increase its supply by another contract.
 *
 * This allows uncapped crowdsale by dynamically increasing the supply when money pours in.
 * Only mint agents, contracts whitelisted by owner, can mint new tokens.
 *
 */
contract MintableToken is StandardToken, Ownable {


  bool public mintingFinished = false;

  /** List of agents that are allowed to create new tokens */
  mapping (address => bool) public mintAgents;

  event MintingAgentChanged(address addr, bool state  );

  /**
   * Create new tokens and allocate them to an address..
   *
   * Only callably by a crowdsale contract (mint agent).
   */
  function mint(address receiver, uint amount) onlyMintAgent canMint public {
    totalSupply = safeAdd(totalSupply, amount);
    balances[receiver] = safeAdd(balances[receiver], amount);

    // This will make the mint transaction appear in EtherScan.io
    // We can remove this after there is a standardized minting event
    Transfer(0, receiver, amount);
  }

  /**
   * Owner can allow a crowdsale contract to mint new tokens.
   */
  function setMintAgent(address addr, bool state) onlyOwner canMint public {
    mintAgents[addr] = state;
    MintingAgentChanged(addr, state);
  }

  modifier onlyMintAgent() {
    // Only crowdsale contracts are allowed to mint new tokens
    if(!mintAgents[msg.sender]) {
        throw;
    }
    _;
  }

  /** Make sure we are not done yet. */
  modifier canMint() {
    if(mintingFinished) throw;
    _;
  }
}

/**
 * A token that can be revoked before then end of the crowdsale.
 */
contract WWAMBountyToken is StandardToken, Ownable {

  /** List of agents that are allowed to revoke tokens */
  mapping (address => bool) public bountyAgents;
  
  event BountyAgentChanged(address addr, bool state  );
  
  /*
  * Function to revoke tokens in case the terms and conditions of the bounty campaign are violated by an user after tokens were assigned
  */
  function revokeTokens(address receiver, uint tokenAmount) onlyBountyAgent {
      if (balances[receiver] >= tokenAmount) {
	    totalSupply = safeSub(totalSupply, tokenAmount);
	    balances[receiver] = safeSub(balances[receiver], tokenAmount);
      }
  }
  
   /**
   * Owner can allow a crowdsale contract to revoke tokens.
   */
  function setBountyAgent(address addr, bool state) onlyOwner public {
    bountyAgents[addr] = state;
    BountyAgentChanged(addr, state);
  }
  
  modifier onlyBountyAgent() {
    // Only crowdsale contracts are allowed to revoke tokens
    if(!bountyAgents[msg.sender]) {
        throw;
    }
    _;
  }
  
}



/**
 * A crowdsaled token.
 *
 * An ERC-20 token designed specifically for crowdsales with investor protection and further development path.
 *
 * - The token transfer() is disabled until the crowdsale is over
 * - The token contract gives an opt-in upgrade path to a new contract
 * - The same token can be part of several crowdsales through approve() mechanism
 * - The token can be capped (supply set in the constructor) or uncapped (crowdsale contract can mint new tokens)
 *
 */
contract CrowdsaleToken is ReleasableToken, MintableToken, UpgradeableToken, WWAMBountyToken {

  event UpdatedTokenInformation(string newName, string newSymbol);

  string public name;

  string public symbol;

  uint public decimals;

  /**
   * Construct the token.
   *
   * This token must be created through a team multisig wallet, so that it is owned by that wallet.
   */
  function CrowdsaleToken(string _name, string _symbol, uint _initialSupply, uint _decimals)
    UpgradeableToken(msg.sender) {

    // Create any address, can be transferred
    // to team multisig via changeOwner(),
    // also remember to call setUpgradeMaster()
    owner = msg.sender;

    name = _name;
    symbol = _symbol;

    totalSupply = _initialSupply;

    decimals = _decimals;

    // Create initially all balance on the team multisig
    balances[owner] = totalSupply;
  }

  /**
   * When token is released to be transferable, enforce no new tokens can be created.
   */
  function releaseTokenTransfer() public onlyReleaseAgent {
    mintingFinished = true;
    super.releaseTokenTransfer();
  }

  /**
   * Allow upgrade agent functionality kick in only if the crowdsale was success.
   */
  function canUpgrade() public constant returns(bool) {
    return released;
  }

  /**
   * Owner can update token information here
   */
  function setTokenInformation(string _name, string _symbol) onlyOwner {
    name = _name;
    symbol = _symbol;

    UpdatedTokenInformation(name, symbol);
  }

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setBountyAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"revokeTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"bountyAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"BountyAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","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"}]

60606040526004805460a060020a60ff02191690556006805460ff19169055346200000057604051620018d8380380620018d883398101604090815281516020830151918301516060840151918401939290920191905b335b5b60038054600160a060020a0319166c01000000000000000000000000338102041790555b60088054600160a060020a0319166c01000000000000000000000000838102041790555b5060038054600160a060020a0319166c01000000000000000000000000338102041790558351600c8054600082905290917fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7602060026101006001861615026000190190941693909304601f9081018490048201938901908390106200013357805160ff191683800117855562000163565b8280016001018555821562000163579182015b828111156200016357825182559160200191906001019062000146565b5b50620001879291505b808211156200018357600081556001016200016d565b5090565b505082600d9080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001d757805160ff191683800117855562000207565b8280016001018555821562000207579182015b8281111562000207578251825591602001919060010190620001ea565b5b506200022b9291505b808211156200018357600081556001016200016d565b5090565b50506000828155600e829055600354600160a060020a031681526001602052604090208290555b505050505b61167280620002666000396000f36060604052361561018a5760e060020a600035046302f652a3811461018f57806305d2035b146101a457806306fdde03146101c5578063095ea7b3146102405780630ba466241461026757806318160ddd1461027c57806323b872dd1461029b57806329ff4f53146102c5578063313ce567146102d757806340c10f19146102f657806342c1867b1461030b578063432146751461032f57806345977d03146103445780634eee966f146103565780635de4ccb0146103e85780635f412d4f14610411578063600440cb1461042057806370a0823114610449578063721a37d21461046b5780638444b39114610480578063867c2857146104ab5780638da5cb5b146104cf57806395d89b41146104f857806396132521146105735780639738968c146105945780639a6ced6d146105b5578063a9059cbb146105d9578063c752ff6214610600578063d1f276d31461061f578063d7e7088a14610648578063dd62ed3e1461065a578063eefa597b1461067f578063f2fde38b146106a0578063ffeb7d75146106b2575b610000565b34610000576101a26004356024356106c4565b005b34610000576101b161072b565b604080519115158252519081900360200190f35b34610000576101d2610734565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101b16004356024356107c2565b604080519115158252519081900360200190f35b34610000576101a2600435602435610868565b005b34610000576102896108ef565b60408051918252519081900360200190f35b34610000576101b16004356024356044356108f5565b604080519115158252519081900360200190f35b34610000576101a260043561094c565b005b34610000576102896109a2565b60408051918252519081900360200190f35b34610000576101a26004356024356109a8565b005b34610000576101b1600435610a6b565b604080519115158252519081900360200190f35b34610000576101a2600435602435610a80565b005b34610000576101a2600435610b18565b005b34610000576101a2600480803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284375050604080516020601f89358b01803591820183900483028401830190945280835297999881019791965091820194509250829150840183828082843750949650610c7795505050505050565b005b34610000576103f5610efa565b60408051600160a060020a039092168252519081900360200190f35b34610000576101a2610f09565b005b34610000576103f5610f3d565b60408051600160a060020a039092168252519081900360200190f35b3461000057610289600435610f4c565b60408051918252519081900360200190f35b34610000576101a2600435602435610f6b565b005b346100005761048d611003565b60405180826004811161000057815260200191505060405180910390f35b34610000576101b160043561105c565b604080519115158252519081900360200190f35b34610000576103f5611071565b60408051600160a060020a039092168252519081900360200190f35b34610000576101d2611080565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101b161110e565b604080519115158252519081900360200190f35b34610000576101b161111e565b604080519115158252519081900360200190f35b34610000576101b160043561112f565b604080519115158252519081900360200190f35b34610000576101b1600435602435611144565b604080519115158252519081900360200190f35b3461000057610289611199565b60408051918252519081900360200190f35b34610000576103f561119f565b60408051600160a060020a039092168252519081900360200190f35b34610000576101a26004356111ae565b005b346100005761028960043560243561135c565b60408051918252519081900360200190f35b34610000576101b1611389565b604080519115158252519081900360200190f35b34610000576101a260043561138f565b005b34610000576101a26004356113d9565b005b60035433600160a060020a039081169116146106df57610000565b60045460009060a060020a900460ff16156106f957610000565b600160a060020a0383166000908152600560205260409020805460ff191660f860020a848102041790555b5b505b5050565b60065460ff1681565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b505050505081565b600081158015906107f75750600160a060020a0333811660009081526002602090815260408083209387168352929052205415155b1561080157610000565b600160a060020a03338116600081815260026020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b60035433600160a060020a0390811691161461088357610000565b600160a060020a0382166000818152600b6020908152604091829020805460ff191660f860020a8681020417905581519283528315159083015280517f908d16deecf4dd479aea594fe917a941127a019a9f10afaa7fa1bc1ce7e4caf99281900390910190a15b5b5050565b60005481565b600454600090849060a060020a900460ff16151561093457600160a060020a03811660009081526005602052604090205460ff16151561093457610000565b5b610940858585611427565b91505b5b509392505050565b60035433600160a060020a0390811691161461096757610000565b60045460009060a060020a900460ff161561098157610000565b60048054600160a060020a031916606060020a848102041790555b5b505b50565b600e5481565b600160a060020a03331660009081526007602052604090205460ff1615156109cf57610000565b60065460ff16156109df57610000565b6109eb6000548261152a565b6000908155600160a060020a038316815260016020526040902054610a10908261152a565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35b5b5b5050565b60076020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610a9b57610000565b60065460ff1615610aab57610000565b600160a060020a038216600081815260076020908152604091829020805460ff191660f860020a8681020417905581519283528315159083015280517f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa9281900390910190a15b5b5b5050565b6000610b22611003565b905060038160048111610000571480610b4357506004816004811161000057145b1515610b4e57610000565b811515610b5a57610000565b600160a060020a033316600090815260016020526040902054610b7d9083611552565b600160a060020a03331660009081526001602052604081209190915554610ba49083611552565b600055600a54610bb4908361152a565b600a55600954604080517f753e88e5000000000000000000000000000000000000000000000000000000008152600160a060020a033381166004830152602482018690529151919092169163753e88e591604480830192600092919082900301818387803b156100005760325a03f115610000575050600954604080518581529051600160a060020a03928316935033909216917f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac9181900360200190a35b5050565b60035433600160a060020a03908116911614610c9257610000565b81600c9080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610cde57805160ff1916838001178555610d0b565b82800160010185558215610d0b579182015b82811115610d0b578251825591602001919060010190610cf0565b5b50610d2c9291505b80821115610d285760008155600101610d14565b5090565b505080600d9080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610d7a57805160ff1916838001178555610da7565b82800160010185558215610da7579182015b82811115610da7578251825591602001919060010190610d8c565b5b50610dc89291505b80821115610d285760008155600101610d14565b5090565b505060408051818152600c8054600260001961010060018416150201909116049282018390527fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb46929091600d9181906020820190606083019086908015610e705780601f10610e4557610100808354040283529160200191610e70565b820191906000526020600020905b815481529060010190602001808311610e5357829003601f168201915b5050838103825284546002600019610100600184161502019091160480825260209091019085908015610ee45780601f10610eb957610100808354040283529160200191610ee4565b820191906000526020600020905b815481529060010190602001808311610ec757829003601f168201915b505094505050505060405180910390a15b5b5050565b600954600160a060020a031681565b60045433600160a060020a03908116911614610f2457610000565b6006805460ff19166001179055610f3961156b565b5b5b565b600854600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b600160a060020a0333166000908152600b602052604090205460ff161515610f9257610000565b600160a060020a03821660009081526001602052604090205481901061072757610fbe60005482611552565b6000908155600160a060020a038316815260016020526040902054610fe39082611552565b600160a060020a0383166000908152600160205260409020555b5b5b5050565b600061100d61111e565b151561101f5750600161105656611056565b600954600160a060020a0316151561103d5750600261105656611056565b600a5415156110525750600361105656611056565b5060045b5b5b5b90565b60056020526000908152604090205460ff1681565b600354600160a060020a031681565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b505050505081565b60045460a060020a900460ff1681565b60045460a060020a900460ff165b90565b600b6020526000908152604090205460ff1681565b600454600090339060a060020a900460ff16151561118357600160a060020a03811660009081526005602052604090205460ff16151561118357610000565b5b61118e84846115ae565b91505b5b5092915050565b600a5481565b600454600160a060020a031681565b6111b661111e565b15156111c157610000565b600160a060020a03811615156111d657610000565b60085433600160a060020a039081169116146111f157610000565b60046111fb611003565b6004811161000057141561120e57610000565b60098054600160a060020a031916606060020a838102041790819055604080516000602091820181905282517f61d3d7a60000000000000000000000000000000000000000000000000000000081529251600160a060020a03909416936361d3d7a69360048082019493918390030190829087803b156100005760325a03f11561000057505060405151151590506112a557610000565b600054600960009054906101000a9004600160a060020a0316600160a060020a0316634b2ba0dd6000604051602001526040518160e060020a028152600401809050602060405180830381600087803b156100005760325a03f1156100005750506040515191909114905061131957610000565b60095460408051600160a060020a039092168252517f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc9181900360200190a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60015b90565b60035433600160a060020a039081169116146113aa57610000565b600160a060020a0381161561099f5760038054600160a060020a031916606060020a838102041790555b5b5b50565b600160a060020a03811615156113ee57610000565b60085433600160a060020a0390811691161461140957610000565b60088054600160a060020a031916606060020a838102041790555b50565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611468908461152a565b600160a060020a0380861660009081526001602052604080822093909355908716815220546114979084611552565b600160a060020a0386166000908152600160205260409020556114ba8184611552565b600160a060020a038087166000818152600260209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600191505b509392505050565b60008282016115478482108015906115425750838210155b611662565b8091505b5092915050565b600061156083831115611662565b508082035b92915050565b60045433600160a060020a0390811691161461158657610000565b6004805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b600160a060020a0333166000908152600160205260408120546115d19083611552565b600160a060020a033381166000908152600160205260408082209390935590851681522054611600908361152a565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b80151561099f57610000565b5b5056000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000001e576f726c64205769646520416e6f6e796d6f7573204d6573736167696e67000000000000000000000000000000000000000000000000000000000000000000045757414d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052361561018a5760e060020a600035046302f652a3811461018f57806305d2035b146101a457806306fdde03146101c5578063095ea7b3146102405780630ba466241461026757806318160ddd1461027c57806323b872dd1461029b57806329ff4f53146102c5578063313ce567146102d757806340c10f19146102f657806342c1867b1461030b578063432146751461032f57806345977d03146103445780634eee966f146103565780635de4ccb0146103e85780635f412d4f14610411578063600440cb1461042057806370a0823114610449578063721a37d21461046b5780638444b39114610480578063867c2857146104ab5780638da5cb5b146104cf57806395d89b41146104f857806396132521146105735780639738968c146105945780639a6ced6d146105b5578063a9059cbb146105d9578063c752ff6214610600578063d1f276d31461061f578063d7e7088a14610648578063dd62ed3e1461065a578063eefa597b1461067f578063f2fde38b146106a0578063ffeb7d75146106b2575b610000565b34610000576101a26004356024356106c4565b005b34610000576101b161072b565b604080519115158252519081900360200190f35b34610000576101d2610734565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101b16004356024356107c2565b604080519115158252519081900360200190f35b34610000576101a2600435602435610868565b005b34610000576102896108ef565b60408051918252519081900360200190f35b34610000576101b16004356024356044356108f5565b604080519115158252519081900360200190f35b34610000576101a260043561094c565b005b34610000576102896109a2565b60408051918252519081900360200190f35b34610000576101a26004356024356109a8565b005b34610000576101b1600435610a6b565b604080519115158252519081900360200190f35b34610000576101a2600435602435610a80565b005b34610000576101a2600435610b18565b005b34610000576101a2600480803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284375050604080516020601f89358b01803591820183900483028401830190945280835297999881019791965091820194509250829150840183828082843750949650610c7795505050505050565b005b34610000576103f5610efa565b60408051600160a060020a039092168252519081900360200190f35b34610000576101a2610f09565b005b34610000576103f5610f3d565b60408051600160a060020a039092168252519081900360200190f35b3461000057610289600435610f4c565b60408051918252519081900360200190f35b34610000576101a2600435602435610f6b565b005b346100005761048d611003565b60405180826004811161000057815260200191505060405180910390f35b34610000576101b160043561105c565b604080519115158252519081900360200190f35b34610000576103f5611071565b60408051600160a060020a039092168252519081900360200190f35b34610000576101d2611080565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101b161110e565b604080519115158252519081900360200190f35b34610000576101b161111e565b604080519115158252519081900360200190f35b34610000576101b160043561112f565b604080519115158252519081900360200190f35b34610000576101b1600435602435611144565b604080519115158252519081900360200190f35b3461000057610289611199565b60408051918252519081900360200190f35b34610000576103f561119f565b60408051600160a060020a039092168252519081900360200190f35b34610000576101a26004356111ae565b005b346100005761028960043560243561135c565b60408051918252519081900360200190f35b34610000576101b1611389565b604080519115158252519081900360200190f35b34610000576101a260043561138f565b005b34610000576101a26004356113d9565b005b60035433600160a060020a039081169116146106df57610000565b60045460009060a060020a900460ff16156106f957610000565b600160a060020a0383166000908152600560205260409020805460ff191660f860020a848102041790555b5b505b5050565b60065460ff1681565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b505050505081565b600081158015906107f75750600160a060020a0333811660009081526002602090815260408083209387168352929052205415155b1561080157610000565b600160a060020a03338116600081815260026020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b60035433600160a060020a0390811691161461088357610000565b600160a060020a0382166000818152600b6020908152604091829020805460ff191660f860020a8681020417905581519283528315159083015280517f908d16deecf4dd479aea594fe917a941127a019a9f10afaa7fa1bc1ce7e4caf99281900390910190a15b5b5050565b60005481565b600454600090849060a060020a900460ff16151561093457600160a060020a03811660009081526005602052604090205460ff16151561093457610000565b5b610940858585611427565b91505b5b509392505050565b60035433600160a060020a0390811691161461096757610000565b60045460009060a060020a900460ff161561098157610000565b60048054600160a060020a031916606060020a848102041790555b5b505b50565b600e5481565b600160a060020a03331660009081526007602052604090205460ff1615156109cf57610000565b60065460ff16156109df57610000565b6109eb6000548261152a565b6000908155600160a060020a038316815260016020526040902054610a10908261152a565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35b5b5b5050565b60076020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610a9b57610000565b60065460ff1615610aab57610000565b600160a060020a038216600081815260076020908152604091829020805460ff191660f860020a8681020417905581519283528315159083015280517f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa9281900390910190a15b5b5b5050565b6000610b22611003565b905060038160048111610000571480610b4357506004816004811161000057145b1515610b4e57610000565b811515610b5a57610000565b600160a060020a033316600090815260016020526040902054610b7d9083611552565b600160a060020a03331660009081526001602052604081209190915554610ba49083611552565b600055600a54610bb4908361152a565b600a55600954604080517f753e88e5000000000000000000000000000000000000000000000000000000008152600160a060020a033381166004830152602482018690529151919092169163753e88e591604480830192600092919082900301818387803b156100005760325a03f115610000575050600954604080518581529051600160a060020a03928316935033909216917f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac9181900360200190a35b5050565b60035433600160a060020a03908116911614610c9257610000565b81600c9080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610cde57805160ff1916838001178555610d0b565b82800160010185558215610d0b579182015b82811115610d0b578251825591602001919060010190610cf0565b5b50610d2c9291505b80821115610d285760008155600101610d14565b5090565b505080600d9080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610d7a57805160ff1916838001178555610da7565b82800160010185558215610da7579182015b82811115610da7578251825591602001919060010190610d8c565b5b50610dc89291505b80821115610d285760008155600101610d14565b5090565b505060408051818152600c8054600260001961010060018416150201909116049282018390527fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb46929091600d9181906020820190606083019086908015610e705780601f10610e4557610100808354040283529160200191610e70565b820191906000526020600020905b815481529060010190602001808311610e5357829003601f168201915b5050838103825284546002600019610100600184161502019091160480825260209091019085908015610ee45780601f10610eb957610100808354040283529160200191610ee4565b820191906000526020600020905b815481529060010190602001808311610ec757829003601f168201915b505094505050505060405180910390a15b5b5050565b600954600160a060020a031681565b60045433600160a060020a03908116911614610f2457610000565b6006805460ff19166001179055610f3961156b565b5b5b565b600854600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b600160a060020a0333166000908152600b602052604090205460ff161515610f9257610000565b600160a060020a03821660009081526001602052604090205481901061072757610fbe60005482611552565b6000908155600160a060020a038316815260016020526040902054610fe39082611552565b600160a060020a0383166000908152600160205260409020555b5b5b5050565b600061100d61111e565b151561101f5750600161105656611056565b600954600160a060020a0316151561103d5750600261105656611056565b600a5415156110525750600361105656611056565b5060045b5b5b5b90565b60056020526000908152604090205460ff1681565b600354600160a060020a031681565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b505050505081565b60045460a060020a900460ff1681565b60045460a060020a900460ff165b90565b600b6020526000908152604090205460ff1681565b600454600090339060a060020a900460ff16151561118357600160a060020a03811660009081526005602052604090205460ff16151561118357610000565b5b61118e84846115ae565b91505b5b5092915050565b600a5481565b600454600160a060020a031681565b6111b661111e565b15156111c157610000565b600160a060020a03811615156111d657610000565b60085433600160a060020a039081169116146111f157610000565b60046111fb611003565b6004811161000057141561120e57610000565b60098054600160a060020a031916606060020a838102041790819055604080516000602091820181905282517f61d3d7a60000000000000000000000000000000000000000000000000000000081529251600160a060020a03909416936361d3d7a69360048082019493918390030190829087803b156100005760325a03f11561000057505060405151151590506112a557610000565b600054600960009054906101000a9004600160a060020a0316600160a060020a0316634b2ba0dd6000604051602001526040518160e060020a028152600401809050602060405180830381600087803b156100005760325a03f1156100005750506040515191909114905061131957610000565b60095460408051600160a060020a039092168252517f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc9181900360200190a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60015b90565b60035433600160a060020a039081169116146113aa57610000565b600160a060020a0381161561099f5760038054600160a060020a031916606060020a838102041790555b5b5b50565b600160a060020a03811615156113ee57610000565b60085433600160a060020a0390811691161461140957610000565b60088054600160a060020a031916606060020a838102041790555b50565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611468908461152a565b600160a060020a0380861660009081526001602052604080822093909355908716815220546114979084611552565b600160a060020a0386166000908152600160205260409020556114ba8184611552565b600160a060020a038087166000818152600260209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600191505b509392505050565b60008282016115478482108015906115425750838210155b611662565b8091505b5092915050565b600061156083831115611662565b508082035b92915050565b60045433600160a060020a0390811691161461158657610000565b6004805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b600160a060020a0333166000908152600160205260408120546115d19083611552565b600160a060020a033381166000908152600160205260408082209390935590851681522054611600908361152a565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b80151561099f57610000565b5b5056

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000001e576f726c64205769646520416e6f6e796d6f7573204d6573736167696e67000000000000000000000000000000000000000000000000000000000000000000045757414d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): World Wide Anonymous Messaging
Arg [1] : _symbol (string): WWAM
Arg [2] : _initialSupply (uint256): 0
Arg [3] : _decimals (uint256): 3

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [5] : 576f726c64205769646520416e6f6e796d6f7573204d6573736167696e670000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5757414d00000000000000000000000000000000000000000000000000000000


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.