ETH Price: $2,711.94 (+1.49%)

Token

HALADINAR (HDN)
 

Overview

Max Total Supply

1,000,000,000 HDN

Holders

2,164

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 HDN

Value
$0.00
0x6833e78563c6b58ad8275bb28c596c7a3c7c7a51
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

HALADINAR is a global platform and online decentralized marketplace designed to serve both the Muslim and non-Muslim communities anywhere in the world. Goods and services in the HALADINAR Marketplace are Halal, Thoyyiban and Mubarakan.

ICO Information

ICO Start Date : Jul 1st, 2018  
ICO End Date : Nov 8th, 2018
Total Cap : 1 billion HDN
Token Distribution Date : Nov 9th, 2018
ICO Price  : $0.20
Country : Singapore

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HDN

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.23;
/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    if (a == 0) {
      return 0;
    }
    c = a * b;
    assert(c / a == b);
    return c;
  }

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

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

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    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 {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  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);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  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, Ownable {
  using SafeMath for uint256;
  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }
  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    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) {
    return balances[_owner];
  }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
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 _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    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 _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    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) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}


contract HDN is MintableToken {
  using SafeMath for uint256;    
  string public constant name = "HALADINAR";
  string public constant symbol = "HDN";
  uint32 public constant decimals = 18;
  address public addressFounders1;
  uint256 public summFounders1;
  address public addressFounders2;
  uint256 public summFounders2;
  address public addressFounders3;
  uint256 public summFounders3;
  address public addressFounders4;
  uint256 public summFounders4;
  constructor() public {
    addressFounders1 = 0x99D72C025DBDA9916788995a24D8c32d580AeAE6;  
    summFounders1 = 300000000 * (10 ** uint256(decimals));  
    mint(addressFounders1, summFounders1);
    addressFounders2 = 0x767B0dbe1d03BDbf2FD22112Ed779445E5B74FE4;  
    summFounders2 = 300000000 * (10 ** uint256(decimals));  
    mint(addressFounders2, summFounders2);
    addressFounders3 = 0x093A4A53D7BAEE802FdD76e60f01aaAB8E5410EC;  
    summFounders3 = 200000000 * (10 ** uint256(decimals));  
    mint(addressFounders3, summFounders3);
    addressFounders4 = 0xf61E022A87BB9F4d2Fd335e3fc5e26dc24f14f65;  
    summFounders4 = 200000000 * (10 ** uint256(decimals));  
    mint(addressFounders4, summFounders4);
    finishMinting();
  }      
      
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"summFounders2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"summFounders4","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"addressFounders1","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"summFounders3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressFounders3","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"summFounders1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressFounders4","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressFounders2","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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"}]

60806040526004805460ff191690553480156200001b57600080fd5b5060008054600160a060020a03191633179055600480547499d72c025dbda9916788995a24d8c32d580aeae60061010060a860020a031990911617908190556af8277896582678ac00000060058190556200008e916101009004600160a060020a031690640100000000620001b1810204565b5060068054600160a060020a03191673767b0dbe1d03bdbf2fd22112ed779445e5b74fe417908190556af8277896582678ac0000006007819055620000e691600160a060020a031690640100000000620001b1810204565b5060088054600160a060020a03191673093a4a53d7baee802fdd76e60f01aaab8e5410ec17908190556aa56fa5b99019a5c800000060098190556200013e91600160a060020a031690640100000000620001b1810204565b50600a8054600160a060020a03191673f61e022a87bb9f4d2fd335e3fc5e26dc24f14f6517908190556aa56fa5b99019a5c8000000600b8190556200019691600160a060020a031690640100000000620001b1810204565b50620001aa640100000000620002ca810204565b5062000344565b60008054600160a060020a03163314620001ca57600080fd5b60045460ff1615620001db57600080fd5b600254620001f8908364010000000062000c1e6200033082021704565b600255600160a060020a0383166000908152600160205260409020546200022e908364010000000062000c1e6200033082021704565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60008054600160a060020a03163314620002e357600080fd5b60045460ff1615620002f457600080fd5b6004805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b818101828110156200033e57fe5b92915050565b610c5d80620003546000396000f30060806040526004361061013d5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630191d35c81146101425780630240db331461016957806305d2035b1461017e57806306fdde03146101a7578063095ea7b31461023157806318160ddd1461025557806323b872dd1461026a578063313ce5671461029457806340c10f19146102c257806356cea4b2146102e657806363aa109c1461031757806365d9f31e1461032c578063661884631461034157806370a08231146103655780637d64bcb4146103865780638da5cb5b1461039b57806395d89b41146103b0578063a9059cbb146103c5578063c1f19220146103e9578063c48c68ee146103fe578063d73dd62314610413578063dd62ed3e14610437578063f2d906cc1461045e578063f2fde38b14610473575b600080fd5b34801561014e57600080fd5b50610157610496565b60408051918252519081900360200190f35b34801561017557600080fd5b5061015761049c565b34801561018a57600080fd5b506101936104a2565b604080519115158252519081900360200190f35b3480156101b357600080fd5b506101bc6104ab565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f65781810151838201526020016101de565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023d57600080fd5b50610193600160a060020a03600435166024356104e2565b34801561026157600080fd5b50610157610548565b34801561027657600080fd5b50610193600160a060020a036004358116906024351660443561054e565b3480156102a057600080fd5b506102a96106c7565b6040805163ffffffff9092168252519081900360200190f35b3480156102ce57600080fd5b50610193600160a060020a03600435166024356106cc565b3480156102f257600080fd5b506102fb6107cf565b60408051600160a060020a039092168252519081900360200190f35b34801561032357600080fd5b506101576107e3565b34801561033857600080fd5b506102fb6107e9565b34801561034d57600080fd5b50610193600160a060020a03600435166024356107f8565b34801561037157600080fd5b50610157600160a060020a03600435166108e8565b34801561039257600080fd5b50610193610903565b3480156103a757600080fd5b506102fb610967565b3480156103bc57600080fd5b506101bc610976565b3480156103d157600080fd5b50610193600160a060020a03600435166024356109ad565b3480156103f557600080fd5b50610157610a90565b34801561040a57600080fd5b506102fb610a96565b34801561041f57600080fd5b50610193600160a060020a0360043516602435610aa5565b34801561044357600080fd5b50610157600160a060020a0360043581169060243516610b3e565b34801561046a57600080fd5b506102fb610b69565b34801561047f57600080fd5b50610494600160a060020a0360043516610b78565b005b60075481565b600b5481565b60045460ff1681565b60408051808201909152600981527f48414c4144494e41520000000000000000000000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b6000600160a060020a038316151561056557600080fd5b600160a060020a03841660009081526001602052604090205482111561058a57600080fd5b600160a060020a03841660009081526003602090815260408083203384529091529020548211156105ba57600080fd5b600160a060020a0384166000908152600160205260409020546105e3908363ffffffff610c0c16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610618908363ffffffff610c1e16565b600160a060020a03808516600090815260016020908152604080832094909455918716815260038252828120338252909152205461065c908363ffffffff610c0c16565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b60008054600160a060020a031633146106e457600080fd5b60045460ff16156106f457600080fd5b600254610707908363ffffffff610c1e16565b600255600160a060020a038316600090815260016020526040902054610733908363ffffffff610c1e16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b6004546101009004600160a060020a031681565b60095481565b600854600160a060020a031681565b336000908152600360209081526040808320600160a060020a03861684529091528120548083111561084d57336000908152600360209081526040808320600160a060020a0388168452909152812055610882565b61085d818463ffffffff610c0c16565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60008054600160a060020a0316331461091b57600080fd5b60045460ff161561092b57600080fd5b6004805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600054600160a060020a031681565b60408051808201909152600381527f48444e0000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156109c457600080fd5b336000908152600160205260409020548211156109e057600080fd5b33600090815260016020526040902054610a00908363ffffffff610c0c16565b3360009081526001602052604080822092909255600160a060020a03851681522054610a32908363ffffffff610c1e16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60055481565b600a54600160a060020a031681565b336000908152600360209081526040808320600160a060020a0386168452909152812054610ad9908363ffffffff610c1e16565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600654600160a060020a031681565b600054600160a060020a03163314610b8f57600080fd5b600160a060020a0381161515610ba457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c1857fe5b50900390565b81810182811015610c2b57fe5b929150505600a165627a7a723058203af10e06af6867cabbec34f75ef99d00567f1fe7a8e5c2269e4a2dbe60cf98b30029

Deployed Bytecode

0x60806040526004361061013d5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630191d35c81146101425780630240db331461016957806305d2035b1461017e57806306fdde03146101a7578063095ea7b31461023157806318160ddd1461025557806323b872dd1461026a578063313ce5671461029457806340c10f19146102c257806356cea4b2146102e657806363aa109c1461031757806365d9f31e1461032c578063661884631461034157806370a08231146103655780637d64bcb4146103865780638da5cb5b1461039b57806395d89b41146103b0578063a9059cbb146103c5578063c1f19220146103e9578063c48c68ee146103fe578063d73dd62314610413578063dd62ed3e14610437578063f2d906cc1461045e578063f2fde38b14610473575b600080fd5b34801561014e57600080fd5b50610157610496565b60408051918252519081900360200190f35b34801561017557600080fd5b5061015761049c565b34801561018a57600080fd5b506101936104a2565b604080519115158252519081900360200190f35b3480156101b357600080fd5b506101bc6104ab565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f65781810151838201526020016101de565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023d57600080fd5b50610193600160a060020a03600435166024356104e2565b34801561026157600080fd5b50610157610548565b34801561027657600080fd5b50610193600160a060020a036004358116906024351660443561054e565b3480156102a057600080fd5b506102a96106c7565b6040805163ffffffff9092168252519081900360200190f35b3480156102ce57600080fd5b50610193600160a060020a03600435166024356106cc565b3480156102f257600080fd5b506102fb6107cf565b60408051600160a060020a039092168252519081900360200190f35b34801561032357600080fd5b506101576107e3565b34801561033857600080fd5b506102fb6107e9565b34801561034d57600080fd5b50610193600160a060020a03600435166024356107f8565b34801561037157600080fd5b50610157600160a060020a03600435166108e8565b34801561039257600080fd5b50610193610903565b3480156103a757600080fd5b506102fb610967565b3480156103bc57600080fd5b506101bc610976565b3480156103d157600080fd5b50610193600160a060020a03600435166024356109ad565b3480156103f557600080fd5b50610157610a90565b34801561040a57600080fd5b506102fb610a96565b34801561041f57600080fd5b50610193600160a060020a0360043516602435610aa5565b34801561044357600080fd5b50610157600160a060020a0360043581169060243516610b3e565b34801561046a57600080fd5b506102fb610b69565b34801561047f57600080fd5b50610494600160a060020a0360043516610b78565b005b60075481565b600b5481565b60045460ff1681565b60408051808201909152600981527f48414c4144494e41520000000000000000000000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b6000600160a060020a038316151561056557600080fd5b600160a060020a03841660009081526001602052604090205482111561058a57600080fd5b600160a060020a03841660009081526003602090815260408083203384529091529020548211156105ba57600080fd5b600160a060020a0384166000908152600160205260409020546105e3908363ffffffff610c0c16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610618908363ffffffff610c1e16565b600160a060020a03808516600090815260016020908152604080832094909455918716815260038252828120338252909152205461065c908363ffffffff610c0c16565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b60008054600160a060020a031633146106e457600080fd5b60045460ff16156106f457600080fd5b600254610707908363ffffffff610c1e16565b600255600160a060020a038316600090815260016020526040902054610733908363ffffffff610c1e16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b6004546101009004600160a060020a031681565b60095481565b600854600160a060020a031681565b336000908152600360209081526040808320600160a060020a03861684529091528120548083111561084d57336000908152600360209081526040808320600160a060020a0388168452909152812055610882565b61085d818463ffffffff610c0c16565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60008054600160a060020a0316331461091b57600080fd5b60045460ff161561092b57600080fd5b6004805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600054600160a060020a031681565b60408051808201909152600381527f48444e0000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156109c457600080fd5b336000908152600160205260409020548211156109e057600080fd5b33600090815260016020526040902054610a00908363ffffffff610c0c16565b3360009081526001602052604080822092909255600160a060020a03851681522054610a32908363ffffffff610c1e16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60055481565b600a54600160a060020a031681565b336000908152600360209081526040808320600160a060020a0386168452909152812054610ad9908363ffffffff610c1e16565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600654600160a060020a031681565b600054600160a060020a03163314610b8f57600080fd5b600160a060020a0381161515610ba457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c1857fe5b50900390565b81810182811015610c2b57fe5b929150505600a165627a7a723058203af10e06af6867cabbec34f75ef99d00567f1fe7a8e5c2269e4a2dbe60cf98b30029

Swarm Source

bzzr://3af10e06af6867cabbec34f75ef99d00567f1fe7a8e5c2269e4a2dbe60cf98b3
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.