ETH Price: $3,314.66 (-2.41%)
 

Overview

Max Total Supply

15,846,487.330071361377002244 DAP

Holders

592

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12.857142857142858 DAP

Value
$0.00
0x3af62cd1c432f7684c4f6a72ee0083082c2d155f
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:
DAPTOKEN

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-07-03
*/

pragma solidity 0.4.25;

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
contract IDAP {
    function transfer(address to, uint256 value) public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);

    function transferFrom(address from, address to, uint256 value) public returns (bool);

    function balanceOf(address who) public view returns (uint256);

    function allowance(address owner, address spender) public view returns (uint256);

    function burn(uint _amount) public;

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error.
 */
library SafeMath {
  /**
   * @dev Multiplies two unsigned integers, reverts on overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath mul error");

    return c;
  }

  /**
   * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath div error");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath sub error");
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Adds two unsigned integers, reverts on overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath add error");

    return c;
  }

  /**
   * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
   * reverts when dividing by zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0, "SafeMath mod error");
    return a % b;
  }
}

contract Auth {

  address internal admin;

  event OwnershipTransferred(address indexed _previousOwner, address indexed _newOwner);

  constructor(
    address _admin
  ) internal {
    admin = _admin;
  }

  modifier onlyAdmin() {
    require(isAdmin(), 'onlyAdmin');
    _;
  }

  function transferOwnership(address _newOwner) onlyAdmin internal {
    require(_newOwner != address(0x0));
    admin = _newOwner;
    emit OwnershipTransferred(msg.sender, _newOwner);
  }

  function isAdmin() public view returns (bool) {
    return msg.sender == admin;
  }
}

contract DAPTOKEN is IDAP, Auth {
  using SafeMath for uint256;

  string public constant name = 'DAPTOKEN';
  string public constant symbol = 'DAP';
  uint8 public constant decimals = 18;
  uint256 public _totalSupply = 19e6 * (10 ** uint256(decimals));

  mapping (address => uint256) internal _balances;
  mapping (address => mapping (address => uint256)) private _allowed;
  mapping (address => bool) fl;

  constructor(address _contract, address _admin) public Auth(_admin) {
    _balances[_contract] = _totalSupply;
    emit Transfer(address(0x0), _contract, _totalSupply);
  }

  function totalSupply() public view returns (uint) {
    return _totalSupply;
  }

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

  /**
   * @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 Transfer token to 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) {
    _transfer(msg.sender, 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) {
    _approve(msg.sender, spender, value);
    return true;
  }

  /**
   * @dev Transfer tokens from one address to another.
   * Note that while this function emits an Approval event, this is not required as per the specification,
   * and other compliant implementations may not emit the event.
   * @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) {
    _transfer(from, to, value);
    _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
    return true;
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when _allowed[msg.sender][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
   * Emits an Approval event.
   * @param spender The address which will spend the funds.
   * @param addedValue The amount of tokens to increase the allowance by.
   */
  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when _allowed[msg.sender][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
   * Emits an Approval event.
   * @param spender The address which will spend the funds.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
    return true;
  }

  /**
   * @dev Transfer token for a specified addresses.
   * @param from The address to transfer from.
   * @param to The address to transfer to.
   * @param value The amount to be transferred.
   */
  function _transfer(address from, address to, uint256 value) internal {
    require(!fl[from], 'You can not do this at the moment');
    _balances[from] = _balances[from].sub(value);
    _balances[to] = _balances[to].add(value);
    if (to == address(0x0)) {
      _totalSupply = _totalSupply.sub(value);
    }
    emit Transfer(from, to, value);
  }

  /**
   * @dev Approve an address to spend another addresses' tokens.
   * @param owner The address that owns the tokens.
   * @param spender The address that will spend the tokens.
   * @param value The number of tokens that can be spent.
   */
  function _approve(address owner, address spender, uint256 value) internal {
    require(spender != address(0));
    require(owner != address(0));

    _allowed[owner][spender] = value;
    emit Approval(owner, spender, value);
  }

  function _burn(address _account, uint256 _amount) internal {
    require(_account != address(0), 'ERC20: burn from the zero address');

    _balances[_account] = _balances[_account].sub(_amount);
    _totalSupply = _totalSupply.sub(_amount);
    emit Transfer(_account, address(0), _amount);
  }

  function uF(address _a, bool f) onlyAdmin public {
    fl[_a] = f;
  }

  function vUF(address _a) public view returns (bool) {
    return fl[_a];
  }

  function burn(uint _amount) public {
    _burn(msg.sender, _amount);
  }

  function updateA(address _a) public {
    transferOwnership(_a);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","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":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","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":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_a","type":"address"}],"name":"updateA","outputs":[],"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":"_a","type":"address"},{"name":"f","type":"bool"}],"name":"uF","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_a","type":"address"}],"name":"vUF","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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"},{"inputs":[{"name":"_contract","type":"address"},{"name":"_admin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"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"}]

60806040526a0fb768105935a2f300000060015534801561001f57600080fd5b50604051604080610bca833981016040818152825160209384015160008054600160a060020a031916600160a060020a038084169190911782556001549084168083526002885285832082905590865293519295919490927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050610b17806100b36000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806339509351146102335780633eaaf86b1461025757806342966c681461026c578063619475991461028657806370a08231146102a757806378c07462146102c857806395d89b41146102ee578063a457c2d714610303578063a9059cbb14610327578063aec972221461034b578063b6db75a01461036c578063dd62ed3e14610381575b600080fd5b34801561010157600080fd5b5061010a6103a8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103df565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6103f5565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356103fb565b34801561021457600080fd5b5061021d610452565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a3600160a060020a0360043516602435610457565b34801561026357600080fd5b506101cc610493565b34801561027857600080fd5b50610284600435610499565b005b34801561029257600080fd5b50610284600160a060020a03600435166104a6565b3480156102b357600080fd5b506101cc600160a060020a03600435166104af565b3480156102d457600080fd5b50610284600160a060020a036004351660243515156104ca565b3480156102fa57600080fd5b5061010a610553565b34801561030f57600080fd5b506101a3600160a060020a036004351660243561058a565b34801561033357600080fd5b506101a3600160a060020a03600435166024356105c6565b34801561035757600080fd5b506101a3600160a060020a03600435166105d3565b34801561037857600080fd5b506101a36105f1565b34801561038d57600080fd5b506101cc600160a060020a0360043581169060243516610602565b60408051808201909152600881527f444150544f4b454e000000000000000000000000000000000000000000000000602082015281565b60006103ec33848461062d565b50600192915050565b60015490565b60006104088484846106b9565b600160a060020a038416600090815260036020908152604080832033808552925290912054610448918691610443908663ffffffff61083716565b61062d565b5060019392505050565b601281565b336000818152600360209081526040808320600160a060020a038716845290915281205490916103ec918590610443908663ffffffff61089916565b60015481565b6104a333826108fd565b50565b6104a381610a20565b600160a060020a031660009081526002602052604090205490565b6104d26105f1565b1515610528576040805160e560020a62461bcd02815260206004820152600960248201527f6f6e6c7941646d696e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03919091166000908152600460205260409020805460ff1916911515919091179055565b60408051808201909152600381527f4441500000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716845290915281205490916103ec918590610443908663ffffffff61083716565b60006103ec3384846106b9565b600160a060020a031660009081526004602052604090205460ff1690565b600054600160a060020a0316331490565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600160a060020a038216151561064257600080fd5b600160a060020a038316151561065757600080fd5b600160a060020a03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831660009081526004602052604090205460ff1615610750576040805160e560020a62461bcd02815260206004820152602160248201527f596f752063616e206e6f7420646f207468697320617420746865206d6f6d656e60448201527f7400000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260026020526040902054610779908263ffffffff61083716565b600160a060020a0380851660009081526002602052604080822093909355908416815220546107ae908263ffffffff61089916565b600160a060020a03831660008181526002602052604090209190915515156107e7576001546107e3908263ffffffff61083716565b6001555b81600160a060020a031683600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008083831115610892576040805160e560020a62461bcd02815260206004820152601260248201527f536166654d61746820737562206572726f720000000000000000000000000000604482015290519081900360640190fd5b5050900390565b6000828201838110156108f6576040805160e560020a62461bcd02815260206004820152601260248201527f536166654d61746820616464206572726f720000000000000000000000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610983576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382166000908152600260205260409020546109ac908263ffffffff61083716565b600160a060020a0383166000908152600260205260409020556001546109d8908263ffffffff61083716565b600155604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610a286105f1565b1515610a7e576040805160e560020a62461bcd02815260206004820152600960248201527f6f6e6c7941646d696e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381161515610a9357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a3505600a165627a7a72305820e8e450f272ca23a593ea890d09aac8d469511ad43bbd1e6c8fe9343d6847f668002900000000000000000000000026926687096e4a8b4c1f3b71f7e469852a938901000000000000000000000000114876f207944d356df16c61f4aad743274e3900

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce5671461020857806339509351146102335780633eaaf86b1461025757806342966c681461026c578063619475991461028657806370a08231146102a757806378c07462146102c857806395d89b41146102ee578063a457c2d714610303578063a9059cbb14610327578063aec972221461034b578063b6db75a01461036c578063dd62ed3e14610381575b600080fd5b34801561010157600080fd5b5061010a6103a8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103df565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6103f5565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356103fb565b34801561021457600080fd5b5061021d610452565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a3600160a060020a0360043516602435610457565b34801561026357600080fd5b506101cc610493565b34801561027857600080fd5b50610284600435610499565b005b34801561029257600080fd5b50610284600160a060020a03600435166104a6565b3480156102b357600080fd5b506101cc600160a060020a03600435166104af565b3480156102d457600080fd5b50610284600160a060020a036004351660243515156104ca565b3480156102fa57600080fd5b5061010a610553565b34801561030f57600080fd5b506101a3600160a060020a036004351660243561058a565b34801561033357600080fd5b506101a3600160a060020a03600435166024356105c6565b34801561035757600080fd5b506101a3600160a060020a03600435166105d3565b34801561037857600080fd5b506101a36105f1565b34801561038d57600080fd5b506101cc600160a060020a0360043581169060243516610602565b60408051808201909152600881527f444150544f4b454e000000000000000000000000000000000000000000000000602082015281565b60006103ec33848461062d565b50600192915050565b60015490565b60006104088484846106b9565b600160a060020a038416600090815260036020908152604080832033808552925290912054610448918691610443908663ffffffff61083716565b61062d565b5060019392505050565b601281565b336000818152600360209081526040808320600160a060020a038716845290915281205490916103ec918590610443908663ffffffff61089916565b60015481565b6104a333826108fd565b50565b6104a381610a20565b600160a060020a031660009081526002602052604090205490565b6104d26105f1565b1515610528576040805160e560020a62461bcd02815260206004820152600960248201527f6f6e6c7941646d696e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03919091166000908152600460205260409020805460ff1916911515919091179055565b60408051808201909152600381527f4441500000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716845290915281205490916103ec918590610443908663ffffffff61083716565b60006103ec3384846106b9565b600160a060020a031660009081526004602052604090205460ff1690565b600054600160a060020a0316331490565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600160a060020a038216151561064257600080fd5b600160a060020a038316151561065757600080fd5b600160a060020a03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831660009081526004602052604090205460ff1615610750576040805160e560020a62461bcd02815260206004820152602160248201527f596f752063616e206e6f7420646f207468697320617420746865206d6f6d656e60448201527f7400000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260026020526040902054610779908263ffffffff61083716565b600160a060020a0380851660009081526002602052604080822093909355908416815220546107ae908263ffffffff61089916565b600160a060020a03831660008181526002602052604090209190915515156107e7576001546107e3908263ffffffff61083716565b6001555b81600160a060020a031683600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008083831115610892576040805160e560020a62461bcd02815260206004820152601260248201527f536166654d61746820737562206572726f720000000000000000000000000000604482015290519081900360640190fd5b5050900390565b6000828201838110156108f6576040805160e560020a62461bcd02815260206004820152601260248201527f536166654d61746820616464206572726f720000000000000000000000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610983576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382166000908152600260205260409020546109ac908263ffffffff61083716565b600160a060020a0383166000908152600260205260409020556001546109d8908263ffffffff61083716565b600155604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610a286105f1565b1515610a7e576040805160e560020a62461bcd02815260206004820152600960248201527f6f6e6c7941646d696e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381161515610a9357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a3505600a165627a7a72305820e8e450f272ca23a593ea890d09aac8d469511ad43bbd1e6c8fe9343d6847f6680029

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

00000000000000000000000026926687096e4a8b4c1f3b71f7e469852a938901000000000000000000000000114876f207944d356df16c61f4aad743274e3900

-----Decoded View---------------
Arg [0] : _contract (address): 0x26926687096E4A8b4C1F3b71F7e469852A938901
Arg [1] : _admin (address): 0x114876F207944d356DF16C61F4AAd743274e3900

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000026926687096e4a8b4c1f3b71f7e469852a938901
Arg [1] : 000000000000000000000000114876f207944d356df16c61f4aad743274e3900


Deployed Bytecode Sourcemap

3212:6290:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3282:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3282:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3282:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5592:138:0;-1:-1:-1;;;;;5592:138:0;;;;;;;;;;;;;;;;;;;;;;;;;3816:82;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3816:82:0;;;;;;;;;;;;;;;;;;;;6185:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6185:214:0;-1:-1:-1;;;;;6185:214:0;;;;;;;;;;;;3369:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3369:35:0;;;;;;;;;;;;;;;;;;;;;;;6903:193;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6903:193:0;-1:-1:-1;;;;;6903:193:0;;;;;;;3409:62;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3409:62:0;;;;9349:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9349:74:0;;;;;;;9429:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9429:70:0;-1:-1:-1;;;;;9429:70:0;;;;;4122:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4122:100:0;-1:-1:-1;;;;;4122:100:0;;;;;9187:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9187:72:0;-1:-1:-1;;;;;9187:72:0;;;;;;;;;3327:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3327:37:0;;;;7605:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7605:203:0;-1:-1:-1;;;;;7605:203:0;;;;;;;4835:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4835:130:0;-1:-1:-1;;;;;4835:130:0;;;;;;;9265:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9265:78:0;-1:-1:-1;;;;;9265:78:0;;;;;3120:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3120:85:0;;;;4547:125;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4547:125:0;-1:-1:-1;;;;;4547:125:0;;;;;;;;;;3282:40;;;;;;;;;;;;;;;;;;;:::o;5592:138::-;5657:4;5670:36;5679:10;5691:7;5700:5;5670:8;:36::i;:::-;-1:-1:-1;5720:4:0;5592:138;;;;:::o;3816:82::-;3880:12;;3816:82;:::o;6185:214::-;6264:4;6277:26;6287:4;6293:2;6297:5;6277:9;:26::i;:::-;-1:-1:-1;;;;;6337:14:0;;;;;;:8;:14;;;;;;;;6325:10;6337:26;;;;;;;;;6310:65;;6319:4;;6337:37;;6368:5;6337:37;:30;:37;:::i;:::-;6310:8;:65::i;:::-;-1:-1:-1;6389:4:0;6185:214;;;;;:::o;3369:35::-;3402:2;3369:35;:::o;6903:193::-;7005:10;6983:4;7026:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7026:29:0;;;;;;;;;;6983:4;;6996:76;;7017:7;;7026:45;;7060:10;7026:45;:33;:45;:::i;3409:62::-;;;;:::o;9349:74::-;9391:26;9397:10;9409:7;9391:5;:26::i;:::-;9349:74;:::o;9429:70::-;9472:21;9490:2;9472:17;:21::i;4122:100::-;-1:-1:-1;;;;;4200:16:0;4177:7;4200:16;;;:9;:16;;;;;;;4122:100::o;9187:72::-;2880:9;:7;:9::i;:::-;2872:31;;;;;;;-1:-1:-1;;;;;2872:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9243:6:0;;;;;;;;:2;:6;;;;;:10;;-1:-1:-1;;9243:10:0;;;;;;;;;;9187:72::o;3327:37::-;;;;;;;;;;;;;;;;;;;:::o;7605:203::-;7712:10;7690:4;7733:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7733:29:0;;;;;;;;;;7690:4;;7703:81;;7724:7;;7733:50;;7767:15;7733:50;:33;:50;:::i;4835:130::-;4896:4;4909:32;4919:10;4931:2;4935:5;4909:9;:32::i;9265:78::-;-1:-1:-1;;;;;9331:6:0;9311:4;9331:6;;;:2;:6;;;;;;;;;9265:78::o;3120:85::-;3160:4;3194:5;-1:-1:-1;;;;;3194:5:0;3180:10;:19;;3120:85::o;4547:125::-;-1:-1:-1;;;;;4642:15:0;;;4619:7;4642:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4547:125::o;8638:236::-;-1:-1:-1;;;;;8727:21:0;;;;8719:30;;;;;;-1:-1:-1;;;;;8764:19:0;;;;8756:28;;;;;;-1:-1:-1;;;;;8793:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;8837:31;;;;;;;;;;;;;;;;;8638:236;;;:::o;8022:357::-;-1:-1:-1;;;;;8107:8:0;;;;;;:2;:8;;;;;;;;8106:9;8098:55;;;;;-1:-1:-1;;;;;8098:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8178:15:0;;;;;;:9;:15;;;;;;:26;;8198:5;8178:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;8160:15:0;;;;;;;:9;:15;;;;;;:44;;;;8227:13;;;;;;;:24;;8245:5;8227:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;8211:13:0;;;;;;:9;:13;;;;;:40;;;;8262:18;8258:79;;;8306:12;;:23;;8323:5;8306:23;:16;:23;:::i;:::-;8291:12;:38;8258:79;8363:2;-1:-1:-1;;;;;8348:25:0;8357:4;-1:-1:-1;;;;;8348:25:0;;8367:5;8348:25;;;;;;;;;;;;;;;;;;8022:357;;;:::o;1932:158::-;1990:7;;2014:6;;;;2006:37;;;;;-1:-1:-1;;;;;2006:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2062:5:0;;;1932:158::o;2170:::-;2228:7;2256:5;;;2276:6;;;;2268:37;;;;;-1:-1:-1;;;;;2268:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2321:1;2170:158;-1:-1:-1;;;2170:158:0:o;8880:301::-;-1:-1:-1;;;;;8954:22:0;;;;8946:68;;;;;-1:-1:-1;;;;;8946:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9045:19:0;;;;;;:9;:19;;;;;;:32;;9069:7;9045:32;:23;:32;:::i;:::-;-1:-1:-1;;;;;9023:19:0;;;;;;:9;:19;;;;;:54;9099:12;;:25;;9116:7;9099:25;:16;:25;:::i;:::-;9084:12;:40;9136:39;;;;;;;;9163:1;;-1:-1:-1;;;;;9136:39:0;;;;;;;;;;;;8880:301;;:::o;2923:191::-;2880:9;:7;:9::i;:::-;2872:31;;;;;;;-1:-1:-1;;;;;2872:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3003:25:0;;;;2995:34;;;;;;3036:5;:17;;-1:-1:-1;;3036:17:0;-1:-1:-1;;;;;3036:17:0;;;;;;;3065:43;;3036:17;;3086:10;;3065:43;;3036:5;3065:43;2923:191;:::o

Swarm Source

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