ETH Price: $3,243.00 (+2.05%)
Gas: 10 Gwei

Token

Cobinhood (COB)
 

Overview

Max Total Supply

1,000,000,000 COB

Holders

20,143 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+0.13%)

Onchain Market Cap

$665,794.41

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

COBINHOOD is a ZERO Trading Fees cryptocurrency exchange with vision to maximize traders' profits.

Profitability / Loss

Since Initial Offer Price
:$0.07 99.05%

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 COB
Market Data Source: Coinmarketcap

ICO Information

ICO Start Date : Sep 13, 2017   
ICO End Date : Oct 23, 2017
Total Raised : $13,078,406
ICO Price  : $0.07 | 0.00025375
Country : Taiwan 

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CobinhoodToken

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 0 runs

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

pragma solidity ^0.4.11;

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

  function div(uint256 a, uint256 b) internal 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 c;
  }

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

  function add(uint256 a, uint256 b) internal returns (uint256) {
    uint256 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;


  /** 
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
        * account.
             */
  function Ownable() {
    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) onlyOwner {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}


/**
 * @title ERC20Basic
    * @dev Simpler version of ERC20 interface
       * @dev see https://github.com/ethereum/EIPs/issues/179
          */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) constant returns (uint256);
  function transfer(address to, uint256 value) returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title Basic token
    * @dev Basic version of StandardToken, with no allowances. 
       */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @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) returns (bool) {
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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) constant returns (uint256 balance) {
    return balances[_owner];
  }

}


/**
 * @title ERC20 interface
    * @dev see https://github.com/ethereum/EIPs/issues/20
       */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @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)) 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 amout of tokens to be transfered
                       */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

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

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
        * @param _spender The address which will spend the funds.
             * @param _value The amount of tokens to be spent.
                  */
  function approve(address _spender, uint256 _value) returns (bool) {

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

    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 uint256 specifing the amount of tokens still avaible for the spender.
                       */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}

contract CobinhoodToken is StandardToken, Ownable {
    using SafeMath for uint256;

    // Token Info.
    string  public constant name = "Cobinhood Token";
    string  public constant symbol = "COB";
    uint8   public constant decimals = 18;

    // Sale period.
    uint256 public startDate;
    uint256 public endDate;

    // Token Cap for each rounds
    uint256 public saleCap;

    // Address where funds are collected.
    address public wallet;

    // Amount of raised money in wei.
    uint256 public weiRaised;

    // Cobinhood user ID
    mapping(address => bytes32) public cobinhoodUserIDs;

    // Event
    event TokenPurchase(address indexed purchaser, uint256 value,
                        uint256 amount);
    event PreICOTokenPushed(address indexed buyer, uint256 amount);
    event UserIDChanged(address owner, bytes32 user_id);

    // Modifiers
    modifier uninitialized() {
        require(wallet == 0x0);
        _;
    }

    function CobinhoodToken() {
    }

    function initialize(address _wallet, uint256 _start, uint256 _end,
                        uint256 _saleCap, uint256 _totalSupply)
                        onlyOwner uninitialized {
        require(_start >= getCurrentTimestamp());
        require(_start < _end);
        require(_wallet != 0x0);
        require(_totalSupply > _saleCap);

        startDate = _start;
        endDate = _end;
        saleCap = _saleCap;
        wallet = _wallet;
        totalSupply = _totalSupply;

        balances[wallet] = _totalSupply.sub(saleCap);
        balances[0xb1] = saleCap;
    }

    function supply() internal returns (uint256) {
        return balances[0xb1];
    }

    function getCurrentTimestamp() internal returns (uint256) {
        return now;
    }

    function getRateAt(uint256 at) constant returns (uint256) {
        if (at < startDate) {
            return 0;
        } else if (at < (startDate + 7 days)) {
            return 5600;
        } else if (at < (startDate + 14 days)) {
            return 5200;
        } else if (at < (startDate + 21 days)) {
            return 4800;
        } else if (at < (startDate + 28 days)) {
            return 4400;
        } else if (at <= endDate) {
            return 4000;
        } else {
            return 0;
        }
    }

    // Fallback function can be used to buy tokens
    function () payable {
        buyTokens(msg.sender, msg.value);
    }

    // For pushing pre-ICO records
    function push(address buyer, uint256 amount) onlyOwner {
        require(balances[wallet] >= amount);

        // Transfer
        balances[wallet] = balances[wallet].sub(amount);
        balances[buyer] = balances[buyer].add(amount);
        PreICOTokenPushed(buyer, amount);
    }

    function buyTokens(address sender, uint256 value) internal {
        require(saleActive());
        require(value >= 0.1 ether);

        uint256 weiAmount = value;
        uint256 updatedWeiRaised = weiRaised.add(weiAmount);

        // Calculate token amount to be purchased
        uint256 actualRate = getRateAt(getCurrentTimestamp());
        uint256 amount = weiAmount.mul(actualRate);

        // We have enough token to sale
        require(supply() >= amount);

        // Transfer
        balances[0xb1] = balances[0xb1].sub(amount);
        balances[sender] = balances[sender].add(amount);
        TokenPurchase(sender, weiAmount, amount);

        // Update state.
        weiRaised = updatedWeiRaised;

        // Forward the fund to fund collection wallet.
        wallet.transfer(msg.value);
    }

    function finalize() onlyOwner {
        require(!saleActive());

        // Transfer the rest of token to Cobinhood
        balances[wallet] = balances[wallet].add(balances[0xb1]);
        balances[0xb1] = 0;
    }

    function saleActive() public constant returns (bool) {
        return (getCurrentTimestamp() >= startDate &&
                getCurrentTimestamp() < endDate && supply() > 0);
    }

    function setUserID(bytes32 user_id) {
        cobinhoodUserIDs[msg.sender] = user_id;
        UserIDChanged(msg.sender, user_id);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"cobinhoodUserIDs","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"at","type":"uint256"}],"name":"getRateAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"amount","type":"uint256"}],"name":"push","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"user_id","type":"bytes32"}],"name":"setUserID","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"},{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"},{"name":"_saleCap","type":"uint256"},{"name":"_totalSupply","type":"uint256"}],"name":"initialize","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PreICOTokenPushed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"user_id","type":"bytes32"}],"name":"UserIDChanged","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"}]

6060604052341561000f57600080fd5b5b5b60038054600160a060020a03191633600160a060020a03161790555b5b5b610f6a8061003e6000396000f300606060405236156101175763ffffffff60e060020a60003504166306fdde03811461012a578063078fd9ea146101b5578063095ea7b3146101da5780630b97bc861461021057806318160ddd1461023557806323b872dd1461025a578063313ce567146102965780634042b66f146102bf5780634bb278f3146102e4578063521eb273146102f957806368428a1b1461032857806370a082311461034f5780638da5cb5b1461038057806395d89b41146103af578063a77c61f21461043a578063a9059cbb1461046b578063b52e0dc8146104a1578063b753a98c146104c9578063c24a0f8b146104ed578063c3262dfd14610512578063dd62ed3e1461052a578063f2fde38b14610561578063f92ad21914610582575b6101285b61012533346105af565b5b565b005b341561013557600080fd5b61013d61072c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017a5780820151818401525b602001610161565b50505050905090810190601f1680156101a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c057600080fd5b6101c8610758565b60405190815260200160405180910390f35b34156101e557600080fd5b6101fc600160a060020a036004351660243561075e565b604051901515815260200160405180910390f35b341561021b57600080fd5b6101c8610805565b60405190815260200160405180910390f35b341561024057600080fd5b6101c861080b565b60405190815260200160405180910390f35b341561026557600080fd5b6101fc600160a060020a0360043581169060243516604435610811565b604051901515815260200160405180910390f35b34156102a157600080fd5b6102a9610914565b60405160ff909116815260200160405180910390f35b34156102ca57600080fd5b6101c8610919565b60405190815260200160405180910390f35b34156102ef57600080fd5b61012861091f565b005b341561030457600080fd5b61030c6109bc565b604051600160a060020a03909116815260200160405180910390f35b341561033357600080fd5b6101fc6109cb565b604051901515815260200160405180910390f35b341561035a57600080fd5b6101c8600160a060020a0360043516610a07565b60405190815260200160405180910390f35b341561038b57600080fd5b61030c610a26565b604051600160a060020a03909116815260200160405180910390f35b34156103ba57600080fd5b61013d610a35565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017a5780820151818401525b602001610161565b50505050905090810190601f1680156101a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561044557600080fd5b6101c8600160a060020a0360043516610a55565b60405190815260200160405180910390f35b341561047657600080fd5b6101fc600160a060020a0360043516602435610a67565b604051901515815260200160405180910390f35b34156104ac57600080fd5b6101c8600435610b15565b60405190815260200160405180910390f35b34156104d457600080fd5b610128600160a060020a0360043516602435610bae565b005b34156104f857600080fd5b6101c8610cac565b60405190815260200160405180910390f35b341561051d57600080fd5b610128600435610cb2565b005b341561053557600080fd5b6101c8600160a060020a0360043581169060243516610d18565b60405190815260200160405180910390f35b341561056c57600080fd5b610128600160a060020a0360043516610d45565b005b341561058d57600080fd5b610128600160a060020a0360043516602435604435606435608435610d90565b005b6000806000806105bd6109cb565b15156105c857600080fd5b67016345785d8a00008510156105dd57600080fd5b6008548594506105f3908563ffffffff610e7b16565b9250610605610600610e95565b610b15565b9150610617848363ffffffff610e9a16565b905080610622610ec9565b101561062d57600080fd5b60b16000526001602052600080516020610eff83398151915254610657908263ffffffff610ee716565b6001602052600080516020610eff83398151915255600160a060020a03861660009081526040902054610690908263ffffffff610e7b16565b600160a060020a0387166000818152600160205260409081902092909255907fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f90869084905191825260208201526040908101905180910390a26008839055600754600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561072357600080fd5b5b505050505050565b60408051908101604052600f8152608960020a6e21b7b134b73437b7b2102a37b5b2b702602082015281565b60065481565b60008115806107905750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561079b57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b60005481565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610858908463ffffffff610e7b16565b600160a060020a03808616600090815260016020526040808220939093559087168152205461088d908463ffffffff610ee716565b600160a060020a0386166000908152600160205260409020556108b6818463ffffffff610ee716565b600160a060020a0380871660008181526002602090815260408083203386168452909152908190209390935590861691600080516020610f1f8339815191529086905190815260200160405180910390a3600191505b509392505050565b601281565b60085481565b60035433600160a060020a0390811691161461093a57600080fd5b6109426109cb565b1561094c57600080fd5b6001602052600080516020610eff83398151915254600754600160a060020a0316600090815260409020546109869163ffffffff610e7b16565b600754600160a060020a031660009081526001602052604081209190915560b18152600080516020610eff833981519152555b5b565b600754600160a060020a031681565b60006004546109d8610e95565b101580156109ee57506005546109ec610e95565b105b8015610a01575060006109ff610ec9565b115b90505b90565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b604080519081016040526003815260e960020a6221a7a102602082015281565b60096020526000908152604090205481565b600160a060020a033316600090815260016020526040812054610a90908363ffffffff610ee716565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ac5908363ffffffff610e7b16565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020610f1f8339815191529085905190815260200160405180910390a35060015b92915050565b6000600454821015610b2957506000610a21565b60045462093a8001821015610b4157506115e0610a21565b6004546212750001821015610b595750611450610a21565b600454621baf8001821015610b7157506112c0610a21565b6004546224ea0001821015610b895750611130610a21565b6005548211610b9b5750610fa0610a21565b506000610a21565b5b5b5b5b5b5b919050565b60035433600160a060020a03908116911614610bc957600080fd5b600754600160a060020a031660009081526001602052604090205481901015610bf157600080fd5b600754600160a060020a0316600090815260016020526040902054610c1c908263ffffffff610ee716565b600754600160a060020a039081166000908152600160205260408082209390935590841681522054610c54908263ffffffff610e7b16565b600160a060020a0383166000818152600160205260409081902092909255907fdb2d10a559cb6e14fee5a7a2d8c216314e11c22404e85a4f9af45f07c87192bb9083905190815260200160405180910390a25b5b5050565b60055481565b33600160a060020a038116600090815260096020526040908190208390557fa1a3e4c7b21b6004c77b4fe18bdd0d1bd1be31dbb88112463524daa9abacb8369190839051600160a060020a03909216825260208201526040908101905180910390a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610d6057600080fd5b600160a060020a03811615610d155760038054600160a060020a031916600160a060020a0383161790555b5b5b50565b60035433600160a060020a03908116911614610dab57600080fd5b600754600160a060020a031615610dc157600080fd5b610dc9610e95565b841015610dd557600080fd5b828410610de157600080fd5b600160a060020a0385161515610df657600080fd5b818111610e0257600080fd5b60048490556005839055600682905560078054600160a060020a031916600160a060020a0387161790556000819055610e3b8183610ee7565b600754600160a060020a031660009081526001602052604081209190915560065460b1909152600080516020610eff833981519152555b5b5b5050505050565b600082820183811015610e8a57fe5b8091505b5092915050565b425b90565b6000828202831580610eb65750828482811515610eb357fe5b04145b1515610e8a57fe5b8091505b5092915050565b60b16000526001602052600080516020610eff833981519152545b90565b600082821115610ef357fe5b508082035b9291505056007ff6d99ecf17df3f1097d877fba82682b40f191db7daded98d658129a21865e6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058202fcbf31b92b87d4233db6fcd028bb51b7a257b715af5e311399b19af4473c58e0029

Deployed Bytecode

0x606060405236156101175763ffffffff60e060020a60003504166306fdde03811461012a578063078fd9ea146101b5578063095ea7b3146101da5780630b97bc861461021057806318160ddd1461023557806323b872dd1461025a578063313ce567146102965780634042b66f146102bf5780634bb278f3146102e4578063521eb273146102f957806368428a1b1461032857806370a082311461034f5780638da5cb5b1461038057806395d89b41146103af578063a77c61f21461043a578063a9059cbb1461046b578063b52e0dc8146104a1578063b753a98c146104c9578063c24a0f8b146104ed578063c3262dfd14610512578063dd62ed3e1461052a578063f2fde38b14610561578063f92ad21914610582575b6101285b61012533346105af565b5b565b005b341561013557600080fd5b61013d61072c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017a5780820151818401525b602001610161565b50505050905090810190601f1680156101a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c057600080fd5b6101c8610758565b60405190815260200160405180910390f35b34156101e557600080fd5b6101fc600160a060020a036004351660243561075e565b604051901515815260200160405180910390f35b341561021b57600080fd5b6101c8610805565b60405190815260200160405180910390f35b341561024057600080fd5b6101c861080b565b60405190815260200160405180910390f35b341561026557600080fd5b6101fc600160a060020a0360043581169060243516604435610811565b604051901515815260200160405180910390f35b34156102a157600080fd5b6102a9610914565b60405160ff909116815260200160405180910390f35b34156102ca57600080fd5b6101c8610919565b60405190815260200160405180910390f35b34156102ef57600080fd5b61012861091f565b005b341561030457600080fd5b61030c6109bc565b604051600160a060020a03909116815260200160405180910390f35b341561033357600080fd5b6101fc6109cb565b604051901515815260200160405180910390f35b341561035a57600080fd5b6101c8600160a060020a0360043516610a07565b60405190815260200160405180910390f35b341561038b57600080fd5b61030c610a26565b604051600160a060020a03909116815260200160405180910390f35b34156103ba57600080fd5b61013d610a35565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017a5780820151818401525b602001610161565b50505050905090810190601f1680156101a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561044557600080fd5b6101c8600160a060020a0360043516610a55565b60405190815260200160405180910390f35b341561047657600080fd5b6101fc600160a060020a0360043516602435610a67565b604051901515815260200160405180910390f35b34156104ac57600080fd5b6101c8600435610b15565b60405190815260200160405180910390f35b34156104d457600080fd5b610128600160a060020a0360043516602435610bae565b005b34156104f857600080fd5b6101c8610cac565b60405190815260200160405180910390f35b341561051d57600080fd5b610128600435610cb2565b005b341561053557600080fd5b6101c8600160a060020a0360043581169060243516610d18565b60405190815260200160405180910390f35b341561056c57600080fd5b610128600160a060020a0360043516610d45565b005b341561058d57600080fd5b610128600160a060020a0360043516602435604435606435608435610d90565b005b6000806000806105bd6109cb565b15156105c857600080fd5b67016345785d8a00008510156105dd57600080fd5b6008548594506105f3908563ffffffff610e7b16565b9250610605610600610e95565b610b15565b9150610617848363ffffffff610e9a16565b905080610622610ec9565b101561062d57600080fd5b60b16000526001602052600080516020610eff83398151915254610657908263ffffffff610ee716565b6001602052600080516020610eff83398151915255600160a060020a03861660009081526040902054610690908263ffffffff610e7b16565b600160a060020a0387166000818152600160205260409081902092909255907fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f90869084905191825260208201526040908101905180910390a26008839055600754600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561072357600080fd5b5b505050505050565b60408051908101604052600f8152608960020a6e21b7b134b73437b7b2102a37b5b2b702602082015281565b60065481565b60008115806107905750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561079b57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b60005481565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610858908463ffffffff610e7b16565b600160a060020a03808616600090815260016020526040808220939093559087168152205461088d908463ffffffff610ee716565b600160a060020a0386166000908152600160205260409020556108b6818463ffffffff610ee716565b600160a060020a0380871660008181526002602090815260408083203386168452909152908190209390935590861691600080516020610f1f8339815191529086905190815260200160405180910390a3600191505b509392505050565b601281565b60085481565b60035433600160a060020a0390811691161461093a57600080fd5b6109426109cb565b1561094c57600080fd5b6001602052600080516020610eff83398151915254600754600160a060020a0316600090815260409020546109869163ffffffff610e7b16565b600754600160a060020a031660009081526001602052604081209190915560b18152600080516020610eff833981519152555b5b565b600754600160a060020a031681565b60006004546109d8610e95565b101580156109ee57506005546109ec610e95565b105b8015610a01575060006109ff610ec9565b115b90505b90565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b604080519081016040526003815260e960020a6221a7a102602082015281565b60096020526000908152604090205481565b600160a060020a033316600090815260016020526040812054610a90908363ffffffff610ee716565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ac5908363ffffffff610e7b16565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020610f1f8339815191529085905190815260200160405180910390a35060015b92915050565b6000600454821015610b2957506000610a21565b60045462093a8001821015610b4157506115e0610a21565b6004546212750001821015610b595750611450610a21565b600454621baf8001821015610b7157506112c0610a21565b6004546224ea0001821015610b895750611130610a21565b6005548211610b9b5750610fa0610a21565b506000610a21565b5b5b5b5b5b5b919050565b60035433600160a060020a03908116911614610bc957600080fd5b600754600160a060020a031660009081526001602052604090205481901015610bf157600080fd5b600754600160a060020a0316600090815260016020526040902054610c1c908263ffffffff610ee716565b600754600160a060020a039081166000908152600160205260408082209390935590841681522054610c54908263ffffffff610e7b16565b600160a060020a0383166000818152600160205260409081902092909255907fdb2d10a559cb6e14fee5a7a2d8c216314e11c22404e85a4f9af45f07c87192bb9083905190815260200160405180910390a25b5b5050565b60055481565b33600160a060020a038116600090815260096020526040908190208390557fa1a3e4c7b21b6004c77b4fe18bdd0d1bd1be31dbb88112463524daa9abacb8369190839051600160a060020a03909216825260208201526040908101905180910390a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610d6057600080fd5b600160a060020a03811615610d155760038054600160a060020a031916600160a060020a0383161790555b5b5b50565b60035433600160a060020a03908116911614610dab57600080fd5b600754600160a060020a031615610dc157600080fd5b610dc9610e95565b841015610dd557600080fd5b828410610de157600080fd5b600160a060020a0385161515610df657600080fd5b818111610e0257600080fd5b60048490556005839055600682905560078054600160a060020a031916600160a060020a0387161790556000819055610e3b8183610ee7565b600754600160a060020a031660009081526001602052604081209190915560065460b1909152600080516020610eff833981519152555b5b5b5050505050565b600082820183811015610e8a57fe5b8091505b5092915050565b425b90565b6000828202831580610eb65750828482811515610eb357fe5b04145b1515610e8a57fe5b8091505b5092915050565b60b16000526001602052600080516020610eff833981519152545b90565b600082821115610ef357fe5b508082035b9291505056007ff6d99ecf17df3f1097d877fba82682b40f191db7daded98d658129a21865e6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058202fcbf31b92b87d4233db6fcd028bb51b7a257b715af5e311399b19af4473c58e0029

Swarm Source

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