ETH Price: $2,530.10 (+2.81%)

Token

Otcrit token (OTC)
 

Overview

Max Total Supply

100,000,000 OTC

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,245 OTC

Value
$0.00
0x008a696e9855aa357f4ff7bf94674eb640bb2d2a
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:
OTCToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 500 runs

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

pragma solidity ^0.4.18;

// File: contracts/commons/SafeMath.sol

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a / b;
    return c;
  }

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

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

// File: contracts/flavours/Ownable.sol

/**
 * @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.
   */
  function Ownable() 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));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }
}

// File: contracts/flavours/Lockable.sol

/**
 * @title Lockable
 * @dev Base contract which allows children to
 *      implement main operations locking mechanism.
 */
contract Lockable is Ownable {
  event Lock();
  event Unlock();

  bool public locked = false;

  /**
   * @dev Modifier to make a function callable
  *       only when the contract is not locked.
   */
  modifier whenNotLocked() {
    require(!locked);
    _;
  }

  /**
   * @dev Modifier to make a function callable
   *      only when the contract is locked.
   */
  modifier whenLocked() {
    require(locked);
    _;
  }

  /**
   * @dev called by the owner to locke, triggers locked state
   */
  function lock() onlyOwner whenNotLocked public {
    locked = true;
    Lock();
  }

  /**
   * @dev called by the owner
   *      to unlock, returns to unlocked state
   */
  function unlock() onlyOwner whenLocked public {
    locked = false;
    Unlock();
  }
}

// File: contracts/base/BaseFixedERC20Token.sol

contract BaseFixedERC20Token is Lockable {
  using SafeMath for uint;

  /// @dev ERC20 Total supply
  uint public totalSupply;

  mapping(address => uint) balances;

  mapping(address => mapping (address => uint)) private allowed;

  /// @dev Fired if Token transfered accourding to ERC20
  event Transfer(address indexed from, address indexed to, uint value);

  /// @dev Fired if Token withdraw is approved accourding to ERC20
  event Approval(address indexed owner, address indexed spender, uint value);

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

  /**
   * @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_, uint value_) whenNotLocked public returns (bool) {
    require(to_ != address(0) && value_ <= balances[msg.sender]);
    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(value_);
    balances[to_] = balances[to_].add(value_);
    Transfer(msg.sender, to_, value_);
    return true;
  }

  /**
   * @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_ uint the amount of tokens to be transferred
   */
  function transferFrom(address from_, address to_, uint value_) whenNotLocked public returns (bool) {
    require(to_ != address(0) && value_ <= balances[from_] && 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_);
    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.
   *
   * To change the approve amount you first have to reduce the addresses
   * allowance to zero by calling `approve(spender_, 0)` if it is not
   * already 0 to mitigate the race condition described in:
   * 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_, uint value_) whenNotLocked public returns (bool) {
    if (value_ != 0 && allowed[msg.sender][spender_] != 0) {
      revert();
    }
    allowed[msg.sender][spender_] = value_;
    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 uint specifying the amount of tokens still available for the spender.
   */
  function allowance(address owner_, address spender_) view public returns (uint) {
    return allowed[owner_][spender_];
  }
}

// File: contracts/base/BaseICOToken.sol

/**
 * @dev Not mintable, ERC20 compilant token, distributed by ICO/Pre-ICO.
 */
contract BaseICOToken is BaseFixedERC20Token {

  /// @dev Available supply of tokens
  uint public availableSupply;

  /// @dev ICO/Pre-ICO smart contract allowed to distribute public funds for this
  address public ico;

  /// @dev Fired if investment for `amount` of tokens performed by `to` address
  event ICOTokensInvested(address indexed to, uint amount);

  /// @dev ICO contract changed for this token
  event ICOChanged(address indexed icoContract);

  /**
   * @dev Not mintable, ERC20 compilant token, distributed by ICO/Pre-ICO.
   * @param totalSupply_ Total tokens supply.
   */
  function BaseICOToken(uint totalSupply_) public {
    locked = true; // Audit: I'd call lock() for better readability
    totalSupply = totalSupply_;
    availableSupply = totalSupply_;
  }

  /**
   * @dev Set address of ICO smart-contract which controls token
   * initial token distribution.
   * @param ico_ ICO contract address.
   */
  function changeICO(address ico_) onlyOwner public {
    ico = ico_;
    ICOChanged(ico);
  }

  // Audit: Keep the sender logic separated from the input validation
  // Audit Create modifier onlyICOAddress -  and use it in the icoInvestment method
  function isValidICOInvestment(address to_, uint amount_) internal view returns(bool) {
    return msg.sender == ico && to_ != address(0) && amount_ <= availableSupply;
  }

  /**
   * @dev Assign `amount_` of tokens to investor identified by `to_` address.
   * @param to_ Investor address.
   * @param amount_ Number of tokens distributed.
   */
  function icoInvestment(address to_, uint amount_) public returns (uint) {
    require(isValidICOInvestment(to_, amount_));
    availableSupply -= amount_; // Audit: Please keep using safe math here too 
    balances[to_] = balances[to_].add(amount_);
    ICOTokensInvested(to_, amount_);
    return amount_;
  }
}

// File: contracts/OTCToken.sol

/**
 * @title ERC20 OTC Token https://otcrit.org
 */
contract OTCToken is BaseICOToken {
  using SafeMath for uint;

  string public constant name = 'Otcrit token';

  string public constant symbol = 'OTC';

  uint8 public constant decimals = 18;

  uint internal constant ONE_TOKEN = 1e18;


  /// @dev Fired some tokens distributed to someone from team,bounty,parthners,others
  event ReservedTokensDistributed(address indexed to, uint8 group, uint amount);

  /**
   * @dev Constructor
   * @param totalSupplyTokens_ Total amount of tokens supplied
   * @param reservedTeamTokens_ Number of tokens reserved for team
   * @param reservedPartnersTokens_ Number of tokens reserved for partners
   * @param reservedBountyTokens_ Number of tokens reserved for bounty participants
   * @param reservedOtherTokens_ Number of privately distributed tokens reserved for others
   */
  function OTCToken(uint totalSupplyTokens_,
                    uint reservedTeamTokens_,
                    uint reservedPartnersTokens_,
                    uint reservedBountyTokens_,
                    uint reservedOtherTokens_)
    BaseICOToken(totalSupplyTokens_ * ONE_TOKEN) public {
    require(availableSupply == totalSupply);
    availableSupply = availableSupply
                        .sub(reservedTeamTokens_ * ONE_TOKEN)
                        .sub(reservedBountyTokens_ * ONE_TOKEN)
                        .sub(reservedPartnersTokens_ * ONE_TOKEN)
                        .sub(reservedOtherTokens_ * ONE_TOKEN);
    reserved[RESERVED_TEAM_SIDE] = reservedTeamTokens_ * ONE_TOKEN / 2;
    locktime[RESERVED_TEAM_SIDE] = 0;
    reserved[RESERVED_TEAM_LOCKED_SIDE] = reservedTeamTokens_ * ONE_TOKEN / 2;
    locktime[RESERVED_TEAM_LOCKED_SIDE] = block.timestamp + 2 years; // lock part for 2 years
    reserved[RESERVED_BOUNTY_SIDE] = reservedBountyTokens_ * ONE_TOKEN;
    locktime[RESERVED_BOUNTY_SIDE] = 0;
    reserved[RESERVED_PARTNERS_SIDE] = reservedPartnersTokens_ * ONE_TOKEN / 2;
    locktime[RESERVED_PARTNERS_SIDE] = 0;
    reserved[RESERVED_PARTNERS_LOCKED_SIDE] = reservedPartnersTokens_ * ONE_TOKEN / 2;
    locktime[RESERVED_PARTNERS_LOCKED_SIDE] = block.timestamp + 1 years; // lock part for 1 year
    reserved[RESERVED_OTHERS_SIDE] = reservedOtherTokens_ * ONE_TOKEN;
    locktime[RESERVED_OTHERS_SIDE] = 0;
  }

  // Disable direct payments
  function() external payable {
    revert();
  }

  //---------------------------- OTC specific

  /// @dev Tokens for team members
  uint8 public RESERVED_TEAM_SIDE = 0x1;

  /// @dev Tokens for bounty participants
  uint8 public RESERVED_BOUNTY_SIDE = 0x2;

  /// @dev Tokens for OTCRIT partners
  uint8 public RESERVED_PARTNERS_SIDE = 0x4;

  /// @dev Other privately distributed tokens
  uint8 public RESERVED_OTHERS_SIDE = 0x8;

  /// @dev Tokens for team members (locked)
  uint8 public RESERVED_TEAM_LOCKED_SIDE = 0x10;

  /// @dev Tokens for OTCRIT partners (locked)
  uint8 public RESERVED_PARTNERS_LOCKED_SIDE = 0x20;

  /// @dev Token reservation mapping: key(RESERVED_X) => value(number of tokens)
  mapping(uint8 => uint) public reserved;

  mapping(uint8 => uint) public locktime;

  /**
   * @dev Get reserved tokens for specific group
   */
  function getReservedTokens(uint8 group_) view public returns (uint) {
    return reserved[group_];
  }

  function getLockTime(uint8 group_) view public returns (uint) {
    return locktime[group_];
  }

  /**
   * @dev Assign `amount_` of privately distributed tokens
   *      to someone identified with `to_` address.
   * @param to_   Tokens owner
   * @param group_ Group identifier of privately distributed tokens
   * @param amount_ Number of tokens distributed with decimals part
   */
  function assignReserved(address to_, uint8 group_, uint amount_) onlyOwner public {
    require(to_ != address(0) && (group_ & 0x3f) != 0);
    // check lock
    require(block.timestamp > locktime[group_]);
    // SafeMath will check reserved[group_] >= amount
    reserved[group_] = reserved[group_].sub(amount_);
    balances[to_] = balances[to_].add(amount_);
    ReservedTokensDistributed(to_, group_, amount_);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"group_","type":"uint8"}],"name":"getReservedTokens","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[{"name":"to_","type":"address"},{"name":"group_","type":"uint8"},{"name":"amount_","type":"uint256"}],"name":"assignReserved","outputs":[],"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":true,"inputs":[],"name":"RESERVED_PARTNERS_LOCKED_SIDE","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ico","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"ico_","type":"address"}],"name":"changeICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RESERVED_TEAM_SIDE","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to_","type":"address"},{"name":"amount_","type":"uint256"}],"name":"icoInvestment","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"availableSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint8"}],"name":"reserved","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unlock","outputs":[],"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":"RESERVED_PARTNERS_SIDE","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"locked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"group_","type":"uint8"}],"name":"getLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RESERVED_BOUNTY_SIDE","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint8"}],"name":"locktime","outputs":[{"name":"","type":"uint256"}],"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"},{"constant":true,"inputs":[],"name":"RESERVED_OTHERS_SIDE","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RESERVED_TEAM_LOCKED_SIDE","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"totalSupplyTokens_","type":"uint256"},{"name":"reservedTeamTokens_","type":"uint256"},{"name":"reservedPartnersTokens_","type":"uint256"},{"name":"reservedBountyTokens_","type":"uint256"},{"name":"reservedOtherTokens_","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"group","type":"uint8"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"ReservedTokensDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"ICOTokensInvested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"icoContract","type":"address"}],"name":"ICOChanged","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"},{"anonymous":false,"inputs":[],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[],"name":"Unlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60606040526000805460a060020a60ff0219908116909155600580547401000000000000000000000000000000000000000092169190911760a860020a60ff02191675020000000000000000000000000000000000000000001760b060020a60ff0219167604000000000000000000000000000000000000000000001760b860020a60ff021916770800000000000000000000000000000000000000000000001760c060020a60ff02191678100000000000000000000000000000000000000000000000001760c860020a60ff02191679200000000000000000000000000000000000000000000000000017905534156100f857600080fd5b60405160a08061133c83398101604052808051919060200180519190602001805191906020018051919060200180516000805474010000000000000000000000000000000000000000600160a060020a031990911633600160a060020a03161760a060020a60ff021916179055670de0b6b3a76400008702600181905560045591506101819050565b6101ea670de0b6b3a764000082026101d7670de0b6b3a764000086026101d7670de0b6b3a764000087026101d7670de0b6b3a76400008b026004546103a964010000000002610ee2179091906401000000009004565b90640100000000610ee26103a982021704565b60045560058054740100000000000000000000000000000000000000009081900460ff90811660009081526006602081815260408084206002670de0b6b3a76400009c8d02819004918290558854979097048616855260078084528286208690558854780100000000000000000000000000000000000000000000000090819004881687528585528387209290925588549190910486168552808352818520426303c2670081019091558854750100000000000000000000000000000000000000000090819004881687528585528387209b8e02909b5588549a909a0486168552808352818520859055875476010000000000000000000000000000000000000000000090819004871686528484528286209b8d02979097049a8b905587549690960485168452858252808420849055865479010000000000000000000000000000000000000000000000000090819004861685528383528185209a909a55865499909904841683528481528883206301e13380909801909755845477010000000000000000000000000000000000000000000000908190048416835290875287822095909802909455915495909504168152929052812055506103bb565b6000828211156103b557fe5b50900390565b610f72806103ca6000396000f3006060604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461017957806308612c3514610203578063095ea7b31461022e5780631019635d1461026457806318160ddd1461028e57806323b872dd146102a1578063313ce567146102c95780633d37ef8c146102f25780635d452201146103055780636d47fb71146103345780636f3b6d001461035357806370a08231146103665780637277236b146103855780637ecc2b56146103a75780638da5cb5b146103ba57806395d89b41146103cd57806397ab4786146103e0578063a69df4b5146103f9578063a9059cbb1461040c578063c065fcf11461042e578063cf30901214610441578063cf813e3f14610454578063d195fd281461046d578063d8542a6f14610480578063dd62ed3e14610499578063dfa15b58146104be578063f297109d146104d1578063f2fde38b146104e4578063f83d08ba14610503575b600080fd5b341561018457600080fd5b61018c610516565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c85780820151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020e57600080fd5b61021c60ff6004351661054d565b60405190815260200160405180910390f35b341561023957600080fd5b610250600160a060020a0360043516602435610562565b604051901515815260200160405180910390f35b341561026f57600080fd5b61028c600160a060020a036004351660ff60243516604435610631565b005b341561029957600080fd5b61021c610750565b34156102ac57600080fd5b610250600160a060020a0360043581169060243516604435610756565b34156102d457600080fd5b6102dc6108ff565b60405160ff909116815260200160405180910390f35b34156102fd57600080fd5b6102dc610904565b341561031057600080fd5b61031861092a565b604051600160a060020a03909116815260200160405180910390f35b341561033f57600080fd5b61028c600160a060020a0360043516610939565b341561035e57600080fd5b6102dc6109b2565b341561037157600080fd5b61021c600160a060020a03600435166109d3565b341561039057600080fd5b61021c600160a060020a03600435166024356109ee565b34156103b257600080fd5b61021c610a8f565b34156103c557600080fd5b610318610a95565b34156103d857600080fd5b61018c610aa4565b34156103eb57600080fd5b61021c60ff60043516610adb565b341561040457600080fd5b61028c610aed565b341561041757600080fd5b610250600160a060020a0360043516602435610b7d565b341561043957600080fd5b6102dc610ca0565b341561044c57600080fd5b610250610cc3565b341561045f57600080fd5b61021c60ff60043516610ce4565b341561047857600080fd5b6102dc610cf9565b341561048b57600080fd5b61021c60ff60043516610d1b565b34156104a457600080fd5b61021c600160a060020a0360043581169060243516610d2d565b34156104c957600080fd5b6102dc610d58565b34156104dc57600080fd5b6102dc610d7c565b34156104ef57600080fd5b61028c600160a060020a0360043516610da1565b341561050e57600080fd5b61028c610e3c565b60408051908101604052600c81527f4f746372697420746f6b656e0000000000000000000000000000000000000000602082015281565b60ff1660009081526006602052604090205490565b6000805474010000000000000000000000000000000000000000900460ff161561058b57600080fd5b81158015906105be5750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b156105c857600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005433600160a060020a0390811691161461064c57600080fd5b600160a060020a038316158015906106665750603f821615155b151561067157600080fd5b60ff8216600090815260076020526040902054421161068f57600080fd5b60ff82166000908152600660205260409020546106b2908263ffffffff610ee216565b60ff8316600090815260066020908152604080832093909355600160a060020a03861682526002905220546106ed908263ffffffff610ef416565b600160a060020a0384166000818152600260205260409081902092909255907f9b25e6f19951830b3dbcfcd62be59f689237a770339d40af72e2380fc4042fe490849084905160ff909216825260208201526040908101905180910390a2505050565b60015481565b6000805474010000000000000000000000000000000000000000900460ff161561077f57600080fd5b600160a060020a038316158015906107af5750600160a060020a0384166000908152600260205260409020548211155b80156107e15750600160a060020a03808516600090815260036020908152604080832033909416835292905220548211155b15156107ec57600080fd5b600160a060020a038416600090815260026020526040902054610815908363ffffffff610ee216565b600160a060020a03808616600090815260026020526040808220939093559085168152205461084a908363ffffffff610ef416565b600160a060020a03808516600090815260026020908152604080832094909455878316825260038152838220339093168252919091522054610892908363ffffffff610ee216565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b601281565b600554790100000000000000000000000000000000000000000000000000900460ff1681565b600554600160a060020a031681565b60005433600160a060020a0390811691161461095457600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055167ff75d34bb42a98ed9c96ce1821b7834a59d12693611bf4fe2776dae6d512d6d1460405160405180910390a250565b60055474010000000000000000000000000000000000000000900460ff1681565b600160a060020a031660009081526002602052604090205490565b60006109fa8383610f0a565b1515610a0557600080fd5b600480548390039055600160a060020a038316600090815260026020526040902054610a37908363ffffffff610ef416565b600160a060020a0384166000818152600260205260409081902092909255907fb34195a3d0de1e5150c8bbe5f5163b622b1ed771ce55319230906552a62160649084905190815260200160405180910390a250919050565b60045481565b600054600160a060020a031681565b60408051908101604052600381527f4f54430000000000000000000000000000000000000000000000000000000000602082015281565b60066020526000908152604090205481565b60005433600160a060020a03908116911614610b0857600080fd5b60005474010000000000000000000000000000000000000000900460ff161515610b3157600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f70e3fffea7bbb557facdee48ed7f7af5179030adef9ad0c876df039a718f359e60405160405180910390a1565b6000805474010000000000000000000000000000000000000000900460ff1615610ba657600080fd5b600160a060020a03831615801590610bd65750600160a060020a0333166000908152600260205260409020548211155b1515610be157600080fd5b600160a060020a033316600090815260026020526040902054610c0a908363ffffffff610ee216565b600160a060020a033381166000908152600260205260408082209390935590851681522054610c3f908363ffffffff610ef416565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600554760100000000000000000000000000000000000000000000900460ff1681565b60005474010000000000000000000000000000000000000000900460ff1681565b60ff1660009081526007602052604090205490565b6005547501000000000000000000000000000000000000000000900460ff1681565b60076020526000908152604090205481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60055477010000000000000000000000000000000000000000000000900460ff1681565b6005547801000000000000000000000000000000000000000000000000900460ff1681565b60005433600160a060020a03908116911614610dbc57600080fd5b600160a060020a0381161515610dd157600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a03908116911614610e5757600080fd5b60005474010000000000000000000000000000000000000000900460ff1615610e7f57600080fd5b6000805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557f46620e39f4e119bf05f13544f8ef38338fc06c17f6b731c7f95bee356572db9660405160405180910390a1565b600082821115610eee57fe5b50900390565b600082820183811015610f0357fe5b9392505050565b60055460009033600160a060020a039081169116148015610f335750600160a060020a03831615155b8015610f035750506004549011159190505600a165627a7a72305820929e54977a69b0496c2a4e8a7877ae9a89ca70f09abab042eb7a99835869915e00290000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000006acfc000000000000000000000000000000000000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000004c4b40

Deployed Bytecode

0x6060604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461017957806308612c3514610203578063095ea7b31461022e5780631019635d1461026457806318160ddd1461028e57806323b872dd146102a1578063313ce567146102c95780633d37ef8c146102f25780635d452201146103055780636d47fb71146103345780636f3b6d001461035357806370a08231146103665780637277236b146103855780637ecc2b56146103a75780638da5cb5b146103ba57806395d89b41146103cd57806397ab4786146103e0578063a69df4b5146103f9578063a9059cbb1461040c578063c065fcf11461042e578063cf30901214610441578063cf813e3f14610454578063d195fd281461046d578063d8542a6f14610480578063dd62ed3e14610499578063dfa15b58146104be578063f297109d146104d1578063f2fde38b146104e4578063f83d08ba14610503575b600080fd5b341561018457600080fd5b61018c610516565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c85780820151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020e57600080fd5b61021c60ff6004351661054d565b60405190815260200160405180910390f35b341561023957600080fd5b610250600160a060020a0360043516602435610562565b604051901515815260200160405180910390f35b341561026f57600080fd5b61028c600160a060020a036004351660ff60243516604435610631565b005b341561029957600080fd5b61021c610750565b34156102ac57600080fd5b610250600160a060020a0360043581169060243516604435610756565b34156102d457600080fd5b6102dc6108ff565b60405160ff909116815260200160405180910390f35b34156102fd57600080fd5b6102dc610904565b341561031057600080fd5b61031861092a565b604051600160a060020a03909116815260200160405180910390f35b341561033f57600080fd5b61028c600160a060020a0360043516610939565b341561035e57600080fd5b6102dc6109b2565b341561037157600080fd5b61021c600160a060020a03600435166109d3565b341561039057600080fd5b61021c600160a060020a03600435166024356109ee565b34156103b257600080fd5b61021c610a8f565b34156103c557600080fd5b610318610a95565b34156103d857600080fd5b61018c610aa4565b34156103eb57600080fd5b61021c60ff60043516610adb565b341561040457600080fd5b61028c610aed565b341561041757600080fd5b610250600160a060020a0360043516602435610b7d565b341561043957600080fd5b6102dc610ca0565b341561044c57600080fd5b610250610cc3565b341561045f57600080fd5b61021c60ff60043516610ce4565b341561047857600080fd5b6102dc610cf9565b341561048b57600080fd5b61021c60ff60043516610d1b565b34156104a457600080fd5b61021c600160a060020a0360043581169060243516610d2d565b34156104c957600080fd5b6102dc610d58565b34156104dc57600080fd5b6102dc610d7c565b34156104ef57600080fd5b61028c600160a060020a0360043516610da1565b341561050e57600080fd5b61028c610e3c565b60408051908101604052600c81527f4f746372697420746f6b656e0000000000000000000000000000000000000000602082015281565b60ff1660009081526006602052604090205490565b6000805474010000000000000000000000000000000000000000900460ff161561058b57600080fd5b81158015906105be5750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b156105c857600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005433600160a060020a0390811691161461064c57600080fd5b600160a060020a038316158015906106665750603f821615155b151561067157600080fd5b60ff8216600090815260076020526040902054421161068f57600080fd5b60ff82166000908152600660205260409020546106b2908263ffffffff610ee216565b60ff8316600090815260066020908152604080832093909355600160a060020a03861682526002905220546106ed908263ffffffff610ef416565b600160a060020a0384166000818152600260205260409081902092909255907f9b25e6f19951830b3dbcfcd62be59f689237a770339d40af72e2380fc4042fe490849084905160ff909216825260208201526040908101905180910390a2505050565b60015481565b6000805474010000000000000000000000000000000000000000900460ff161561077f57600080fd5b600160a060020a038316158015906107af5750600160a060020a0384166000908152600260205260409020548211155b80156107e15750600160a060020a03808516600090815260036020908152604080832033909416835292905220548211155b15156107ec57600080fd5b600160a060020a038416600090815260026020526040902054610815908363ffffffff610ee216565b600160a060020a03808616600090815260026020526040808220939093559085168152205461084a908363ffffffff610ef416565b600160a060020a03808516600090815260026020908152604080832094909455878316825260038152838220339093168252919091522054610892908363ffffffff610ee216565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b601281565b600554790100000000000000000000000000000000000000000000000000900460ff1681565b600554600160a060020a031681565b60005433600160a060020a0390811691161461095457600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055167ff75d34bb42a98ed9c96ce1821b7834a59d12693611bf4fe2776dae6d512d6d1460405160405180910390a250565b60055474010000000000000000000000000000000000000000900460ff1681565b600160a060020a031660009081526002602052604090205490565b60006109fa8383610f0a565b1515610a0557600080fd5b600480548390039055600160a060020a038316600090815260026020526040902054610a37908363ffffffff610ef416565b600160a060020a0384166000818152600260205260409081902092909255907fb34195a3d0de1e5150c8bbe5f5163b622b1ed771ce55319230906552a62160649084905190815260200160405180910390a250919050565b60045481565b600054600160a060020a031681565b60408051908101604052600381527f4f54430000000000000000000000000000000000000000000000000000000000602082015281565b60066020526000908152604090205481565b60005433600160a060020a03908116911614610b0857600080fd5b60005474010000000000000000000000000000000000000000900460ff161515610b3157600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f70e3fffea7bbb557facdee48ed7f7af5179030adef9ad0c876df039a718f359e60405160405180910390a1565b6000805474010000000000000000000000000000000000000000900460ff1615610ba657600080fd5b600160a060020a03831615801590610bd65750600160a060020a0333166000908152600260205260409020548211155b1515610be157600080fd5b600160a060020a033316600090815260026020526040902054610c0a908363ffffffff610ee216565b600160a060020a033381166000908152600260205260408082209390935590851681522054610c3f908363ffffffff610ef416565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600554760100000000000000000000000000000000000000000000900460ff1681565b60005474010000000000000000000000000000000000000000900460ff1681565b60ff1660009081526007602052604090205490565b6005547501000000000000000000000000000000000000000000900460ff1681565b60076020526000908152604090205481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60055477010000000000000000000000000000000000000000000000900460ff1681565b6005547801000000000000000000000000000000000000000000000000900460ff1681565b60005433600160a060020a03908116911614610dbc57600080fd5b600160a060020a0381161515610dd157600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a03908116911614610e5757600080fd5b60005474010000000000000000000000000000000000000000900460ff1615610e7f57600080fd5b6000805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557f46620e39f4e119bf05f13544f8ef38338fc06c17f6b731c7f95bee356572db9660405160405180910390a1565b600082821115610eee57fe5b50900390565b600082820183811015610f0357fe5b9392505050565b60055460009033600160a060020a039081169116148015610f335750600160a060020a03831615155b8015610f035750506004549011159190505600a165627a7a72305820929e54977a69b0496c2a4e8a7877ae9a89ca70f09abab042eb7a99835869915e0029

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

0000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000000000000006acfc000000000000000000000000000000000000000000000000000000000007a120000000000000000000000000000000000000000000000000000000000004c4b40

-----Decoded View---------------
Arg [0] : totalSupplyTokens_ (uint256): 100000000
Arg [1] : reservedTeamTokens_ (uint256): 10000000
Arg [2] : reservedPartnersTokens_ (uint256): 7000000
Arg [3] : reservedBountyTokens_ (uint256): 8000000
Arg [4] : reservedOtherTokens_ (uint256): 5000000

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [2] : 00000000000000000000000000000000000000000000000000000000006acfc0
Arg [3] : 00000000000000000000000000000000000000000000000000000000007a1200
Arg [4] : 00000000000000000000000000000000000000000000000000000000004c4b40


Swarm Source

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