ETH Price: $2,593.12 (-2.44%)

Token

 

Overview

Max Total Supply

350,000,000,000,000,000,000,000,000

Holders

212

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
barbarianeagle.eth
Balance
20,693,474,426,885,898,635,321

Value
$0.00
0xbaa32387bd55553ec806622d524b12bbb8242a19
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:
SharderToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-02-22
*/

/*
  Copyright 2017 Sharder Foundation.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/
pragma solidity ^0.4.18;

/**
 * Math operations with safety checks
 */
library SafeMath {
    function mul(uint a, uint b) internal pure returns (uint) {
        uint c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }

    function div(uint a, uint b) internal pure returns (uint) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

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

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

    function max64(uint64 a, uint64 b) internal pure returns (uint64) {
        return a >= b ? a : b;
    }

    function min64(uint64 a, uint64 b) internal pure returns (uint64) {
        return a < b ? a : b;
    }

    function max256(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    function min256(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
}

/**
* @title Sharder Protocol Token.
* For more information about this token sale, please visit https://sharder.org
* @author Ben - <[email protected]>.
* @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 SharderToken {
    using SafeMath for uint;
    string public constant NAME = "Sharder Storage";
    string public constant SYMBOL = "SS";
    uint public constant DECIMALS = 18;
    uint public totalSupply;

    mapping (address => mapping (address => uint256))  public allowed;
    mapping (address => uint) public balances;

    /// This is where we hold ether during this crowdsale. We will not transfer any ether
    /// out of this address before we invocate the `closeCrowdsale` function to finalize the crowdsale.
    /// This promise is not guanranteed by smart contract by can be verified with public
    /// Ethereum transactions data available on several blockchain browsers.
    /// This is the only address from which `startCrowdsale` and `closeCrowdsale` can be invocated.
    address public owner;

    /// Admin account used to manage after crowdsale
    address public admin;

    mapping (address => bool) public accountLockup;
    mapping (address => uint) public accountLockupTime;
    mapping (address => bool) public frozenAccounts;

    ///   +-----------------------------------------------------------------------------------+
    ///   |                        SS Token Issue Plan - First Round                          |
    ///   +-----------------------------------------------------------------------------------+
    ///   |  Total Sale  |   Airdrop    |  Community Reserve  |  Team Reserve | System Reward |
    ///   +-----------------------------------------------------------------------------------+
    ///   |     50%      |     10%      |         10%         |  Don't Issued | Don't Issued  |
    ///   +-----------------------------------------------------------------------------------+
    ///   | 250,000,000  |  50,000,000  |     50,000,000      |      None     |      None     |
    ///   +-----------------------------------------------------------------------------------+
    uint256 internal constant FIRST_ROUND_ISSUED_SS = 350000000000000000000000000;

    /// Maximum amount of fund to be raised, the sale ends on reaching this amount.
    uint256 public constant HARD_CAP = 1500 ether;

    /// It will be refuned if crowdsale can't acheive the soft cap, all ethers will be refuned.
    uint256 public constant SOFT_CAP = 1000 ether;

    /// 1 ether exchange rate
    /// base the 7-day average close price (Feb.15 through Feb.21, 2018) on CoinMarketCap.com at Feb.21.
    uint256 public constant BASE_RATE = 20719;

    /// 1 ether == 1000 finney
    /// Min contribution: 0.1 ether
    uint256 public constant CONTRIBUTION_MIN = 100 finney;

    /// Max contribution: 5 ether
    uint256 public constant CONTRIBUTION_MAX = 5000 finney;

    /// Sold SS tokens in crowdsale
    uint256 public soldSS = 0;

    uint8[2] internal bonusPercentages = [
    0,
    0
    ];

    uint256 internal constant MAX_PROMOTION_SS = 0;
    uint internal constant NUM_OF_PHASE = 2;
    uint internal constant BLOCKS_PER_PHASE = 86400;

    /// Crowdsale start block number.
    uint public saleStartAtBlock = 0;

    /// Crowdsale ended block number.
    uint public saleEndAtBlock = 0;

    /// Unsold ss token whether isssued.
    bool internal unsoldTokenIssued = false;

    /// Goal whether achieved
    bool internal isGoalAchieved = false;

    /// Received ether
    uint256 internal totalEthReceived = 0;

    /// Issue event index starting from 0.
    uint256 internal issueIndex = 0;

    /*
     * EVENTS
     */
    /// Emitted only once after token sale starts.
    event SaleStarted();

    /// Emitted only once after token sale ended (all token issued).
    event SaleEnded();

    /// Emitted when a function is invocated by unauthorized addresses.
    event InvalidCaller(address caller);

    /// Emitted when a function is invocated without the specified preconditions.
    /// This event will not come alone with an exception.
    event InvalidState(bytes msg);

    /// Emitted for each sucuessful token purchase.
    event Issue(uint issueIndex, address addr, uint ethAmount, uint tokenAmount);

    /// Emitted if the token sale succeeded.
    event SaleSucceeded();

    /// Emitted if the token sale failed.
    /// When token sale failed, all Ether will be return to the original purchasing
    /// address with a minor deduction of transaction fee(gas)
    event SaleFailed();

    // This notifies clients about the amount to transfer
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount to approve
    event Approval(address indexed owner, address indexed spender, uint value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal isNotFrozen {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balances[_from] >= _value);
        // Check for overflows
        require(balances[_to] + _value > balances[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balances[_from] + balances[_to];
        // Subtract from the sender
        balances[_from] -= _value;
        // Add the same to the recipient
        balances[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balances[_from] + balances[_to] == previousBalances);
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _transferTokensWithDecimal The amount to be transferred.
    */
    function transfer(address _to, uint _transferTokensWithDecimal) public {
        _transfer(msg.sender, _to, _transferTokensWithDecimal);
    }

    /**
    * @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 _transferTokensWithDecimal uint the amout of tokens to be transfered
    */
    function transferFrom(address _from, address _to, uint _transferTokensWithDecimal) public returns (bool success) {
        require(_transferTokensWithDecimal <= allowed[_from][msg.sender]);     // Check allowance
        allowed[_from][msg.sender] -= _transferTokensWithDecimal;
        _transfer(_from, _to, _transferTokensWithDecimal);
        return true;
    }

    /**
    * @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 constant returns (uint balance) {
        return balances[_owner];
    }

    /**
     * Set allowance for other address
     * Allows `_spender` to spend no more than `_approveTokensWithDecimal` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _approveTokensWithDecimal the max amount they can spend
     */
    function approve(address _spender, uint256 _approveTokensWithDecimal) public isNotFrozen returns (bool success) {
        allowed[msg.sender][_spender] = _approveTokensWithDecimal;
        Approval(msg.sender, _spender, _approveTokensWithDecimal);
        return true;
    }

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

    /**
       * Destroy tokens
       * Remove `_value` tokens from the system irreversibly
       *
       * @param _burnedTokensWithDecimal the amount of reserve tokens. !!IMPORTANT is 18 DECIMALS
       */
    function burn(uint256 _burnedTokensWithDecimal) public returns (bool success) {
        require(balances[msg.sender] >= _burnedTokensWithDecimal);   /// Check if the sender has enough
        balances[msg.sender] -= _burnedTokensWithDecimal;            /// Subtract from the sender
        totalSupply -= _burnedTokensWithDecimal;                      /// Updates totalSupply
        Burn(msg.sender, _burnedTokensWithDecimal);
        return true;
    }

    /**
     * Destroy tokens from other account
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _burnedTokensWithDecimal the amount of reserve tokens. !!IMPORTANT is 18 DECIMALS
     */
    function burnFrom(address _from, uint256 _burnedTokensWithDecimal) public returns (bool success) {
        require(balances[_from] >= _burnedTokensWithDecimal);                /// Check if the targeted balance is enough
        require(_burnedTokensWithDecimal <= allowed[_from][msg.sender]);    /// Check allowance
        balances[_from] -= _burnedTokensWithDecimal;                        /// Subtract from the targeted balance
        allowed[_from][msg.sender] -= _burnedTokensWithDecimal;             /// Subtract from the sender's allowance
        totalSupply -= _burnedTokensWithDecimal;                            /// Update totalSupply
        Burn(_from, _burnedTokensWithDecimal);
        return true;
    }

    /*
     * MODIFIERS
     */
    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    modifier onlyAdmin {
        require(msg.sender == owner || msg.sender == admin);
        _;
    }

    modifier beforeStart {
        require(!saleStarted());
        _;
    }

    modifier inProgress {
        require(saleStarted() && !saleEnded());
        _;
    }

    modifier afterEnd {
        require(saleEnded());
        _;
    }

    modifier isNotFrozen {
        require( frozenAccounts[msg.sender] != true && now > accountLockupTime[msg.sender] );
        _;
    }

    /**
     * CONSTRUCTOR
     *
     * @dev Initialize the Sharder Token
     */
    function SharderToken() public {
        owner = msg.sender;
        admin = msg.sender;
        totalSupply = FIRST_ROUND_ISSUED_SS;
    }

    /*
     * PUBLIC FUNCTIONS
     */

    ///@dev Set admin account.
    function setAdmin(address _address) public onlyOwner {
       admin=_address;
    }

    ///@dev Set frozen status of account.
    function setAccountFrozenStatus(address _address, bool _frozenStatus) public onlyAdmin {
        require(unsoldTokenIssued);
        frozenAccounts[_address] = _frozenStatus;
    }

    /// @dev Lockup account till the date. Can't lockup again when this account locked already.
    /// 1 year = 31536000 seconds
    /// 0.5 year = 15768000 seconds
    function lockupAccount(address _address, uint _lockupSeconds) public onlyAdmin {
        require((accountLockup[_address] && now > accountLockupTime[_address]) || !accountLockup[_address]);

        // frozen time = now + _lockupSeconds
        accountLockupTime[_address] = now + _lockupSeconds;
        accountLockup[_address] = true;
    }

    /// @dev Start the crowdsale.
    function startCrowdsale(uint _saleStartAtBlock) public onlyOwner beforeStart {
        require(_saleStartAtBlock > block.number);
        saleStartAtBlock = _saleStartAtBlock;
        SaleStarted();
    }

    /// @dev Close the crowdsale and issue unsold tokens to `owner` address.
    function closeCrowdsale() public onlyOwner afterEnd {
        require(!unsoldTokenIssued);

        if (totalEthReceived >= SOFT_CAP) {
            saleEndAtBlock = block.number;
            issueUnsoldToken();
            SaleSucceeded();
        } else {
            SaleFailed();
        }
    }

    /// @dev goal achieved ahead of time
    function goalAchieved() public onlyOwner {
        require(!isGoalAchieved && softCapReached());
        isGoalAchieved = true;
        closeCrowdsale();
    }

    /// @dev Returns the current price.
    function price() public constant returns (uint tokens) {
        return computeTokenAmount(1 ether);
    }

    /// @dev This default function allows token to be purchased by directly
    /// sending ether to this smart contract.
    function () public payable {
        issueToken(msg.sender);
    }

    /// @dev Issue token based on ether received.
    /// @param recipient Address that newly issued token will be sent to.
    function issueToken(address recipient) public payable inProgress {
        // Personal cap check
        require(balances[recipient].div(BASE_RATE).add(msg.value) <= CONTRIBUTION_MAX);
        // Contribution cap check
        require(CONTRIBUTION_MIN <= msg.value && msg.value <= CONTRIBUTION_MAX);

        uint tokens = computeTokenAmount(msg.value);

        totalEthReceived = totalEthReceived.add(msg.value);
        soldSS = soldSS.add(tokens);

        balances[recipient] = balances[recipient].add(tokens);
        Issue(issueIndex++,recipient,msg.value,tokens);

        require(owner.send(msg.value));
    }

    /// @dev Issue token for reserve.
    /// @param recipient Address that newly issued reserve token will be sent to.
    /// @param _issueTokensWithDecimal the amount of reserve tokens. !!IMPORTANT is 18 DECIMALS
    function issueReserveToken(address recipient, uint256 _issueTokensWithDecimal) onlyOwner public {
        balances[recipient] = balances[recipient].add(_issueTokensWithDecimal);
        totalSupply = totalSupply.add(_issueTokensWithDecimal);
        Issue(issueIndex++,recipient,0,_issueTokensWithDecimal);
    }

    /*
     * INTERNAL FUNCTIONS
     */
    /// @dev Compute the amount of SS token that can be purchased.
    /// @param ethAmount Amount of Ether to purchase SS.
    /// @return Amount of SS token to purchase
    function computeTokenAmount(uint ethAmount) internal constant returns (uint tokens) {
        uint phase = (block.number - saleStartAtBlock).div(BLOCKS_PER_PHASE);

        // A safe check
        if (phase >= bonusPercentages.length) {
            phase = bonusPercentages.length - 1;
        }

        uint tokenBase = ethAmount.mul(BASE_RATE);

        //Check promotion supply and phase bonus
        uint tokenBonus = 0;
        if(totalEthReceived * BASE_RATE < MAX_PROMOTION_SS) {
            tokenBonus = tokenBase.mul(bonusPercentages[phase]).div(100);
        }

        tokens = tokenBase.add(tokenBonus);
    }

    /// @dev Issue unsold token to `owner` address.
    function issueUnsoldToken() internal {
        if (unsoldTokenIssued) {
            InvalidState("Unsold token has been issued already");
        } else {
            // Add another safe guard
            require(soldSS > 0);

            uint256 unsoldSS = totalSupply.sub(soldSS);
            // Issue 'unsoldToken' to the admin account.
            balances[owner] = balances[owner].add(unsoldSS);
            Issue(issueIndex++,owner,0,unsoldSS);

            unsoldTokenIssued = true;
        }
    }

    /// @return true if sale has started, false otherwise.
    function saleStarted() public constant returns (bool) {
        return (saleStartAtBlock > 0 && block.number >= saleStartAtBlock);
    }

    /// @return true if sale has ended, false otherwise.
    /// Sale ended in: a) end time of crowdsale reached, b) hard cap reached, c) goal achieved ahead of time
    function saleEnded() public constant returns (bool) {
        return saleStartAtBlock > 0 && (saleDue() || hardCapReached() || isGoalAchieved);
    }

    /// @return true if sale is due when the last phase is finished.
    function saleDue() internal constant returns (bool) {
        return block.number >= saleStartAtBlock + BLOCKS_PER_PHASE * NUM_OF_PHASE;
    }

    /// @return true if the hard cap is reached.
    function hardCapReached() internal constant returns (bool) {
        return totalEthReceived >= HARD_CAP;
    }

    /// @return true if the soft cap is reached.
    function softCapReached() internal constant returns (bool) {
        return totalEthReceived >= SOFT_CAP;
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_approveTokensWithDecimal","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"goalAchieved","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"accountLockupTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTION_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_transferTokensWithDecimal","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"soldSS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BASE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_burnedTokensWithDecimal","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_frozenStatus","type":"bool"}],"name":"setAccountFrozenStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_burnedTokensWithDecimal","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"_issueTokensWithDecimal","type":"uint256"}],"name":"issueReserveToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccounts","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"}],"name":"issueToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"accountLockup","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closeCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_transferTokensWithDecimal","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_lockupSeconds","type":"uint256"}],"name":"lockupAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"SOFT_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleEndAtBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTION_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_saleStartAtBlock","type":"uint256"}],"name":"startCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleStartAtBlock","outputs":[{"name":"","type":"uint256"}],"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":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"SaleStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleEnded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"caller","type":"address"}],"name":"InvalidCaller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"msg","type":"bytes"}],"name":"InvalidState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"issueIndex","type":"uint256"},{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"ethAmount","type":"uint256"},{"indexed":false,"name":"tokenAmount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleSucceeded","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleFailed","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":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

6060604052600060085560408051908101604052600080825260208201526200002d9060099060026200009a565b506000600a819055600b819055600c805461ffff19169055600d819055600e5534156200005957600080fd5b60038054600160a060020a033316600160a060020a031991821681179092556004805490911690911790556b0121836204bc2ce21e00000060005562000158565b600183019183908215620001225791602002820160005b83821115620000f157835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302620000b1565b8015620001205782816101000a81549060ff0219169055600101602081600001049283019260010302620000f1565b505b506200013092915062000134565b5090565b6200015591905b808211156200013057805460ff191681556001016200013b565b90565b61147580620001686000396000f3006060604052600436106101c15763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663095ea7b381146101cc5780630f7a45901461020257806315e0d7d11461021557806318160ddd146102465780631a2309f01461025957806323b872dd1461026c57806327e235e3146102945780632e0f2625146102b35780633384e128146102c65780633a03171c146102d957806341910f90146102ec57806342966c68146102ff5780635c474f9e146103155780635c658165146103285780635e03d3931461034d578063704b6c021461037157806370a082311461039057806379cc6790146103af5780638195fc5b146103d1578063860838a5146103f357806389034082146104125780638da5cb5b146104265780639208de9714610455578063983c0a01146104745780639b8906ae14610487578063a035b1fe1461049a578063a3f4df7e146104ad578063a9059cbb14610537578063aa8acdfd14610559578063b652dc2f1461057b578063b82fb7451461058e578063ba9bb827146105a1578063bbc2402d146105b4578063f764531d146105ca578063f76f8d78146105dd578063f851a440146105f0575b6101ca33610603565b005b34156101d757600080fd5b6101ee600160a060020a03600435166024356107c1565b604051901515815260200160405180910390f35b341561020d57600080fd5b6101ca61087a565b341561022057600080fd5b610234600160a060020a03600435166108d4565b60405190815260200160405180910390f35b341561025157600080fd5b6102346108e6565b341561026457600080fd5b6102346108ec565b341561027757600080fd5b6101ee600160a060020a03600435811690602435166044356108f8565b341561029f57600080fd5b610234600160a060020a036004351661096f565b34156102be57600080fd5b610234610981565b34156102d157600080fd5b610234610986565b34156102e457600080fd5b61023461098c565b34156102f757600080fd5b610234610999565b341561030a57600080fd5b6101ee60043561099f565b341561032057600080fd5b6101ee610a28565b341561033357600080fd5b610234600160a060020a0360043581169060243516610a42565b341561035857600080fd5b6101ca600160a060020a03600435166024351515610a5f565b341561037c57600080fd5b6101ca600160a060020a0360043516610ad1565b341561039b57600080fd5b610234600160a060020a0360043516610b1b565b34156103ba57600080fd5b6101ee600160a060020a0360043516602435610b36565b34156103dc57600080fd5b6101ca600160a060020a0360043516602435610c10565b34156103fe57600080fd5b6101ee600160a060020a0360043516610ced565b6101ca600160a060020a0360043516610603565b341561043157600080fd5b610439610d02565b604051600160a060020a03909116815260200160405180910390f35b341561046057600080fd5b6101ee600160a060020a0360043516610d11565b341561047f57600080fd5b6101ca610d26565b341561049257600080fd5b6101ee610de2565b34156104a557600080fd5b610234610e1b565b34156104b857600080fd5b6104c0610e2e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156104fc5780820151838201526020016104e4565b50505050905090810190601f1680156105295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561054257600080fd5b6101ca600160a060020a0360043516602435610e65565b341561056457600080fd5b6101ca600160a060020a0360043516602435610e70565b341561058657600080fd5b610234610f49565b341561059957600080fd5b610234610f56565b34156105ac57600080fd5b610234610f5c565b34156105bf57600080fd5b6101ca600435610f68565b34156105d557600080fd5b610234610fd5565b34156105e857600080fd5b6104c0610fdb565b34156105fb57600080fd5b610439611012565b600061060d610a28565b801561061e575061061c610de2565b155b151561062957600080fd5b600160a060020a038216600090815260026020526040902054674563918244f4000090610670903490610664906150ef63ffffffff61102116565b9063ffffffff61103816565b111561067b57600080fd5b3467016345785d8a00001115801561069b5750674563918244f400003411155b15156106a657600080fd5b6106af3461104e565b600d549091506106c5903463ffffffff61103816565b600d556008546106db908263ffffffff61103816565b600855600160a060020a038216600090815260026020526040902054610707908263ffffffff61103816565b600160a060020a0383166000908152600260205260409081902091909155600e8054600181019091557fe316e9c07bf6ee91102f762d73f95b6cab9dcc157278814c7408906855c6a3a69184903490859051938452600160a060020a03909216602084015260408084019190915260608301919091526080909101905180910390a1600354600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156107bd57600080fd5b5050565b600160a060020a03331660009081526007602052604081205460ff1615156001148015906108065750600160a060020a03331660009081526006602052604090205442115b151561081157600080fd5b600160a060020a03338116600081815260016020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461089557600080fd5b600c54610100900460ff161580156108b057506108b0611102565b15156108bb57600080fd5b600c805461ff0019166101001790556108d2610d26565b565b60066020526000908152604090205481565b60005481565b674563918244f4000081565b600160a060020a0380841660009081526001602090815260408083203390941683529290529081205482111561092d57600080fd5b600160a060020a0380851660009081526001602090815260408083203390941683529290522080548390039055610965848484611115565b5060019392505050565b60026020526000908152604090205481565b601281565b60085481565b685150ae84a8cdf0000081565b6150ef81565b600160a060020a033316600090815260026020526040812054829010156109c557600080fd5b600160a060020a0333166000818152600260205260408082208054869003905581548590039091557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b600080600a54118015610a3d5750600a544310155b905090565b600160209081526000928352604080842090915290825290205481565b60035433600160a060020a0390811691161480610a8a575060045433600160a060020a039081169116145b1515610a9557600080fd5b600c5460ff161515610aa657600080fd5b600160a060020a03919091166000908152600760205260409020805460ff1916911515919091179055565b60035433600160a060020a03908116911614610aec57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526002602052604090205490565b600160a060020a03821660009081526002602052604081205482901015610b5c57600080fd5b600160a060020a0380841660009081526001602090815260408083203390941683529290522054821115610b8f57600080fd5b600160a060020a03808416600081815260026020908152604080832080548890039055600182528083203390951683529390528281208054869003905580548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b60035433600160a060020a03908116911614610c2b57600080fd5b600160a060020a038216600090815260026020526040902054610c54908263ffffffff61103816565b600160a060020a03831660009081526002602052604081209190915554610c81908263ffffffff61103816565b6000908155600e8054600181019091557fe316e9c07bf6ee91102f762d73f95b6cab9dcc157278814c7408906855c6a3a691849084604051938452600160a060020a03909216602084015260408084019190915260608301919091526080909101905180910390a15050565b60076020526000908152604090205460ff1681565b600354600160a060020a031681565b60056020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610d4157600080fd5b610d49610de2565b1515610d5457600080fd5b600c5460ff1615610d6457600080fd5b600d54683635c9adc5dea000009010610db45743600b55610d83611269565b7f0151fbf6d2def4666ab0f87412daa4ac6a67e9fa86a50cfbd7b36b16d72705d960405160405180910390a16108d2565b7f100c98fe43bef515268f854995b9fe23e0d72dbe3f2726094d9f1864ab4afde260405160405180910390a1565b600080600a54118015610a3d5750610df86113f2565b80610e065750610e06611400565b80610a3d575050600c54610100900460ff1690565b6000610a3d670de0b6b3a764000061104e565b60408051908101604052600f81527f536861726465722053746f726167650000000000000000000000000000000000602082015281565b6107bd338383611115565b60035433600160a060020a0390811691161480610e9b575060045433600160a060020a039081169116145b1515610ea657600080fd5b600160a060020a03821660009081526005602052604090205460ff168015610ee55750600160a060020a03821660009081526006602052604090205442115b80610f095750600160a060020a03821660009081526005602052604090205460ff16155b1515610f1457600080fd5b600160a060020a039091166000908152600660209081526040808320429094019093556005905220805460ff19166001179055565b683635c9adc5dea0000081565b600b5481565b67016345785d8a000081565b60035433600160a060020a03908116911614610f8357600080fd5b610f8b610a28565b15610f9557600080fd5b438111610fa157600080fd5b600a8190557f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb60405160405180910390a150565b600a5481565b60408051908101604052600281527f5353000000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a031681565b600080828481151561102f57fe5b04949350505050565b60008282018381101561104757fe5b9392505050565b60008060008061106e62015180600a54430361102190919063ffffffff16565b92506002831061107d57600192505b61108f856150ef63ffffffff61141316565b91506000905060006150ef600d540210156110e9576110e660646110da600986600281106110b957fe5b602080820490920154879260ff92066101000a90041663ffffffff61141316565b9063ffffffff61102116565b90505b6110f9828263ffffffff61103816565b95945050505050565b600d54683635c9adc5dea0000090101590565b600160a060020a03331660009081526007602052604081205460ff16151560011480159061115a5750600160a060020a03331660009081526006602052604090205442115b151561116557600080fd5b600160a060020a038316151561117a57600080fd5b600160a060020a038416600090815260026020526040902054829010156111a057600080fd5b600160a060020a038316600090815260026020526040902054828101116111c657600080fd5b50600160a060020a0380831660008181526002602052604080822080549488168084528284208054888103909155938590528154870190915591909301927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a0380841660009081526002602052604080822054928716825290205401811461126357fe5b50505050565b600c5460009060ff1615611307577fa24636c18e73457917a92dad223d797b84c2f7a4bdd82892f15a8c4cd9aec1b760405160208082526024908201527f556e736f6c6420746f6b656e20686173206265656e2069737375656420616c726040808301919091527f656164790000000000000000000000000000000000000000000000000000000060608301526080909101905180910390a16113ef565b6008546000901161131757600080fd5b60085460005461132c9163ffffffff61143716565b600354600160a060020a031660009081526002602052604090205490915061135a908263ffffffff61103816565b60038054600160a060020a0390811660009081526002602052604080822094909455600e80546001810190915592547fe316e9c07bf6ee91102f762d73f95b6cab9dcc157278814c7408906855c6a3a694921691859051938452600160a060020a03909216602084015260408084019190915260608301919091526080909101905180910390a1600c805460ff191660011790555b50565b600a546202a3000143101590565b600d54685150ae84a8cdf0000090101590565b600082820283158061142f575082848281151561142c57fe5b04145b151561104757fe5b60008282111561144357fe5b509003905600a165627a7a72305820f4dc88f794a53a2bd1d7ac5802a9ee8b682411e20ca3699365f480efce1b7a4f0029

Deployed Bytecode

0x6060604052600436106101c15763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663095ea7b381146101cc5780630f7a45901461020257806315e0d7d11461021557806318160ddd146102465780631a2309f01461025957806323b872dd1461026c57806327e235e3146102945780632e0f2625146102b35780633384e128146102c65780633a03171c146102d957806341910f90146102ec57806342966c68146102ff5780635c474f9e146103155780635c658165146103285780635e03d3931461034d578063704b6c021461037157806370a082311461039057806379cc6790146103af5780638195fc5b146103d1578063860838a5146103f357806389034082146104125780638da5cb5b146104265780639208de9714610455578063983c0a01146104745780639b8906ae14610487578063a035b1fe1461049a578063a3f4df7e146104ad578063a9059cbb14610537578063aa8acdfd14610559578063b652dc2f1461057b578063b82fb7451461058e578063ba9bb827146105a1578063bbc2402d146105b4578063f764531d146105ca578063f76f8d78146105dd578063f851a440146105f0575b6101ca33610603565b005b34156101d757600080fd5b6101ee600160a060020a03600435166024356107c1565b604051901515815260200160405180910390f35b341561020d57600080fd5b6101ca61087a565b341561022057600080fd5b610234600160a060020a03600435166108d4565b60405190815260200160405180910390f35b341561025157600080fd5b6102346108e6565b341561026457600080fd5b6102346108ec565b341561027757600080fd5b6101ee600160a060020a03600435811690602435166044356108f8565b341561029f57600080fd5b610234600160a060020a036004351661096f565b34156102be57600080fd5b610234610981565b34156102d157600080fd5b610234610986565b34156102e457600080fd5b61023461098c565b34156102f757600080fd5b610234610999565b341561030a57600080fd5b6101ee60043561099f565b341561032057600080fd5b6101ee610a28565b341561033357600080fd5b610234600160a060020a0360043581169060243516610a42565b341561035857600080fd5b6101ca600160a060020a03600435166024351515610a5f565b341561037c57600080fd5b6101ca600160a060020a0360043516610ad1565b341561039b57600080fd5b610234600160a060020a0360043516610b1b565b34156103ba57600080fd5b6101ee600160a060020a0360043516602435610b36565b34156103dc57600080fd5b6101ca600160a060020a0360043516602435610c10565b34156103fe57600080fd5b6101ee600160a060020a0360043516610ced565b6101ca600160a060020a0360043516610603565b341561043157600080fd5b610439610d02565b604051600160a060020a03909116815260200160405180910390f35b341561046057600080fd5b6101ee600160a060020a0360043516610d11565b341561047f57600080fd5b6101ca610d26565b341561049257600080fd5b6101ee610de2565b34156104a557600080fd5b610234610e1b565b34156104b857600080fd5b6104c0610e2e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156104fc5780820151838201526020016104e4565b50505050905090810190601f1680156105295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561054257600080fd5b6101ca600160a060020a0360043516602435610e65565b341561056457600080fd5b6101ca600160a060020a0360043516602435610e70565b341561058657600080fd5b610234610f49565b341561059957600080fd5b610234610f56565b34156105ac57600080fd5b610234610f5c565b34156105bf57600080fd5b6101ca600435610f68565b34156105d557600080fd5b610234610fd5565b34156105e857600080fd5b6104c0610fdb565b34156105fb57600080fd5b610439611012565b600061060d610a28565b801561061e575061061c610de2565b155b151561062957600080fd5b600160a060020a038216600090815260026020526040902054674563918244f4000090610670903490610664906150ef63ffffffff61102116565b9063ffffffff61103816565b111561067b57600080fd5b3467016345785d8a00001115801561069b5750674563918244f400003411155b15156106a657600080fd5b6106af3461104e565b600d549091506106c5903463ffffffff61103816565b600d556008546106db908263ffffffff61103816565b600855600160a060020a038216600090815260026020526040902054610707908263ffffffff61103816565b600160a060020a0383166000908152600260205260409081902091909155600e8054600181019091557fe316e9c07bf6ee91102f762d73f95b6cab9dcc157278814c7408906855c6a3a69184903490859051938452600160a060020a03909216602084015260408084019190915260608301919091526080909101905180910390a1600354600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156107bd57600080fd5b5050565b600160a060020a03331660009081526007602052604081205460ff1615156001148015906108065750600160a060020a03331660009081526006602052604090205442115b151561081157600080fd5b600160a060020a03338116600081815260016020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461089557600080fd5b600c54610100900460ff161580156108b057506108b0611102565b15156108bb57600080fd5b600c805461ff0019166101001790556108d2610d26565b565b60066020526000908152604090205481565b60005481565b674563918244f4000081565b600160a060020a0380841660009081526001602090815260408083203390941683529290529081205482111561092d57600080fd5b600160a060020a0380851660009081526001602090815260408083203390941683529290522080548390039055610965848484611115565b5060019392505050565b60026020526000908152604090205481565b601281565b60085481565b685150ae84a8cdf0000081565b6150ef81565b600160a060020a033316600090815260026020526040812054829010156109c557600080fd5b600160a060020a0333166000818152600260205260408082208054869003905581548590039091557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b600080600a54118015610a3d5750600a544310155b905090565b600160209081526000928352604080842090915290825290205481565b60035433600160a060020a0390811691161480610a8a575060045433600160a060020a039081169116145b1515610a9557600080fd5b600c5460ff161515610aa657600080fd5b600160a060020a03919091166000908152600760205260409020805460ff1916911515919091179055565b60035433600160a060020a03908116911614610aec57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526002602052604090205490565b600160a060020a03821660009081526002602052604081205482901015610b5c57600080fd5b600160a060020a0380841660009081526001602090815260408083203390941683529290522054821115610b8f57600080fd5b600160a060020a03808416600081815260026020908152604080832080548890039055600182528083203390951683529390528281208054869003905580548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b60035433600160a060020a03908116911614610c2b57600080fd5b600160a060020a038216600090815260026020526040902054610c54908263ffffffff61103816565b600160a060020a03831660009081526002602052604081209190915554610c81908263ffffffff61103816565b6000908155600e8054600181019091557fe316e9c07bf6ee91102f762d73f95b6cab9dcc157278814c7408906855c6a3a691849084604051938452600160a060020a03909216602084015260408084019190915260608301919091526080909101905180910390a15050565b60076020526000908152604090205460ff1681565b600354600160a060020a031681565b60056020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610d4157600080fd5b610d49610de2565b1515610d5457600080fd5b600c5460ff1615610d6457600080fd5b600d54683635c9adc5dea000009010610db45743600b55610d83611269565b7f0151fbf6d2def4666ab0f87412daa4ac6a67e9fa86a50cfbd7b36b16d72705d960405160405180910390a16108d2565b7f100c98fe43bef515268f854995b9fe23e0d72dbe3f2726094d9f1864ab4afde260405160405180910390a1565b600080600a54118015610a3d5750610df86113f2565b80610e065750610e06611400565b80610a3d575050600c54610100900460ff1690565b6000610a3d670de0b6b3a764000061104e565b60408051908101604052600f81527f536861726465722053746f726167650000000000000000000000000000000000602082015281565b6107bd338383611115565b60035433600160a060020a0390811691161480610e9b575060045433600160a060020a039081169116145b1515610ea657600080fd5b600160a060020a03821660009081526005602052604090205460ff168015610ee55750600160a060020a03821660009081526006602052604090205442115b80610f095750600160a060020a03821660009081526005602052604090205460ff16155b1515610f1457600080fd5b600160a060020a039091166000908152600660209081526040808320429094019093556005905220805460ff19166001179055565b683635c9adc5dea0000081565b600b5481565b67016345785d8a000081565b60035433600160a060020a03908116911614610f8357600080fd5b610f8b610a28565b15610f9557600080fd5b438111610fa157600080fd5b600a8190557f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb60405160405180910390a150565b600a5481565b60408051908101604052600281527f5353000000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a031681565b600080828481151561102f57fe5b04949350505050565b60008282018381101561104757fe5b9392505050565b60008060008061106e62015180600a54430361102190919063ffffffff16565b92506002831061107d57600192505b61108f856150ef63ffffffff61141316565b91506000905060006150ef600d540210156110e9576110e660646110da600986600281106110b957fe5b602080820490920154879260ff92066101000a90041663ffffffff61141316565b9063ffffffff61102116565b90505b6110f9828263ffffffff61103816565b95945050505050565b600d54683635c9adc5dea0000090101590565b600160a060020a03331660009081526007602052604081205460ff16151560011480159061115a5750600160a060020a03331660009081526006602052604090205442115b151561116557600080fd5b600160a060020a038316151561117a57600080fd5b600160a060020a038416600090815260026020526040902054829010156111a057600080fd5b600160a060020a038316600090815260026020526040902054828101116111c657600080fd5b50600160a060020a0380831660008181526002602052604080822080549488168084528284208054888103909155938590528154870190915591909301927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3600160a060020a0380841660009081526002602052604080822054928716825290205401811461126357fe5b50505050565b600c5460009060ff1615611307577fa24636c18e73457917a92dad223d797b84c2f7a4bdd82892f15a8c4cd9aec1b760405160208082526024908201527f556e736f6c6420746f6b656e20686173206265656e2069737375656420616c726040808301919091527f656164790000000000000000000000000000000000000000000000000000000060608301526080909101905180910390a16113ef565b6008546000901161131757600080fd5b60085460005461132c9163ffffffff61143716565b600354600160a060020a031660009081526002602052604090205490915061135a908263ffffffff61103816565b60038054600160a060020a0390811660009081526002602052604080822094909455600e80546001810190915592547fe316e9c07bf6ee91102f762d73f95b6cab9dcc157278814c7408906855c6a3a694921691859051938452600160a060020a03909216602084015260408084019190915260608301919091526080909101905180910390a1600c805460ff191660011790555b50565b600a546202a3000143101590565b600d54685150ae84a8cdf0000090101590565b600082820283158061142f575082848281151561142c57fe5b04145b151561104757fe5b60008282111561144357fe5b509003905600a165627a7a72305820f4dc88f794a53a2bd1d7ac5802a9ee8b682411e20ca3699365f480efce1b7a4f0029

Swarm Source

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