ETH Price: $2,627.38 (-2.59%)

Contract

0xf0AcD56B420563A2eD2a875C5b7011dBfA4026F8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Pause59697852018-07-15 16:31:442399 days ago1531672304IN
0xf0AcD56B...BfA4026F8
0 ETH0.00142850

Advanced mode:
Parent Transaction Hash Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HitToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-07-14
*/

pragma solidity 0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

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

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

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

    /**
     * @dev Adds two numbers, throws on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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;


    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);
        _;
    }


}

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


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


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

    mapping(address => uint256) balances;

    uint256 public totalSupply_;

    /**
     * @dev total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
     * @dev transfer token for a specified address
     * @param _to The address to transfer to.
     * @param _value The amount to be transferred.
     */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(msg.data.length>=(2*32)+4);
        require(_to != address(0));
        require(_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);
        emit Transfer (msg.sender, _to, _value);
        return true;
    }

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

}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) internal allowed;


    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

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

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        require(_value==0||allowed[msg.sender][_spender]==0);
        require(msg.data.length>=(2*32)+4);
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowed[_owner][_spender];
    }

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

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

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;


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

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

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() onlyOwner whenNotPaused public {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() onlyOwner whenPaused public {
        paused = false;
        emit Unpause();
    }
}


/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, Pausable {

    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }

    function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
        return super.approve(_spender, _value);
    }

    function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
        return super.increaseApproval(_spender, _addedValue);
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseApproval(_spender, _subtractedValue);
    }
}

/**
 * @title Lock token
 * @dev Lock  which is defined the lock logic
 **/
contract  Lock is PausableToken{

    mapping(address => uint256) public teamLockTime; // Lock start time
    mapping(address => uint256) public fundLockTime; // Lock start time
    uint256 public issueDate =0 ;//issueDate
    mapping(address => uint256) public teamLocked;// Total Team lock 
    mapping(address => uint256) public fundLocked;// Total fund lock
    mapping(address => uint256) public teamUsed;   // Team Used
    mapping(address => uint256) public fundUsed;   // Fund Used
    mapping(address => uint256) public teamReverse;   // Team reserve
    mapping(address => uint256) public fundReverse;   // Fund reserve
    

   /**
    * @dev Calculate the number of Tokens available for teamAccount
    * @param _to teamAccount's address
   */
    function teamAvailable(address _to) internal constant returns (uint256) {
        require(teamLockTime[_to]>0);
        //Cover the start time of the lock before the release is the issueDate
        if(teamLockTime[_to] != issueDate)
        {
            teamLockTime[_to]= issueDate;
        }
        uint256 now1 = block.timestamp;
        uint256 lockTime = teamLockTime[_to];
        uint256 time = now1.sub(lockTime);
        uint256 percent = 0;
        if(time >= 30 days) {
          percent =  (time.div(30 days)) .add(1);
        }
        percent = percent > 12 ? 12 : percent;
        uint256 avail = teamLocked[_to];
        require(avail>0);
        avail = avail.mul(percent).div(12).sub(teamUsed[_to]);
        return avail ;
    }
    
    /**
     * @dev Get the number of Tokens available for the current account private placement
     * @param _to mainFundAccount's address
    **/
    function fundAvailable(address _to) internal constant returns (uint256) {
        require(fundLockTime[_to]>0);
        //Cover the start time of the lock before the release is the issueDate
        if(fundLockTime[_to] != issueDate)
        {
            fundLockTime[_to]= issueDate;
        }
        //The start time of the lock position
        uint256 lockTime = fundLockTime[_to];
        //The interval between the current time and the start time of the lockout
        uint256 time = block.timestamp.sub(lockTime);
        //Unlocked 25%
        uint256 percent = 250;
        //After more than 30 days, 75% of the minutes and 150 days of unlocking 5/1000 per day
        if(time >= 30 days) {
            percent = percent.add( (((time.sub(30 days)).div (1 days)).add (1)).mul (5));
        }
        percent = percent > 1000 ? 1000 : percent;
        uint256 avail = fundLocked[_to];
        require(avail>0);
        avail = avail.mul(percent).div(1000).sub(fundUsed[_to]);
        return avail ;
    }
    /**
      * @dev Team lock
      * @param _to  team lock account's address
      * @param _value the number of Token
     */
    function teamLock(address _to,uint256 _value) internal {
        require(_value>0);
        teamLocked[_to] = teamLocked[_to].add(_value);
        teamReverse[_to] = teamReverse[_to].add(_value);
        teamLockTime[_to] = block.timestamp;  // Lock start time
    }
    /**
      * @dev  Privately offered fund lock
      * @param _to  Privately offered fund account's address
      * @param _value the number of Token
     */
    function fundLock(address _to,uint256 _value) internal {
        require(_value>0);
        fundLocked[_to] =fundLocked[_to].add(_value);
        fundReverse[_to] = fundReverse[_to].add(_value);
        if(fundLockTime[_to] == 0)
          fundLockTime[_to] = block.timestamp;  // Lock start time
    }

    /**
     * @dev Team account transaction
     * @param _to  The accept token address
     * @param _value Number of transactions
     */
    function teamLockTransfer(address _to, uint256 _value) internal returns (bool) {
        //The remaining part
       uint256 availReverse = balances[msg.sender].sub((teamLocked[msg.sender].sub(teamUsed[msg.sender]))+(fundLocked[msg.sender].sub(fundUsed[msg.sender])));
       uint256 totalAvail=0;
       uint256 availTeam =0;
       if(issueDate==0)
        {
             totalAvail = availReverse;
        }
        else{
            //the number of Tokens available for teamAccount'Locked part
             availTeam = teamAvailable(msg.sender);
             //the number of Tokens available for teamAccount
             totalAvail = availTeam.add(availReverse);
        }
        require(_value <= totalAvail);
        bool ret = super.transfer(_to,_value);
        if(ret == true && issueDate>0) {
            //If over the teamAccount's released part
            if(_value > availTeam){
                teamUsed[msg.sender] = teamUsed[msg.sender].add(availTeam);
                 teamReverse[msg.sender] = teamReverse[msg.sender].sub(availTeam);
          }
            //If in the teamAccount's released part
            else{
                teamUsed[msg.sender] = teamUsed[msg.sender].add(_value);
                teamReverse[msg.sender] = teamReverse[msg.sender].sub(_value);
            }
        }
        if(teamUsed[msg.sender] >= teamLocked[msg.sender]){
            delete teamLockTime[msg.sender];
            delete teamReverse[msg.sender];
        }
        return ret;
    }

    /**
     * @dev Team account authorization transaction
     * @param _from The give token address
     * @param _to  The accept token address
     * @param _value Number of transactions
     */
    function teamLockTransferFrom(address _from,address _to, uint256 _value) internal returns (bool) {
       //The remaining part
       uint256 availReverse = balances[_from].sub((teamLocked[_from].sub(teamUsed[_from]))+(fundLocked[_from].sub(fundUsed[_from])));
       uint256 totalAvail=0;
       uint256 availTeam =0;
        if(issueDate==0)
        {
             totalAvail = availReverse;
        }
        else{
            //the number of Tokens available for teamAccount'Locked part
             availTeam = teamAvailable(_from);
              //the number of Tokens available for teamAccount
             totalAvail = availTeam.add(availReverse);
        }
       require(_value <= totalAvail);
        bool ret = super.transferFrom(_from,_to,_value);
        if(ret == true && issueDate>0) {
            //If over the teamAccount's released part
            if(_value > availTeam){
                teamUsed[_from] = teamUsed[_from].add(availTeam);
                teamReverse[_from] = teamReverse[_from].sub(availTeam);
           }
            //If in the teamAccount's released part
            else{
                teamUsed[_from] = teamUsed[_from].add(_value);
                teamReverse[_from] = teamReverse[_from].sub(_value);
            }
        }
        if(teamUsed[_from] >= teamLocked[_from]){
            delete teamLockTime[_from];
            delete teamReverse[_from];
        }
        return ret;
    }

    /**
     * @dev Privately Offered Fund Transfer Token
     * @param _to The accept token address
     * @param _value Number of transactions
     */
    function fundLockTransfer(address _to, uint256 _value) internal returns (bool) {
      //The remaining part
       uint256 availReverse = balances[msg.sender].sub((teamLocked[msg.sender].sub(teamUsed[msg.sender]))+(fundLocked[msg.sender].sub(fundUsed[msg.sender])));
       uint256 totalAvail=0;
       uint256 availFund = 0;
        if(issueDate==0)
        {
             totalAvail = availReverse;
        }
        else{
             require(now>issueDate);
            //the number of Tokens available for mainFundAccount'Locked part
             availFund = fundAvailable(msg.sender);
             //the number of Tokens available for mainFundAccount
             totalAvail = availFund.add(availReverse);
        }
        require(_value <= totalAvail);
        bool ret = super.transfer(_to,_value);
        if(ret == true && issueDate>0) {
            //If over the mainFundAccount's released part
            if(_value > availFund){
                fundUsed[msg.sender] = fundUsed[msg.sender].add(availFund);
                fundReverse[msg.sender] = fundReverse[msg.sender].sub(availFund);
             }
            //If in the mainFundAccount's released part
            else{
                fundUsed[msg.sender] =  fundUsed[msg.sender].add(_value);
                fundReverse[msg.sender] = fundReverse[msg.sender].sub(_value);
            }
        }
        if(fundUsed[msg.sender] >= fundLocked[msg.sender]){
            delete fundLockTime[msg.sender];
            delete fundReverse[msg.sender];
        }
        return ret;
    }


    /**
     * @dev Privately Offered Fund Transfer Token
     * @param _from The give token address
     * @param _to The accept token address
     * @param _value Number of transactions
     */
    function fundLockTransferFrom(address _from,address _to, uint256 _value) internal returns (bool) {
         //The remaining part
        uint256 availReverse =  balances[_from].sub((teamLocked[_from].sub(teamUsed[_from]))+(fundLocked[_from].sub(fundUsed[_from])));
        uint256 totalAvail=0;
        uint256 availFund = 0;
        if(issueDate==0)
         {
             totalAvail = availReverse;
        }
        else{
             require(now>issueDate);
             //the number of Tokens available for mainFundAccount'Locked part
             availFund = fundAvailable(_from);
              //the number of Tokens available for mainFundAccount
             totalAvail = availFund.add(availReverse);
         }
      
        require(_value <= totalAvail);
        bool ret = super.transferFrom(_from,_to,_value);
        if(ret == true && issueDate>0) {
           //If over the mainFundAccount's released part
            if(_value > availFund){
                fundUsed[_from] = fundUsed[_from].add(availFund);
                fundReverse[_from] = fundReverse[_from].sub(availFund);
            }
            //If in the mainFundAccount's released part
            else{
                fundUsed[_from] =  fundUsed[_from].add(_value);
                fundReverse[_from] = fundReverse[_from].sub(_value);
            }
        }
        if(fundUsed[_from] >= fundLocked[_from]){
            delete fundLockTime[_from];
        }
        return ret;
    }
}

/**
 * @title HitToken
 * @dev HitToken Contract
 **/
contract HitToken is Lock {
    string public name;
    string public symbol;
    uint8 public decimals;
    // Proportional accuracy
    uint256  public precentDecimal = 2;
    // mainFundPrecent
    uint256 public mainFundPrecent = 2650; 
    //subFundPrecent
    uint256 public subFundPrecent = 350; 
    //devTeamPrecent
    uint256 public devTeamPrecent = 1500;
    //hitFoundationPrecent
    uint256 public hitFoundationPrecent = 5500;
    //mainFundBalance
    uint256 public  mainFundBalance;
    //subFundBalance
    uint256 public subFundBalance;
    //devTeamBalance
    uint256 public  devTeamBalance;
    //hitFoundationBalance
    uint256 public hitFoundationBalance;
    //subFundAccount
    address public subFundAccount;
    //mainFundAccount
    address public mainFundAccount;
    

    /**
     *  @dev Contract constructor
     *  @param _name token's name
     *  @param _symbol token's symbol
     *  @param _decimals token's decimals
     *  @param _initialSupply token's initialSupply
     *  @param _teamAccount  teamAccount
     *  @param _subFundAccount subFundAccount
     *  @param _mainFundAccount mainFundAccount
     *  @param _hitFoundationAccount hitFoundationAccount
    */
    function HitToken(string _name, string _symbol, uint8 _decimals, uint256 _initialSupply,address _teamAccount,address _subFundAccount,address _mainFundAccount,address _hitFoundationAccount) public {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        //Define a subFundAccount
        subFundAccount = _subFundAccount;
        //Define a mainFundAccount
        mainFundAccount = _mainFundAccount;
        //Calculated according to accuracy, if the precision is 18, it is _initialSupply x 10 to the power of 18
        totalSupply_ = _initialSupply * 10 ** uint256(_decimals);
        //Calculate the total value of mainFund
        mainFundBalance =  totalSupply_.mul(mainFundPrecent).div(100* 10 ** precentDecimal) ;
        //Calculate the total value of subFund
        subFundBalance =  totalSupply_.mul(subFundPrecent).div(100* 10 ** precentDecimal);
        //Calculate the total value of devTeamBalance
        devTeamBalance =  totalSupply_.mul(devTeamPrecent).div(100* 10 ** precentDecimal);
        //Calculate the total value of  hitFoundationBalance
        hitFoundationBalance = totalSupply_.mul(hitFoundationPrecent).div(100* 10 ** precentDecimal) ;
        //Initially put the hitFoundationBalance into the hitFoundationAccount
        balances[_hitFoundationAccount] = hitFoundationBalance; 
        //Initially put the devTeamBalance into the teamAccount
        balances[_teamAccount] = devTeamBalance;
        //Initially put the subFundBalance into the subFundAccount
        balances[_subFundAccount] = subFundBalance;
         //Initially put the mainFundBalance into the mainFundAccount
        balances[_mainFundAccount]=mainFundBalance;
        //Initially lock the team account
        teamLock(_teamAccount,devTeamBalance);
        
    }

    /**
      * @dev destroy the msg sender's token onlyOwner
      * @param _value the number of the destroy token
     */
    function burn(uint256 _value) public onlyOwner returns (bool) {
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[address(0)] = balances[address(0)].add(_value);
        emit Transfer(msg.sender, address(0), _value);
        return true;
    }

    /**
     * @dev Transfer token
     * @param _to the accept token address
     * @param _value the number of transfer token
     */
    function transfer(address _to, uint256 _value) public returns (bool) {
        if(issueDate==0)
        {
             //the mainFundAccounts is not allowed to transfer before issued
            require(msg.sender != mainFundAccount);
        }

        if(teamLockTime[msg.sender] > 0){
             return super.teamLockTransfer(_to,_value);
            }else if(fundLockTime[msg.sender] > 0){
                return super.fundLockTransfer(_to,_value);
            }else {
               return super.transfer(_to, _value);
            
        }
    }

    /**
     * @dev Transfer token
     * @param _from the give token address
     * @param _to the accept token address
     * @param _value the number of transfer token
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
          if(issueDate==0)
        {
              //the mainFundAccounts is not allowed to transfer before issued
            require(_from != mainFundAccount);
        }
      
        if(teamLockTime[_from] > 0){
            return super.teamLockTransferFrom(_from,_to,_value);
        }else if(fundLockTime[_from] > 0 ){  
            return super.fundLockTransferFrom(_from,_to,_value);
        }else{
            return super.transferFrom(_from, _to, _value);
        }
    }

    /**
     *  @dev Privately offered Fund 
     *  @param _to the accept token address
     *  @param _value the number of transfer token
     */
    function mintFund(address _to, uint256 _value) public  returns (bool){
        require(msg.sender==mainFundAccount);
        require(mainFundBalance >0);
        require(_value >0);
        if(_value <= mainFundBalance){
            super.transfer(_to,_value);
            fundLock(_to,_value);
            mainFundBalance = mainFundBalance.sub(_value);
        }
    }

     /**
      * @dev Issue the token 
     */
     function issue() public onlyOwner  returns (uint){
         //Only one time 
         require(issueDate==0);
         issueDate = now;
         return now;
     }
     
     /**avoid mis-transfer*/
     function() public payable{
         revert();
     }
     
   
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"precentDecimal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"teamLocked","outputs":[{"name":"","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":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"devTeamPrecent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devTeamBalance","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":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":"","type":"address"}],"name":"fundReverse","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"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":"","type":"address"}],"name":"fundUsed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mainFundAccount","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hitFoundationPrecent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"fundLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hitFoundationBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"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":true,"inputs":[],"name":"mainFundBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"subFundPrecent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"subFundAccount","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"issueDate","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":"subFundBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"teamUsed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"issue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"fundLocked","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"mintFund","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mainFundPrecent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"teamLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"teamReverse","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_initialSupply","type":"uint256"},{"name":"_teamAccount","type":"address"},{"name":"_subFundAccount","type":"address"},{"name":"_mainFundAccount","type":"address"},{"name":"_hitFoundationAccount","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526003805460a060020a60ff021916905560006006556002601055610a5a60115561015e6012556105dc60135561157c6014553480156200004357600080fd5b5060405162002271380380620022718339810160409081528151602080840151928401516060850151608086015160a087015160c088015160e089015160038054600160a060020a03191633179055968901805190999890980197949693959294919390929091620000bc91600d91908b01906200038f565b508651620000d290600e9060208a01906200038f565b50600f805460ff191660ff881690811790915560198054600160a060020a0319908116600160a060020a0387811691909117909255601a8054909116918516919091179055600a90810a8602600181905560105460115462000164939190910a606402916200014f916401000000006200027f810262001dd61704565b9064010000000062001dbf620002b982021704565b6015819055506200019e601054600a0a6064026200014f6012546001546200027f6401000000000262001dd6179091906401000000009004565b601681905550620001d8601054600a0a6064026200014f6013546001546200027f6401000000000262001dd6179091906401000000009004565b60178190555062000212601054600a0a6064026200014f6014546001546200027f6401000000000262001dd6179091906401000000009004565b6018819055600160a060020a0380831660009081526020819052604080822093909355601780548884168352848320556016548784168352848320556015549286168252929020555462000271908590640100000000620002d1810204565b505050505050505062000434565b600080831515620002945760009150620002b2565b50828202828482811515620002a557fe5b0414620002ae57fe5b8091505b5092915050565b6000808284811515620002c857fe5b04949350505050565b60008111620002df57600080fd5b600160a060020a038216600090815260076020526040902054620003129082640100000000620012736200037f82021704565b600160a060020a038316600090815260076020908152604080832093909355600b90522054620003519082640100000000620012736200037f82021704565b600160a060020a039092166000908152600b6020908152604080832094909455600490529190912042905550565b600082820183811015620002ae57fe5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003d257805160ff191683800117855562000402565b8280016001018555821562000402579182015b8281111562000402578251825591602001919060010190620003e5565b506200041092915062000414565b5090565b6200043191905b808211156200041057600081556001016200041b565b90565b611e2d80620004446000396000f3006080604052600436106101e25763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302e3214481146101e7578063034eccd91461020e57806306fdde031461022f578063095ea7b3146102b957806314d20606146102f157806314fddb711461030657806318160ddd1461031b57806323b872dd14610330578063276854e81461035a578063313ce5671461037b578063324536eb146103a657806332d58673146103bb5780633eb78420146103dc5780633f4ba83a1461040d578063417180661461042457806342966c681461043957806345d27f13146104515780635c975abb1461047257806363c281a114610487578063661884631461049c57806370a08231146104c05780637179d079146104e15780637ac8dc26146104f65780638456cb591461050b578063877af5b4146105205780638d1343e0146105355780638da5cb5b1461054a57806395d89b411461055f57806396d002a014610574578063a9059cbb14610589578063c3be3ad9146105ad578063d383f646146105ce578063d6589b5e146105e3578063d73dd62314610604578063dd62ed3e14610628578063e25d4dac1461064f578063ececa52914610673578063f9c58b5714610688578063fed0781d146106a9575b600080fd5b3480156101f357600080fd5b506101fc6106ca565b60408051918252519081900360200190f35b34801561021a57600080fd5b506101fc600160a060020a03600435166106d0565b34801561023b57600080fd5b506102446106e2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027e578181015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c557600080fd5b506102dd600160a060020a0360043516602435610770565b604080519115158252519081900360200190f35b3480156102fd57600080fd5b506101fc61079d565b34801561031257600080fd5b506101fc6107a3565b34801561032757600080fd5b506101fc6107a9565b34801561033c57600080fd5b506102dd600160a060020a03600435811690602435166044356107af565b34801561036657600080fd5b506101fc600160a060020a0360043516610844565b34801561038757600080fd5b50610390610856565b6040805160ff9092168252519081900360200190f35b3480156103b257600080fd5b506101fc61085f565b3480156103c757600080fd5b506101fc600160a060020a0360043516610865565b3480156103e857600080fd5b506103f1610877565b60408051600160a060020a039092168252519081900360200190f35b34801561041957600080fd5b50610422610886565b005b34801561043057600080fd5b506101fc6108fe565b34801561044557600080fd5b506102dd600435610904565b34801561045d57600080fd5b506101fc600160a060020a03600435166109f3565b34801561047e57600080fd5b506102dd610a05565b34801561049357600080fd5b506101fc610a15565b3480156104a857600080fd5b506102dd600160a060020a0360043516602435610a1b565b3480156104cc57600080fd5b506101fc600160a060020a0360043516610a3f565b3480156104ed57600080fd5b506101fc610a5a565b34801561050257600080fd5b506101fc610a60565b34801561051757600080fd5b50610422610a66565b34801561052c57600080fd5b506103f1610ae3565b34801561054157600080fd5b506101fc610af2565b34801561055657600080fd5b506103f1610af8565b34801561056b57600080fd5b50610244610b07565b34801561058057600080fd5b506101fc610b62565b34801561059557600080fd5b506102dd600160a060020a0360043516602435610b68565b3480156105b957600080fd5b506101fc600160a060020a0360043516610bde565b3480156105da57600080fd5b506101fc610bf0565b3480156105ef57600080fd5b506101fc600160a060020a0360043516610c21565b34801561061057600080fd5b506102dd600160a060020a0360043516602435610c33565b34801561063457600080fd5b506101fc600160a060020a0360043581169060243516610c57565b34801561065b57600080fd5b506102dd600160a060020a0360043516602435610c82565b34801561067f57600080fd5b506101fc610cf2565b34801561069457600080fd5b506101fc600160a060020a0360043516610cf8565b3480156106b557600080fd5b506101fc600160a060020a0360043516610d0a565b60105481565b60076020526000908152604090205481565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b505050505081565b60035460009060a060020a900460ff161561078a57600080fd5b6107948383610d1c565b90505b92915050565b60135481565b60175481565b60015490565b6000600654600014156107d757601a54600160a060020a03858116911614156107d757600080fd5b600160a060020a038416600090815260046020526040812054111561080857610801848484610dcc565b905061083d565b600160a060020a03841660009081526005602052604081205411156108325761080184848461102c565b610801848484611234565b9392505050565b600c6020526000908152604090205481565b600f5460ff1681565b60015481565b600a6020526000908152604090205481565b601a54600160a060020a031681565b600354600160a060020a0316331461089d57600080fd5b60035460a060020a900460ff1615156108b557600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60145481565b600354600090600160a060020a0316331461091e57600080fd5b3360009081526020819052604090205461093e908363ffffffff61126116565b3360009081526020819052604081209190915580527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554610985908363ffffffff61127316565b600080805260208181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb592909255604080518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001919050565b60056020526000908152604090205481565b60035460a060020a900460ff1681565b60185481565b60035460009060a060020a900460ff1615610a3557600080fd5b610794838361128d565b600160a060020a031660009081526020819052604090205490565b60155481565b60125481565b600354600160a060020a03163314610a7d57600080fd5b60035460a060020a900460ff1615610a9457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b601954600160a060020a031681565b60065481565b600354600160a060020a031681565b600e805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107685780601f1061073d57610100808354040283529160200191610768565b60165481565b600060065460001415610b8d57601a54600160a060020a0316331415610b8d57600080fd5b336000908152600460205260408120541115610bb457610bad838361137d565b9050610797565b336000908152600560205260408120541115610bd457610bad8383611578565b610bad8383611738565b60096020526000908152604090205481565b600354600090600160a060020a03163314610c0a57600080fd5b60065415610c1757600080fd5b5042600681905590565b60086020526000908152604090205481565b60035460009060a060020a900460ff1615610c4d57600080fd5b610794838361175c565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b601a54600090600160a060020a03163314610c9c57600080fd5b601554600010610cab57600080fd5b60008211610cb857600080fd5b601554821161079757610ccb8383611738565b50610cd683836117f5565b601554610ce9908363ffffffff61126116565b60155592915050565b60115481565b60046020526000908152604090205481565b600b6020526000908152604090205481565b6000811580610d4c5750336000908152600260209081526040808320600160a060020a0387168452909152902054155b1515610d5757600080fd5b6044361015610d6557600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a0383166000908152600a602090815260408083205460089092528220548291829182918291610e6691610e0c919063ffffffff61126116565b600160a060020a038a16600090815260096020908152604080832054600790925290912054610e409163ffffffff61126116565b600160a060020a038b16600090815260208190526040902054910163ffffffff61126116565b9350600092506000915060065460001415610e8357839250610ea1565b610e8c886118ab565b9150610e9e828563ffffffff61127316565b92505b82861115610eae57600080fd5b610eb9888888611234565b90506001811515148015610ecf57506000600654115b15610fd05781861115610f5857600160a060020a038816600090815260096020526040902054610f05908363ffffffff61127316565b600160a060020a038916600090815260096020908152604080832093909355600b90522054610f3a908363ffffffff61126116565b600160a060020a0389166000908152600b6020526040902055610fd0565b600160a060020a038816600090815260096020526040902054610f81908763ffffffff61127316565b600160a060020a038916600090815260096020908152604080832093909355600b90522054610fb6908763ffffffff61126116565b600160a060020a0389166000908152600b60205260409020555b600160a060020a0388166000908152600760209081526040808320546009909252909120541061102157600160a060020a0388166000908152600460209081526040808320839055600b9091528120555b979650505050505050565b600160a060020a0383166000908152600a60209081526040808320546008909252822054829182918291829161106c91610e0c919063ffffffff61126116565b9350600092506000915060065460001415611089578392506110b5565b600654421161109757600080fd5b6110a088611a01565b91506110b2828563ffffffff61127316565b92505b828611156110c257600080fd5b6110cd888888611234565b905060018115151480156110e357506000600654115b156111e4578186111561116c57600160a060020a0388166000908152600a6020526040902054611119908363ffffffff61127316565b600160a060020a0389166000908152600a6020908152604080832093909355600c9052205461114e908363ffffffff61126116565b600160a060020a0389166000908152600c60205260409020556111e4565b600160a060020a0388166000908152600a6020526040902054611195908763ffffffff61127316565b600160a060020a0389166000908152600a6020908152604080832093909355600c905220546111ca908763ffffffff61126116565b600160a060020a0389166000908152600c60205260409020555b600160a060020a038816600090815260086020908152604080832054600a909252909120541061102157600160a060020a0397909716600090815260056020526040812055509495945050505050565b60035460009060a060020a900460ff161561124e57600080fd5b611259848484611b59565b949350505050565b60008282111561126d57fe5b50900390565b60008282018381101561128257fe5b8091505b5092915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156112e257336000908152600260209081526040808320600160a060020a0388168452909152812055611317565b6112f2818463ffffffff61126116565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b336000908152600a6020908152604080832054600890925282205482918291829182916113fc916113b4919063ffffffff61126116565b336000908152600960209081526040808320546007909252909120546113df9163ffffffff61126116565b33600090815260208190526040902054910163ffffffff61126116565b935060009250600091506006546000141561141957839250611437565b611422336118ab565b9150611434828563ffffffff61127316565b92505b8286111561144457600080fd5b61144e8787611738565b9050600181151514801561146457506000600654115b1561152f57818611156114d25733600090815260096020526040902054611491908363ffffffff61127316565b33600090815260096020908152604080832093909355600b905220546114bd908363ffffffff61126116565b336000908152600b602052604090205561152f565b336000908152600960205260409020546114f2908763ffffffff61127316565b33600090815260096020908152604080832093909355600b9052205461151e908763ffffffff61126116565b336000908152600b60205260409020555b336000908152600760209081526040808320546009909252909120541061156e57336000908152600460209081526040808320839055600b9091528120555b9695505050505050565b336000908152600a6020908152604080832054600890925282205482918291829182916115af916113b4919063ffffffff61126116565b93506000925060009150600654600014156115cc578392506115f8565b60065442116115da57600080fd5b6115e333611a01565b91506115f5828563ffffffff61127316565b92505b8286111561160557600080fd5b61160f8787611738565b9050600181151514801561162557506000600654115b156116f0578186111561169357336000908152600a6020526040902054611652908363ffffffff61127316565b336000908152600a6020908152604080832093909355600c9052205461167e908363ffffffff61126116565b336000908152600c60205260409020556116f0565b336000908152600a60205260409020546116b3908763ffffffff61127316565b336000908152600a6020908152604080832093909355600c905220546116df908763ffffffff61126116565b336000908152600c60205260409020555b33600090815260086020908152604080832054600a909252909120541061156e57336000908152600560209081526040808320839055600c9091528120559695505050505050565b60035460009060a060020a900460ff161561175257600080fd5b6107948383611cd0565b336000908152600260209081526040808320600160a060020a0386168452909152812054611790908363ffffffff61127316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000811161180257600080fd5b600160a060020a03821660009081526008602052604090205461182b908263ffffffff61127316565b600160a060020a038316600090815260086020908152604080832093909355600c90522054611860908263ffffffff61127316565b600160a060020a0383166000908152600c602090815260408083209390935560059052205415156118a757600160a060020a03821660009081526005602052604090204290555b5050565b600160a060020a0381166000908152600460205260408120548190819081908190819081106118d957600080fd5b600654600160a060020a0388166000908152600460205260409020541461191757600654600160a060020a0388166000908152600460205260409020555b600160a060020a0387166000908152600460205260409020544295509350611945858563ffffffff61126116565b92506000915062278d00831061197c57611979600161196d8562278d0063ffffffff611dbf16565b9063ffffffff61127316565b91505b600c821161198a578161198d565b600c5b600160a060020a03881660009081526007602052604081205491935090915081116119b757600080fd5b600160a060020a038716600090815260096020526040902054611021906119f5600c6119e9858763ffffffff611dd616565b9063ffffffff611dbf16565b9063ffffffff61126116565b600160a060020a03811660009081526005602052604081205481908190819081908110611a2d57600080fd5b600654600160a060020a03871660009081526005602052604090205414611a6b57600654600160a060020a0387166000908152600560205260409020555b600160a060020a0386166000908152600560205260409020549350611a96428563ffffffff61126116565b925060fa915062278d008310611ae957611ae6611ad96005611acd600161196d620151806119e98a62278d0063ffffffff61126116565b9063ffffffff611dd616565b839063ffffffff61127316565b91505b6103e88211611af85781611afc565b6103e85b600160a060020a0387166000908152600860205260408120549193509091508111611b2657600080fd5b600160a060020a0386166000908152600a602052604090205461156e906119f56103e86119e9858763ffffffff611dd616565b6000600160a060020a0383161515611b7057600080fd5b600160a060020a038416600090815260208190526040902054821115611b9557600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115611bc557600080fd5b600160a060020a038416600090815260208190526040902054611bee908363ffffffff61126116565b600160a060020a038086166000908152602081905260408082209390935590851681522054611c23908363ffffffff61127316565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611c65908363ffffffff61126116565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60006044361015611ce057600080fd5b600160a060020a0383161515611cf557600080fd5b33600090815260208190526040902054821115611d1157600080fd5b33600090815260208190526040902054611d31908363ffffffff61126116565b3360009081526020819052604080822092909255600160a060020a03851681522054611d63908363ffffffff61127316565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000808284811515611dcd57fe5b04949350505050565b600080831515611de95760009150611286565b50828202828482811515611df957fe5b041461128257fe00a165627a7a7230582026be738844de16279d41319266b3383044b4d3ec104be645fbb3abbe40c1d551002900000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000017d78400000000000000000000000000004f9796c1703d06c94879e8fdce7f2e9d8efc5ca5000000000000000000000000cbb34db76dcbcc86c533ddf73ea9c64df7c1a2e60000000000000000000000005bd2ccc18f4687482468a0038ccd6512acbdbeca000000000000000000000000e1a18721289857dca6ca9308704be4f6fc0d462a000000000000000000000000000000000000000000000000000000000000000d486974436861696e546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034849540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e25763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302e3214481146101e7578063034eccd91461020e57806306fdde031461022f578063095ea7b3146102b957806314d20606146102f157806314fddb711461030657806318160ddd1461031b57806323b872dd14610330578063276854e81461035a578063313ce5671461037b578063324536eb146103a657806332d58673146103bb5780633eb78420146103dc5780633f4ba83a1461040d578063417180661461042457806342966c681461043957806345d27f13146104515780635c975abb1461047257806363c281a114610487578063661884631461049c57806370a08231146104c05780637179d079146104e15780637ac8dc26146104f65780638456cb591461050b578063877af5b4146105205780638d1343e0146105355780638da5cb5b1461054a57806395d89b411461055f57806396d002a014610574578063a9059cbb14610589578063c3be3ad9146105ad578063d383f646146105ce578063d6589b5e146105e3578063d73dd62314610604578063dd62ed3e14610628578063e25d4dac1461064f578063ececa52914610673578063f9c58b5714610688578063fed0781d146106a9575b600080fd5b3480156101f357600080fd5b506101fc6106ca565b60408051918252519081900360200190f35b34801561021a57600080fd5b506101fc600160a060020a03600435166106d0565b34801561023b57600080fd5b506102446106e2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027e578181015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c557600080fd5b506102dd600160a060020a0360043516602435610770565b604080519115158252519081900360200190f35b3480156102fd57600080fd5b506101fc61079d565b34801561031257600080fd5b506101fc6107a3565b34801561032757600080fd5b506101fc6107a9565b34801561033c57600080fd5b506102dd600160a060020a03600435811690602435166044356107af565b34801561036657600080fd5b506101fc600160a060020a0360043516610844565b34801561038757600080fd5b50610390610856565b6040805160ff9092168252519081900360200190f35b3480156103b257600080fd5b506101fc61085f565b3480156103c757600080fd5b506101fc600160a060020a0360043516610865565b3480156103e857600080fd5b506103f1610877565b60408051600160a060020a039092168252519081900360200190f35b34801561041957600080fd5b50610422610886565b005b34801561043057600080fd5b506101fc6108fe565b34801561044557600080fd5b506102dd600435610904565b34801561045d57600080fd5b506101fc600160a060020a03600435166109f3565b34801561047e57600080fd5b506102dd610a05565b34801561049357600080fd5b506101fc610a15565b3480156104a857600080fd5b506102dd600160a060020a0360043516602435610a1b565b3480156104cc57600080fd5b506101fc600160a060020a0360043516610a3f565b3480156104ed57600080fd5b506101fc610a5a565b34801561050257600080fd5b506101fc610a60565b34801561051757600080fd5b50610422610a66565b34801561052c57600080fd5b506103f1610ae3565b34801561054157600080fd5b506101fc610af2565b34801561055657600080fd5b506103f1610af8565b34801561056b57600080fd5b50610244610b07565b34801561058057600080fd5b506101fc610b62565b34801561059557600080fd5b506102dd600160a060020a0360043516602435610b68565b3480156105b957600080fd5b506101fc600160a060020a0360043516610bde565b3480156105da57600080fd5b506101fc610bf0565b3480156105ef57600080fd5b506101fc600160a060020a0360043516610c21565b34801561061057600080fd5b506102dd600160a060020a0360043516602435610c33565b34801561063457600080fd5b506101fc600160a060020a0360043581169060243516610c57565b34801561065b57600080fd5b506102dd600160a060020a0360043516602435610c82565b34801561067f57600080fd5b506101fc610cf2565b34801561069457600080fd5b506101fc600160a060020a0360043516610cf8565b3480156106b557600080fd5b506101fc600160a060020a0360043516610d0a565b60105481565b60076020526000908152604090205481565b600d805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b505050505081565b60035460009060a060020a900460ff161561078a57600080fd5b6107948383610d1c565b90505b92915050565b60135481565b60175481565b60015490565b6000600654600014156107d757601a54600160a060020a03858116911614156107d757600080fd5b600160a060020a038416600090815260046020526040812054111561080857610801848484610dcc565b905061083d565b600160a060020a03841660009081526005602052604081205411156108325761080184848461102c565b610801848484611234565b9392505050565b600c6020526000908152604090205481565b600f5460ff1681565b60015481565b600a6020526000908152604090205481565b601a54600160a060020a031681565b600354600160a060020a0316331461089d57600080fd5b60035460a060020a900460ff1615156108b557600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60145481565b600354600090600160a060020a0316331461091e57600080fd5b3360009081526020819052604090205461093e908363ffffffff61126116565b3360009081526020819052604081209190915580527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554610985908363ffffffff61127316565b600080805260208181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb592909255604080518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001919050565b60056020526000908152604090205481565b60035460a060020a900460ff1681565b60185481565b60035460009060a060020a900460ff1615610a3557600080fd5b610794838361128d565b600160a060020a031660009081526020819052604090205490565b60155481565b60125481565b600354600160a060020a03163314610a7d57600080fd5b60035460a060020a900460ff1615610a9457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b601954600160a060020a031681565b60065481565b600354600160a060020a031681565b600e805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107685780601f1061073d57610100808354040283529160200191610768565b60165481565b600060065460001415610b8d57601a54600160a060020a0316331415610b8d57600080fd5b336000908152600460205260408120541115610bb457610bad838361137d565b9050610797565b336000908152600560205260408120541115610bd457610bad8383611578565b610bad8383611738565b60096020526000908152604090205481565b600354600090600160a060020a03163314610c0a57600080fd5b60065415610c1757600080fd5b5042600681905590565b60086020526000908152604090205481565b60035460009060a060020a900460ff1615610c4d57600080fd5b610794838361175c565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b601a54600090600160a060020a03163314610c9c57600080fd5b601554600010610cab57600080fd5b60008211610cb857600080fd5b601554821161079757610ccb8383611738565b50610cd683836117f5565b601554610ce9908363ffffffff61126116565b60155592915050565b60115481565b60046020526000908152604090205481565b600b6020526000908152604090205481565b6000811580610d4c5750336000908152600260209081526040808320600160a060020a0387168452909152902054155b1515610d5757600080fd5b6044361015610d6557600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a0383166000908152600a602090815260408083205460089092528220548291829182918291610e6691610e0c919063ffffffff61126116565b600160a060020a038a16600090815260096020908152604080832054600790925290912054610e409163ffffffff61126116565b600160a060020a038b16600090815260208190526040902054910163ffffffff61126116565b9350600092506000915060065460001415610e8357839250610ea1565b610e8c886118ab565b9150610e9e828563ffffffff61127316565b92505b82861115610eae57600080fd5b610eb9888888611234565b90506001811515148015610ecf57506000600654115b15610fd05781861115610f5857600160a060020a038816600090815260096020526040902054610f05908363ffffffff61127316565b600160a060020a038916600090815260096020908152604080832093909355600b90522054610f3a908363ffffffff61126116565b600160a060020a0389166000908152600b6020526040902055610fd0565b600160a060020a038816600090815260096020526040902054610f81908763ffffffff61127316565b600160a060020a038916600090815260096020908152604080832093909355600b90522054610fb6908763ffffffff61126116565b600160a060020a0389166000908152600b60205260409020555b600160a060020a0388166000908152600760209081526040808320546009909252909120541061102157600160a060020a0388166000908152600460209081526040808320839055600b9091528120555b979650505050505050565b600160a060020a0383166000908152600a60209081526040808320546008909252822054829182918291829161106c91610e0c919063ffffffff61126116565b9350600092506000915060065460001415611089578392506110b5565b600654421161109757600080fd5b6110a088611a01565b91506110b2828563ffffffff61127316565b92505b828611156110c257600080fd5b6110cd888888611234565b905060018115151480156110e357506000600654115b156111e4578186111561116c57600160a060020a0388166000908152600a6020526040902054611119908363ffffffff61127316565b600160a060020a0389166000908152600a6020908152604080832093909355600c9052205461114e908363ffffffff61126116565b600160a060020a0389166000908152600c60205260409020556111e4565b600160a060020a0388166000908152600a6020526040902054611195908763ffffffff61127316565b600160a060020a0389166000908152600a6020908152604080832093909355600c905220546111ca908763ffffffff61126116565b600160a060020a0389166000908152600c60205260409020555b600160a060020a038816600090815260086020908152604080832054600a909252909120541061102157600160a060020a0397909716600090815260056020526040812055509495945050505050565b60035460009060a060020a900460ff161561124e57600080fd5b611259848484611b59565b949350505050565b60008282111561126d57fe5b50900390565b60008282018381101561128257fe5b8091505b5092915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156112e257336000908152600260209081526040808320600160a060020a0388168452909152812055611317565b6112f2818463ffffffff61126116565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b336000908152600a6020908152604080832054600890925282205482918291829182916113fc916113b4919063ffffffff61126116565b336000908152600960209081526040808320546007909252909120546113df9163ffffffff61126116565b33600090815260208190526040902054910163ffffffff61126116565b935060009250600091506006546000141561141957839250611437565b611422336118ab565b9150611434828563ffffffff61127316565b92505b8286111561144457600080fd5b61144e8787611738565b9050600181151514801561146457506000600654115b1561152f57818611156114d25733600090815260096020526040902054611491908363ffffffff61127316565b33600090815260096020908152604080832093909355600b905220546114bd908363ffffffff61126116565b336000908152600b602052604090205561152f565b336000908152600960205260409020546114f2908763ffffffff61127316565b33600090815260096020908152604080832093909355600b9052205461151e908763ffffffff61126116565b336000908152600b60205260409020555b336000908152600760209081526040808320546009909252909120541061156e57336000908152600460209081526040808320839055600b9091528120555b9695505050505050565b336000908152600a6020908152604080832054600890925282205482918291829182916115af916113b4919063ffffffff61126116565b93506000925060009150600654600014156115cc578392506115f8565b60065442116115da57600080fd5b6115e333611a01565b91506115f5828563ffffffff61127316565b92505b8286111561160557600080fd5b61160f8787611738565b9050600181151514801561162557506000600654115b156116f0578186111561169357336000908152600a6020526040902054611652908363ffffffff61127316565b336000908152600a6020908152604080832093909355600c9052205461167e908363ffffffff61126116565b336000908152600c60205260409020556116f0565b336000908152600a60205260409020546116b3908763ffffffff61127316565b336000908152600a6020908152604080832093909355600c905220546116df908763ffffffff61126116565b336000908152600c60205260409020555b33600090815260086020908152604080832054600a909252909120541061156e57336000908152600560209081526040808320839055600c9091528120559695505050505050565b60035460009060a060020a900460ff161561175257600080fd5b6107948383611cd0565b336000908152600260209081526040808320600160a060020a0386168452909152812054611790908363ffffffff61127316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000811161180257600080fd5b600160a060020a03821660009081526008602052604090205461182b908263ffffffff61127316565b600160a060020a038316600090815260086020908152604080832093909355600c90522054611860908263ffffffff61127316565b600160a060020a0383166000908152600c602090815260408083209390935560059052205415156118a757600160a060020a03821660009081526005602052604090204290555b5050565b600160a060020a0381166000908152600460205260408120548190819081908190819081106118d957600080fd5b600654600160a060020a0388166000908152600460205260409020541461191757600654600160a060020a0388166000908152600460205260409020555b600160a060020a0387166000908152600460205260409020544295509350611945858563ffffffff61126116565b92506000915062278d00831061197c57611979600161196d8562278d0063ffffffff611dbf16565b9063ffffffff61127316565b91505b600c821161198a578161198d565b600c5b600160a060020a03881660009081526007602052604081205491935090915081116119b757600080fd5b600160a060020a038716600090815260096020526040902054611021906119f5600c6119e9858763ffffffff611dd616565b9063ffffffff611dbf16565b9063ffffffff61126116565b600160a060020a03811660009081526005602052604081205481908190819081908110611a2d57600080fd5b600654600160a060020a03871660009081526005602052604090205414611a6b57600654600160a060020a0387166000908152600560205260409020555b600160a060020a0386166000908152600560205260409020549350611a96428563ffffffff61126116565b925060fa915062278d008310611ae957611ae6611ad96005611acd600161196d620151806119e98a62278d0063ffffffff61126116565b9063ffffffff611dd616565b839063ffffffff61127316565b91505b6103e88211611af85781611afc565b6103e85b600160a060020a0387166000908152600860205260408120549193509091508111611b2657600080fd5b600160a060020a0386166000908152600a602052604090205461156e906119f56103e86119e9858763ffffffff611dd616565b6000600160a060020a0383161515611b7057600080fd5b600160a060020a038416600090815260208190526040902054821115611b9557600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115611bc557600080fd5b600160a060020a038416600090815260208190526040902054611bee908363ffffffff61126116565b600160a060020a038086166000908152602081905260408082209390935590851681522054611c23908363ffffffff61127316565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611c65908363ffffffff61126116565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60006044361015611ce057600080fd5b600160a060020a0383161515611cf557600080fd5b33600090815260208190526040902054821115611d1157600080fd5b33600090815260208190526040902054611d31908363ffffffff61126116565b3360009081526020819052604080822092909255600160a060020a03851681522054611d63908363ffffffff61127316565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000808284811515611dcd57fe5b04949350505050565b600080831515611de95760009150611286565b50828202828482811515611df957fe5b041461128257fe00a165627a7a7230582026be738844de16279d41319266b3383044b4d3ec104be645fbb3abbe40c1d5510029

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

00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000017d78400000000000000000000000000004f9796c1703d06c94879e8fdce7f2e9d8efc5ca5000000000000000000000000cbb34db76dcbcc86c533ddf73ea9c64df7c1a2e60000000000000000000000005bd2ccc18f4687482468a0038ccd6512acbdbeca000000000000000000000000e1a18721289857dca6ca9308704be4f6fc0d462a000000000000000000000000000000000000000000000000000000000000000d486974436861696e546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034849540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): HitChainToken
Arg [1] : _symbol (string): HIT
Arg [2] : _decimals (uint8): 6
Arg [3] : _initialSupply (uint256): 102400000000
Arg [4] : _teamAccount (address): 0x4f9796c1703d06C94879E8fDcE7F2E9D8eFc5CA5
Arg [5] : _subFundAccount (address): 0xCBB34db76DcBcC86c533DDF73Ea9C64dF7C1a2E6
Arg [6] : _mainFundAccount (address): 0x5bd2cCc18f4687482468a0038cCD6512ACbDbeCa
Arg [7] : _hitFoundationAccount (address): 0xe1A18721289857Dca6CA9308704be4F6FC0D462a

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 00000000000000000000000000000000000000000000000000000017d7840000
Arg [4] : 0000000000000000000000004f9796c1703d06c94879e8fdce7f2e9d8efc5ca5
Arg [5] : 000000000000000000000000cbb34db76dcbcc86c533ddf73ea9c64df7c1a2e6
Arg [6] : 0000000000000000000000005bd2ccc18f4687482468a0038ccd6512acbdbeca
Arg [7] : 000000000000000000000000e1a18721289857dca6ca9308704be4f6fc0d462a
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [9] : 486974436861696e546f6b656e00000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4849540000000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://26be738844de16279d41319266b3383044b4d3ec104be645fbb3abbe40c1d551

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.