ETH Price: $3,551.91 (+2.67%)
Gas: 48 Gwei

Token

MediChain Promo Token (MCUX)
 

Overview

Max Total Supply

4,020 MCUX

Holders

78,584

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
10 MCUX

Value
$0.00
0x9cb6247bf9e22da514b1b32acae28c560c73d848
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MediChain is a medical big-data platform. It allows patients to store their own data in a secure way and give access to specialists anywhere regardless of the payer network or EMR (Electronic Medical Record) used.

ICO Information

ICO Start Date : Mar 1, 2018
ICO End Date : May 1, 2018
Total Cap : $100,000,000
Hard Cap : $ 40,000,000
Soft Cap : $ 2,000,000
ICO Price  : $1
Country : United Kingdom

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MCUXPromoToken

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-03-15
*/

/*
 * Safe Math Smart Contract.  Copyright © 2016–2017 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 */
pragma solidity ^0.4.20;

/**
 * Provides methods to safely add, subtract and multiply uint256 numbers.
 */
contract SafeMath {
  uint256 constant private MAX_UINT256 =
    0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;

  /**
   * Add two uint256 values, throw in case of overflow.
   *
   * @param x first value to add
   * @param y second value to add
   * @return x + y
   */
  function safeAdd (uint256 x, uint256 y)
  pure internal
  returns (uint256 z) {
    assert (x <= MAX_UINT256 - y);
    return x + y;
  }

  /**
   * Subtract one uint256 value from another, throw in case of underflow.
   *
   * @param x value to subtract from
   * @param y value to subtract
   * @return x - y
   */
  function safeSub (uint256 x, uint256 y)
  pure internal
  returns (uint256 z) {
    assert (x >= y);
    return x - y;
  }

  /**
   * Multiply two uint256 values, throw in case of overflow.
   *
   * @param x first value to multiply
   * @param y second value to multiply
   * @return x * y
   */
  function safeMul (uint256 x, uint256 y)
  pure internal
  returns (uint256 z) {
    if (y == 0) return 0; // Prevent division by zero at the next line
    assert (x <= MAX_UINT256 / y);
    return x * y;
  }
}
/*
 * EIP-20 Standard Token Smart Contract Interface.
 * Copyright © 2016–2018 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 */

/**
 * ERC-20 standard token interface, as defined
 * <a href="https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md">here</a>.
 */
contract Token {
  /**
   * Get total number of tokens in circulation.
   *
   * @return total number of tokens in circulation
   */
  function totalSupply () public view returns (uint256 supply);

  /**
   * Get number of tokens currently belonging to given owner.
   *
   * @param _owner address to get number of tokens currently belonging to the
   *        owner of
   * @return number of tokens currently belonging to the owner of given address
   */
  function balanceOf (address _owner) public view returns (uint256 balance);

  /**
   * Transfer given number of tokens from message sender to given recipient.
   *
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer to the owner of given address
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transfer (address _to, uint256 _value)
  public returns (bool success);

  /**
   * Transfer given number of tokens from given owner to given recipient.
   *
   * @param _from address to transfer tokens from the owner of
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer from given owner to given
   *        recipient
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transferFrom (address _from, address _to, uint256 _value)
  public returns (bool success);

  /**
   * Allow given spender to transfer given number of tokens from message sender.
   *
   * @param _spender address to allow the owner of to transfer tokens from
   *        message sender
   * @param _value number of tokens to allow to transfer
   * @return true if token transfer was successfully approved, false otherwise
   */
  function approve (address _spender, uint256 _value)
  public returns (bool success);

  /**
   * Tell how many tokens given spender is currently allowed to transfer from
   * given owner.
   *
   * @param _owner address to get number of tokens allowed to be transferred
   *        from the owner of
   * @param _spender address to get number of tokens allowed to be transferred
   *        by the owner of
   * @return number of tokens given spender is currently allowed to transfer
   *         from given owner
   */
  function allowance (address _owner, address _spender)
  public view returns (uint256 remaining);

  /**
   * Logged when tokens were transferred from one owner to another.
   *
   * @param _from address of the owner, tokens were transferred from
   * @param _to address of the owner, tokens were transferred to
   * @param _value number of tokens transferred
   */
  event Transfer (address indexed _from, address indexed _to, uint256 _value);

  /**
   * Logged when owner approved his tokens to be transferred by some spender.
   *
   * @param _owner owner who approved his tokens to be transferred
   * @param _spender spender who were allowed to transfer the tokens belonging
   *        to the owner
   * @param _value number of tokens belonging to the owner, approved to be
   *        transferred by the spender
   */
  event Approval (
    address indexed _owner, address indexed _spender, uint256 _value);
}/*
 * Address Set Smart Contract Interface.
 * Copyright © 2017–2018 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 */

/**
 * Address Set smart contract interface.
 */
contract AddressSet {
  /**
   * Check whether address set contains given address.
   *
   * @param _address address to check
   * @return true if address set contains given address, false otherwise
   */
  function contains (address _address) public view returns (bool);
}
/*
 * Abstract Token Smart Contract.  Copyright © 2017 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 */

/**
 * Abstract Token Smart Contract that could be used as a base contract for
 * ERC-20 token contracts.
 */
contract AbstractToken is Token, SafeMath {
  /**
   * Create new Abstract Token contract.
   */
  function AbstractToken () public {
    // Do nothing
  }

  /**
   * Get number of tokens currently belonging to given owner.
   *
   * @param _owner address to get number of tokens currently belonging to the
   *        owner of
   * @return number of tokens currently belonging to the owner of given address
   */
  function balanceOf (address _owner) public view returns (uint256 balance) {
    return accounts [_owner];
  }

  /**
   * Transfer given number of tokens from message sender to given recipient.
   *
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer to the owner of given address
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transfer (address _to, uint256 _value)
  public returns (bool success) {
    uint256 fromBalance = accounts [msg.sender];
    if (fromBalance < _value) return false;
    if (_value > 0 && msg.sender != _to) {
      accounts [msg.sender] = safeSub (fromBalance, _value);
      accounts [_to] = safeAdd (accounts [_to], _value);
    }
    Transfer (msg.sender, _to, _value);
    return true;
  }

  /**
   * Transfer given number of tokens from given owner to given recipient.
   *
   * @param _from address to transfer tokens from the owner of
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer from given owner to given
   *        recipient
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transferFrom (address _from, address _to, uint256 _value)
  public returns (bool success) {
    uint256 spenderAllowance = allowances [_from][msg.sender];
    if (spenderAllowance < _value) return false;
    uint256 fromBalance = accounts [_from];
    if (fromBalance < _value) return false;

    allowances [_from][msg.sender] =
      safeSub (spenderAllowance, _value);

    if (_value > 0 && _from != _to) {
      accounts [_from] = safeSub (fromBalance, _value);
      accounts [_to] = safeAdd (accounts [_to], _value);
    }
    Transfer (_from, _to, _value);
    return true;
  }

  /**
   * Allow given spender to transfer given number of tokens from message sender.
   *
   * @param _spender address to allow the owner of to transfer tokens from
   *        message sender
   * @param _value number of tokens to allow to transfer
   * @return true if token transfer was successfully approved, false otherwise
   */
  function approve (address _spender, uint256 _value)
  public returns (bool success) {
    allowances [msg.sender][_spender] = _value;
    Approval (msg.sender, _spender, _value);

    return true;
  }

  /**
   * Tell how many tokens given spender is currently allowed to transfer from
   * given owner.
   *
   * @param _owner address to get number of tokens allowed to be transferred
   *        from the owner of
   * @param _spender address to get number of tokens allowed to be transferred
   *        by the owner of
   * @return number of tokens given spender is currently allowed to transfer
   *         from given owner
   */
  function allowance (address _owner, address _spender)
  public view returns (uint256 remaining) {
    return allowances [_owner][_spender];
  }

  /**
   * Mapping from addresses of token holders to the numbers of tokens belonging
   * to these token holders.
   */
  mapping (address => uint256) internal accounts;

  /**
   * Mapping from addresses of token holders to the mapping of addresses of
   * spenders to the allowances set by these token holders to these spenders.
   */
  mapping (address => mapping (address => uint256)) internal allowances;
}
/*
 * Abstract Virtual Token Smart Contract.
 * Copyright © 2017–2018 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 */


/**
 * Abstract Token Smart Contract that could be used as a base contract for
 * ERC-20 token contracts supporting virtual balance.
 */
contract AbstractVirtualToken is AbstractToken {
  /**
   * Maximum number of real (i.e. non-virtual) tokens in circulation (2^255-1).
   */
  uint256 constant MAXIMUM_TOKENS_COUNT =
    0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;

  /**
   * Mask used to extract real balance of an account (2^255-1).
   */
  uint256 constant BALANCE_MASK =
    0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;

  /**
   * Mask used to extract "materialized" flag of an account (2^255).
   */
  uint256 constant MATERIALIZED_FLAG_MASK =
    0x8000000000000000000000000000000000000000000000000000000000000000;

  /**
   * Create new Abstract Virtual Token contract.
   */
  function AbstractVirtualToken () public AbstractToken () {
    // Do nothing
  }

  /**
   * Get total number of tokens in circulation.
   *
   * @return total number of tokens in circulation
   */
  function totalSupply () public view returns (uint256 supply) {
    return tokensCount;
  }

  /**
   * Get number of tokens currently belonging to given owner.
   *
   * @param _owner address to get number of tokens currently belonging to the
   *        owner of
   * @return number of tokens currently belonging to the owner of given address
   */
  function balanceOf (address _owner) public view returns (uint256 balance) {
    return safeAdd (
      accounts [_owner] & BALANCE_MASK, getVirtualBalance (_owner));
  }

  /**
   * Transfer given number of tokens from message sender to given recipient.
   *
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer to the owner of given address
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transfer (address _to, uint256 _value)
  public returns (bool success) {
    if (_value > balanceOf (msg.sender)) return false;
    else {
      materializeBalanceIfNeeded (msg.sender, _value);
      return AbstractToken.transfer (_to, _value);
    }
  }

  /**
   * Transfer given number of tokens from given owner to given recipient.
   *
   * @param _from address to transfer tokens from the owner of
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer from given owner to given
   *        recipient
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transferFrom (address _from, address _to, uint256 _value)
  public returns (bool success) {
    if (_value > allowance (_from, msg.sender)) return false;
    if (_value > balanceOf (_from)) return false;
    else {
      materializeBalanceIfNeeded (_from, _value);
      return AbstractToken.transferFrom (_from, _to, _value);
    }
  }

  /**
   * Get virtual balance of the owner of given address.
   *
   * @param _owner address to get virtual balance for the owner of
   * @return virtual balance of the owner of given address
   */
  function virtualBalanceOf (address _owner)
  internal view returns (uint256 _virtualBalance);

  /**
   * Calculate virtual balance of the owner of given address taking into account
   * materialized flag and total number of real tokens already in circulation.
   */
  function getVirtualBalance (address _owner)
  private view returns (uint256 _virtualBalance) {
    if (accounts [_owner] & MATERIALIZED_FLAG_MASK != 0) return 0;
    else {
      _virtualBalance = virtualBalanceOf (_owner);
      uint256 maxVirtualBalance = safeSub (MAXIMUM_TOKENS_COUNT, tokensCount);
      if (_virtualBalance > maxVirtualBalance)
        _virtualBalance = maxVirtualBalance;
    }
  }

  /**
   * Materialize virtual balance of the owner of given address if this will help
   * to transfer given number of tokens from it.
   *
   * @param _owner address to materialize virtual balance of
   * @param _value number of tokens to be transferred
   */
  function materializeBalanceIfNeeded (address _owner, uint256 _value) private {
    uint256 storedBalance = accounts [_owner];
    if (storedBalance & MATERIALIZED_FLAG_MASK == 0) {
      // Virtual balance is not materialized yet
      if (_value > storedBalance) {
        // Real balance is not enough
        uint256 virtualBalance = getVirtualBalance (_owner);
        require (safeSub (_value, storedBalance) <= virtualBalance);
        accounts [_owner] = MATERIALIZED_FLAG_MASK |
          safeAdd (storedBalance, virtualBalance);
        tokensCount = safeAdd (tokensCount, virtualBalance);
      }
    }
  }

  /**
   * Number of real (i.e. non-virtual) tokens in circulation.
   */
  uint256 internal tokensCount;
}
/*
 * MediChain Promo Token Smart Contract.  Copyright © 2018 by ABDK Consulting.
 * Author: Mikhail Vladimirov <[email protected]>
 */

/**
 * MediChain Promo Tokem Smart Contract.
 */
contract MCUXPromoToken is AbstractVirtualToken {
  /**
   * Number of virtual tokens to assign to the owners of addresses from given
   * address set.
   */
  uint256 private constant VIRTUAL_COUNT = 10e8;

  /**
   * Create MediChainPromoToken smart contract with given address set.
   *
   * @param _addressSet address set to use
   */
  function MCUXPromoToken (AddressSet _addressSet)
  public AbstractVirtualToken () {
    owner = msg.sender;
    addressSet = _addressSet;
  }

  /**
   * Get name of this token.
   *
   * @return name of this token
   */
  function name () public pure returns (string) {
    return "MediChain Promo Token ";
  }

  /**
   * Get symbol of this token.
   *
   * @return symbol of this token
   */
  function symbol () public pure returns (string) {
    return "MCUX";
  }

  /**
   * Get number of decimals for this token.
   *
   * @return number of decimals for this token
   */
  function decimals () public pure returns (uint8) {
    return 8;
  }

  /**
   * Notify owners about their virtual balances.
   *
   * @param _owners addresses of the owners to be notified
   */
  function massNotify (address [] _owners) public {
    require (msg.sender == owner);
    uint256 count = _owners.length;
    for (uint256 i = 0; i < count; i++)
      Transfer (address (0), _owners [i], VIRTUAL_COUNT);
  }

  /**
   * Kill this smart contract.
   */
  function kill () public {
    require (msg.sender == owner);
    selfdestruct (owner);
  }

  /**
   * Change owner of the smart contract.
   *
   * @param _owner address of a new owner of the smart contract
   */
  function changeOwner (address _owner) public {
    require (msg.sender == owner);

    owner = _owner;
  }

  /**
   * Get virtual balance of the owner of given address.
   *
   * @param _owner address to get virtual balance for the owner of
   * @return virtual balance of the owner of given address
   */
  function virtualBalanceOf (address _owner)
  internal view returns (uint256 _virtualBalance) {
    return addressSet.contains (_owner) ? VIRTUAL_COUNT : 0;
  }

  /**
   * Address of the owner of this smart contract.
   */
  address internal owner;

  /**
   * Address set of addresses that are eligible for initial balance.
   */
  AddressSet internal addressSet;
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owners","type":"address[]"}],"name":"massNotify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"supply","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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[],"name":"kill","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_addressSet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

6060604052341561000f57600080fd5b604051602080610aca8339810160405280805160038054600160a060020a03338116600160a060020a031992831617909255600480549290931691161790555050610a6b8061005f6000396000f3006060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b3146101485780630e6848cc1461017e57806318160ddd146101cf57806323b872dd146101f4578063313ce5671461021c57806341c0e1b51461024557806370a082311461025857806395d89b4114610277578063a6f9dae11461028a578063a9059cbb146102a9578063dd62ed3e146102cb575b600080fd5b34156100c957600080fd5b6100d16102f0565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a0360043516602435610331565b604051901515815260200160405180910390f35b341561018957600080fd5b6101cd600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061039e95505050505050565b005b34156101da57600080fd5b6101e2610434565b60405190815260200160405180910390f35b34156101ff57600080fd5b61016a600160a060020a036004358116906024351660443561043a565b341561022757600080fd5b61022f61048c565b60405160ff909116815260200160405180910390f35b341561025057600080fd5b6101cd610491565b341561026357600080fd5b6101e2600160a060020a03600435166104ba565b341561028257600080fd5b6100d1610507565b341561029557600080fd5b6101cd600160a060020a0360043516610548565b34156102b457600080fd5b61016a600160a060020a0360043516602435610592565b34156102d657600080fd5b6101e2600160a060020a03600435811690602435166105c7565b6102f8610a2d565b60408051908101604052601681527f4d656469436861696e2050726f6d6f20546f6b656e20000000000000000000006020820152905090565b600160a060020a03338116600081815260016020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600354600090819033600160a060020a039081169116146103be57600080fd5b82519150600090505b8181101561042f578281815181106103db57fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef633b9aca0060405190815260200160405180910390a36001016103c7565b505050565b60025490565b600061044684336105c7565b82111561045557506000610485565b61045e846104ba565b82111561046d57506000610485565b61047784836105f2565b610482848484610686565b90505b9392505050565b600890565b60035433600160a060020a039081169116146104ac57600080fd5b600354600160a060020a0316ff5b600160a060020a038116600090815260208190526040812054610398907f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610502846107ef565b610869565b61050f610a2d565b60408051908101604052600481527f4d435558000000000000000000000000000000000000000000000000000000006020820152905090565b60035433600160a060020a0390811691161461056357600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600061059d336104ba565b8211156105ac57506000610398565b6105b633836105f2565b6105c0838361087f565b9050610398565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0382166000908152602081905260408120549060ff60020a8216151561068057818311156106805761062a846107ef565b9050806106378484610976565b111561064257600080fd5b61064c8282610869565b600160a060020a038516600090815260208190526040902060ff60020a91909117905560025461067c9082610869565b6002555b50505050565b600160a060020a0380841660009081526001602090815260408083203390941683529290529081205481838210156106c157600092506107e6565b50600160a060020a038516600090815260208190526040902054838110156106ec57600092506107e6565b6106f68285610976565b600160a060020a0380881660009081526001602090815260408083203390941683529290529081209190915584118015610742575084600160a060020a031686600160a060020a031614155b1561079a576107518185610976565b600160a060020a0380881660009081526020819052604080822093909355908716815220546107809085610869565b600160a060020a0386166000908152602081905260409020555b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b600160a060020a038116600090815260208190526040812054819060ff60020a161561081e5760009150610863565b61082783610988565b91506108557f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600254610976565b905080821115610863578091505b50919050565b600060001982900383111561087a57fe5b500190565b600160a060020a033316600090815260208190526040812054828110156108a9576000915061096f565b6000831180156108cb575083600160a060020a031633600160a060020a031614155b15610923576108da8184610976565b600160a060020a0333811660009081526020819052604080822093909355908616815220546109099084610869565b600160a060020a0385166000908152602081905260409020555b83600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405190815260200160405180910390a3600191505b5092915050565b60008183101561098257fe5b50900390565b600454600090600160a060020a0316635dbe47e88383604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156109fc57600080fd5b6102c65a03f11515610a0d57600080fd5b50505060405180519050610a22576000610398565b50633b9aca00919050565b602060405190810160405260008152905600a165627a7a7230582080fe050d9173ba3ae423387b75b720340325997aa3ef0a4451e73f1dbe41a3ee0029000000000000000000000000384dc03e1e21a046009741f5c04ab645227ed785

Deployed Bytecode

0x6060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b3146101485780630e6848cc1461017e57806318160ddd146101cf57806323b872dd146101f4578063313ce5671461021c57806341c0e1b51461024557806370a082311461025857806395d89b4114610277578063a6f9dae11461028a578063a9059cbb146102a9578063dd62ed3e146102cb575b600080fd5b34156100c957600080fd5b6100d16102f0565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a0360043516602435610331565b604051901515815260200160405180910390f35b341561018957600080fd5b6101cd600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061039e95505050505050565b005b34156101da57600080fd5b6101e2610434565b60405190815260200160405180910390f35b34156101ff57600080fd5b61016a600160a060020a036004358116906024351660443561043a565b341561022757600080fd5b61022f61048c565b60405160ff909116815260200160405180910390f35b341561025057600080fd5b6101cd610491565b341561026357600080fd5b6101e2600160a060020a03600435166104ba565b341561028257600080fd5b6100d1610507565b341561029557600080fd5b6101cd600160a060020a0360043516610548565b34156102b457600080fd5b61016a600160a060020a0360043516602435610592565b34156102d657600080fd5b6101e2600160a060020a03600435811690602435166105c7565b6102f8610a2d565b60408051908101604052601681527f4d656469436861696e2050726f6d6f20546f6b656e20000000000000000000006020820152905090565b600160a060020a03338116600081815260016020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600354600090819033600160a060020a039081169116146103be57600080fd5b82519150600090505b8181101561042f578281815181106103db57fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef633b9aca0060405190815260200160405180910390a36001016103c7565b505050565b60025490565b600061044684336105c7565b82111561045557506000610485565b61045e846104ba565b82111561046d57506000610485565b61047784836105f2565b610482848484610686565b90505b9392505050565b600890565b60035433600160a060020a039081169116146104ac57600080fd5b600354600160a060020a0316ff5b600160a060020a038116600090815260208190526040812054610398907f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610502846107ef565b610869565b61050f610a2d565b60408051908101604052600481527f4d435558000000000000000000000000000000000000000000000000000000006020820152905090565b60035433600160a060020a0390811691161461056357600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600061059d336104ba565b8211156105ac57506000610398565b6105b633836105f2565b6105c0838361087f565b9050610398565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0382166000908152602081905260408120549060ff60020a8216151561068057818311156106805761062a846107ef565b9050806106378484610976565b111561064257600080fd5b61064c8282610869565b600160a060020a038516600090815260208190526040902060ff60020a91909117905560025461067c9082610869565b6002555b50505050565b600160a060020a0380841660009081526001602090815260408083203390941683529290529081205481838210156106c157600092506107e6565b50600160a060020a038516600090815260208190526040902054838110156106ec57600092506107e6565b6106f68285610976565b600160a060020a0380881660009081526001602090815260408083203390941683529290529081209190915584118015610742575084600160a060020a031686600160a060020a031614155b1561079a576107518185610976565b600160a060020a0380881660009081526020819052604080822093909355908716815220546107809085610869565b600160a060020a0386166000908152602081905260409020555b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b600160a060020a038116600090815260208190526040812054819060ff60020a161561081e5760009150610863565b61082783610988565b91506108557f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600254610976565b905080821115610863578091505b50919050565b600060001982900383111561087a57fe5b500190565b600160a060020a033316600090815260208190526040812054828110156108a9576000915061096f565b6000831180156108cb575083600160a060020a031633600160a060020a031614155b15610923576108da8184610976565b600160a060020a0333811660009081526020819052604080822093909355908616815220546109099084610869565b600160a060020a0385166000908152602081905260409020555b83600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405190815260200160405180910390a3600191505b5092915050565b60008183101561098257fe5b50900390565b600454600090600160a060020a0316635dbe47e88383604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156109fc57600080fd5b6102c65a03f11515610a0d57600080fd5b50505060405180519050610a22576000610398565b50633b9aca00919050565b602060405190810160405260008152905600a165627a7a7230582080fe050d9173ba3ae423387b75b720340325997aa3ef0a4451e73f1dbe41a3ee0029

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

000000000000000000000000384dc03e1e21a046009741f5c04ab645227ed785

-----Decoded View---------------
Arg [0] : _addressSet (address): 0x384DC03E1e21A046009741F5C04Ab645227ED785

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000384dc03e1e21a046009741f5c04ab645227ed785


Swarm Source

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