ETH Price: $2,971.29 (-1.19%)
Gas: 6 Gwei

Token

BIX Token (BIX)
 

Overview

Max Total Supply

23,148,569.671 BIX

Holders

9,885 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

BIX Token contract has migrated to 0x009c43b42aefac590c719e971020575974122803.

ICO Information

ICO Start Date : Oct 1, 2017   
Total Cap : 150,000 ETH
ICO Price  : $0.17 | 0.00055556 ETH
Country : USA

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BIXToken

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 200 runs

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

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant 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 constant 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;

  /**
  * @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(_to != address(0));

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev 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 constant 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)) 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));

    uint256 _allowance = allowed[_from][msg.sender];

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

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

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. 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) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_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
   */
  function increaseApproval (address _spender, uint _addedValue)
    returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue)
    returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}



/**
 * @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() {
    owner = msg.sender;
  }


  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) onlyOwner public {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

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

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

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


// This is just a contract of a BIX Token.
// It is a ERC20 token
contract BIXToken is StandardToken, Ownable{
    
    string public version = "1.0";
    string public name = "BIX Token";
    string public symbol = "BIX";
    uint8 public  decimals = 18;

    mapping(address=>uint256)  lockedBalance;
    mapping(address=>uint)     timeRelease; 
    
    uint256 internal constant INITIAL_SUPPLY = 500 * (10**6) * (10 **18);
    uint256 internal constant DEVELOPER_RESERVED = 175 * (10**6) * (10**18);

    //address public developer;
    //uint256 internal crowdsaleAvaible;


    event Burn(address indexed burner, uint256 value);
    event Lock(address indexed locker, uint256 value, uint releaseTime);
    event UnLock(address indexed unlocker, uint256 value);
    

    // constructor
    function BIXToken(address _developer) { 
        balances[_developer] = DEVELOPER_RESERVED;
        totalSupply = DEVELOPER_RESERVED;
    }

    //balance of locked
    function lockedOf(address _owner) public constant returns (uint256 balance) {
        return lockedBalance[_owner];
    }

    //release time of locked
    function unlockTimeOf(address _owner) public constant returns (uint timelimit) {
        return timeRelease[_owner];
    }


    // transfer to and lock it
    function transferAndLock(address _to, uint256 _value, uint _releaseTime) public returns (bool success) {
        require(_to != 0x0);
        require(_value <= balances[msg.sender]);
        require(_value > 0);
        require(_releaseTime > now && _releaseTime <= now + 60*60*24*365*5);

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
       
        //if preLock can release 
        uint preRelease = timeRelease[_to];
        if (preRelease <= now && preRelease != 0x0) {
            balances[_to] = balances[_to].add(lockedBalance[_to]);
            lockedBalance[_to] = 0;
        }

        lockedBalance[_to] = lockedBalance[_to].add(_value);
        timeRelease[_to] =  _releaseTime >= timeRelease[_to] ? _releaseTime : timeRelease[_to]; 
        Transfer(msg.sender, _to, _value);
        Lock(_to, _value, _releaseTime);
        return true;
    }


   /**
   * @notice Transfers tokens held by lock.
   */
   function unlock() public constant returns (bool success){
        uint256 amount = lockedBalance[msg.sender];
        require(amount > 0);
        require(now >= timeRelease[msg.sender]);

        balances[msg.sender] = balances[msg.sender].add(amount);
        lockedBalance[msg.sender] = 0;
        timeRelease[msg.sender] = 0;

        Transfer(0x0, msg.sender, amount);
        UnLock(msg.sender, amount);

        return true;

    }


    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public returns (bool success) {
        require(_value > 0);
        require(_value <= balances[msg.sender]);
    
        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        Burn(burner, _value);
        return true;
    }

    // 
    function isSoleout() public constant returns (bool) {
        return (totalSupply >= INITIAL_SUPPLY);
    }


    modifier canMint() {
        require(!isSoleout());
        _;
    } 
    
    /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
    function mintBIX(address _to, uint256 _amount, uint256 _lockAmount, uint _releaseTime) onlyOwner canMint public returns (bool) {
        totalSupply = totalSupply.add(_amount);
        balances[_to] = balances[_to].add(_amount);

        if (_lockAmount > 0) {
            totalSupply = totalSupply.add(_lockAmount);
            lockedBalance[_to] = lockedBalance[_to].add(_lockAmount);
            timeRelease[_to] =  _releaseTime >= timeRelease[_to] ? _releaseTime : timeRelease[_to];            
            Lock(_to, _lockAmount, _releaseTime);
        }

        Transfer(0x0, _to, _amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"isSoleout","outputs":[{"name":"","type":"bool"}],"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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"unlockTimeOf","outputs":[{"name":"timelimit","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"transferAndLock","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_owner","type":"address"}],"name":"lockedOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unlock","outputs":[{"name":"success","type":"bool"}],"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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_lockAmount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"mintBIX","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_developer","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"locker","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"releaseTime","type":"uint256"}],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"unlocker","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"UnLock","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"}]

606060405260408051908101604052600381527f312e300000000000000000000000000000000000000000000000000000000000602082015260049080516200004d92916020019062000162565b5060408051908101604052600981527f42495820546f6b656e0000000000000000000000000000000000000000000000602082015260059080516200009792916020019062000162565b5060408051908101604052600381527f424958000000000000000000000000000000000000000000000000000000000060208201526006908051620000e192916020019062000162565b506007805460ff191660121790553415620000fb57600080fd5b604051602080620015af833981016040528080519150505b5b60038054600160a060020a03191633600160a060020a03161790555b600160a060020a03811660009081526001602052604081206a90c1b1025e16710f0000009081905590555b506200020c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a557805160ff1916838001178555620001d5565b82800160010185558215620001d5579182015b82811115620001d5578251825591602001919060010190620001b8565b5b50620001e4929150620001e8565b5090565b6200020991905b80821115620001e45760008155600101620001ef565b5090565b90565b611393806200021c6000396000f3006060604052361561011a5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630142c9ae811461011f57806306fdde0314610146578063095ea7b3146101d157806318160ddd1461020757806323b872dd1461022c578063313ce5671461026857806342966c6814610291578063469a6947146102bb57806354fd4d50146102ec578063661884631461037757806370a08231146103ad57806384d5d944146103de5780638da5cb5b1461041757806395d89b4114610446578063a5f1e282146104d1578063a69df4b514610502578063a9059cbb14610529578063b1a0570d1461055f578063d73dd6231461059b578063dd62ed3e146105d1578063f2fde38b14610608575b600080fd5b341561012a57600080fd5b610132610629565b604051901515815260200160405180910390f35b341561015157600080fd5b610159610640565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101965780820151818401525b60200161017d565b50505050905090810190601f1680156101c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101dc57600080fd5b610132600160a060020a03600435166024356106de565b604051901515815260200160405180910390f35b341561021257600080fd5b61021a61074b565b60405190815260200160405180910390f35b341561023757600080fd5b610132600160a060020a0360043581169060243516604435610751565b604051901515815260200160405180910390f35b341561027357600080fd5b61027b61086b565b60405160ff909116815260200160405180910390f35b341561029c57600080fd5b610132600435610874565b604051901515815260200160405180910390f35b34156102c657600080fd5b61021a600160a060020a0360043516610945565b60405190815260200160405180910390f35b34156102f757600080fd5b610159610964565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101965780820151818401525b60200161017d565b50505050905090810190601f1680156101c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038257600080fd5b610132600160a060020a0360043516602435610a02565b604051901515815260200160405180910390f35b34156103b857600080fd5b61021a600160a060020a0360043516610afe565b60405190815260200160405180910390f35b34156103e957600080fd5b610132600160a060020a0360043516602435604435610b1d565b604051901515815260200160405180910390f35b341561042257600080fd5b61042a610d5a565b604051600160a060020a03909116815260200160405180910390f35b341561045157600080fd5b610159610d69565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101965780820151818401525b60200161017d565b50505050905090810190601f1680156101c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104dc57600080fd5b61021a600160a060020a0360043516610e07565b60405190815260200160405180910390f35b341561050d57600080fd5b610132610e26565b604051901515815260200160405180910390f35b341561053457600080fd5b610132600160a060020a0360043516602435610f35565b604051901515815260200160405180910390f35b341561056a57600080fd5b610132600160a060020a0360043516602435604435606435610ffa565b604051901515815260200160405180910390f35b34156105a657600080fd5b610132600160a060020a03600435166024356111ab565b604051901515815260200160405180910390f35b34156105dc57600080fd5b61021a600160a060020a0360043581169060243516611250565b60405190815260200160405180910390f35b341561061357600080fd5b610627600160a060020a036004351661127d565b005b6000546b019d971e4fe8401e740000009010155b90565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106d65780601f106106ab576101008083540402835291602001916106d6565b820191906000526020600020905b8154815290600101906020018083116106b957829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b600080600160a060020a038416151561076957600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546107af908463ffffffff61131616565b600160a060020a0380871660009081526001602052604080822093909355908616815220546107e4908463ffffffff61132d16565b600160a060020a03851660009081526001602052604090205561080d818463ffffffff61131616565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206113488339815191529086905190815260200160405180910390a3600191505b509392505050565b60075460ff1681565b60008080831161088357600080fd5b600160a060020a0333166000908152600160205260409020548311156108a857600080fd5b5033600160a060020a0381166000908152600160205260409020546108cd9084611316565b600160a060020a038216600090815260016020526040812091909155546108fa908463ffffffff61131616565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58460405190815260200160405180910390a2600191505b50919050565b600160a060020a0381166000908152600960205260409020545b919050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106d65780601f106106ab576101008083540402835291602001916106d6565b820191906000526020600020905b8154815290600101906020018083116106b957829003601f168201915b505050505081565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610a5f57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610a96565b610a6f818463ffffffff61131616565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b600080600160a060020a0385161515610b3557600080fd5b600160a060020a033316600090815260016020526040902054841115610b5a57600080fd5b60008411610b6757600080fd5b4283118015610b7c5750426309660180018311155b1515610b8757600080fd5b600160a060020a033316600090815260016020526040902054610bb0908563ffffffff61131616565b600160a060020a033381166000908152600160209081526040808320949094559188168152600990915220549050428111801590610bed57508015155b15610c4e57600160a060020a038516600090815260086020908152604080832054600190925290912054610c269163ffffffff61132d16565b600160a060020a03861660009081526001602090815260408083209390935560089052908120555b600160a060020a038516600090815260086020526040902054610c77908563ffffffff61132d16565b600160a060020a038616600090815260086020908152604080832093909355600990522054831015610cc157600160a060020a038516600090815260096020526040902054610cc3565b825b600160a060020a0380871660008181526009602052604090819020939093559133909116906000805160206113488339815191529087905190815260200160405180910390a384600160a060020a03167f49eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b858560405191825260208201526040908101905180910390a2600191505b509392505050565b600354600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106d65780601f106106ab576101008083540402835291602001916106d6565b820191906000526020600020905b8154815290600101906020018083116106b957829003601f168201915b505050505081565b600160a060020a0381166000908152600860205260409020545b919050565b600160a060020a033316600090815260086020526040812054818111610e4b57600080fd5b600160a060020a033316600090815260096020526040902054421015610e7057600080fd5b600160a060020a033316600090815260016020526040902054610e99908263ffffffff61132d16565b600160a060020a033316600081815260016020908152604080832094909455600881528382208290556009905282812081905590916000805160206113488339815191529084905190815260200160405180910390a333600160a060020a03167fb371d42b3715509a27f3109f6ac1ef6b7d7e7f8e9232b738ed17338be6cf95808260405190815260200160405180910390a2600191505b5090565b6000600160a060020a0383161515610f4c57600080fd5b600160a060020a033316600090815260016020526040902054610f75908363ffffffff61131616565b600160a060020a033381166000908152600160205260408082209390935590851681522054610faa908363ffffffff61132d16565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206113488339815191529085905190815260200160405180910390a35060015b92915050565b60035460009033600160a060020a0390811691161461101857600080fd5b611020610629565b1561102a57600080fd5b60005461103d908563ffffffff61132d16565b6000908155600160a060020a038616815260016020526040902054611068908563ffffffff61132d16565b600160a060020a0386166000908152600160205260408120919091558311156111705760005461109e908463ffffffff61132d16565b6000908155600160a060020a0386168152600860205260409020546110c9908463ffffffff61132d16565b600160a060020a03861660009081526008602090815260408083209390935560099052205482101561111357600160a060020a038516600090815260096020526040902054611115565b815b600160a060020a0386166000818152600960205260409081902092909255907f49eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b90859085905191825260208201526040908101905180910390a25b84600160a060020a031660006000805160206113488339815191528660405190815260200160405180910390a35060015b5b5b949350505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546111e3908363ffffffff61132d16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161461129857600080fd5b600160a060020a03811615156112ad57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561132257fe5b508082035b92915050565b60008282018381101561133c57fe5b8091505b50929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820c90a54d83233d5a58e9406350c392f83833118920b77a0e8846615c5184c8f8800290000000000000000000000009c29d5bf4c6025501b94fa3708f85f260b9c0bfe

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630142c9ae811461011f57806306fdde0314610146578063095ea7b3146101d157806318160ddd1461020757806323b872dd1461022c578063313ce5671461026857806342966c6814610291578063469a6947146102bb57806354fd4d50146102ec578063661884631461037757806370a08231146103ad57806384d5d944146103de5780638da5cb5b1461041757806395d89b4114610446578063a5f1e282146104d1578063a69df4b514610502578063a9059cbb14610529578063b1a0570d1461055f578063d73dd6231461059b578063dd62ed3e146105d1578063f2fde38b14610608575b600080fd5b341561012a57600080fd5b610132610629565b604051901515815260200160405180910390f35b341561015157600080fd5b610159610640565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101965780820151818401525b60200161017d565b50505050905090810190601f1680156101c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101dc57600080fd5b610132600160a060020a03600435166024356106de565b604051901515815260200160405180910390f35b341561021257600080fd5b61021a61074b565b60405190815260200160405180910390f35b341561023757600080fd5b610132600160a060020a0360043581169060243516604435610751565b604051901515815260200160405180910390f35b341561027357600080fd5b61027b61086b565b60405160ff909116815260200160405180910390f35b341561029c57600080fd5b610132600435610874565b604051901515815260200160405180910390f35b34156102c657600080fd5b61021a600160a060020a0360043516610945565b60405190815260200160405180910390f35b34156102f757600080fd5b610159610964565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101965780820151818401525b60200161017d565b50505050905090810190601f1680156101c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038257600080fd5b610132600160a060020a0360043516602435610a02565b604051901515815260200160405180910390f35b34156103b857600080fd5b61021a600160a060020a0360043516610afe565b60405190815260200160405180910390f35b34156103e957600080fd5b610132600160a060020a0360043516602435604435610b1d565b604051901515815260200160405180910390f35b341561042257600080fd5b61042a610d5a565b604051600160a060020a03909116815260200160405180910390f35b341561045157600080fd5b610159610d69565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101965780820151818401525b60200161017d565b50505050905090810190601f1680156101c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104dc57600080fd5b61021a600160a060020a0360043516610e07565b60405190815260200160405180910390f35b341561050d57600080fd5b610132610e26565b604051901515815260200160405180910390f35b341561053457600080fd5b610132600160a060020a0360043516602435610f35565b604051901515815260200160405180910390f35b341561056a57600080fd5b610132600160a060020a0360043516602435604435606435610ffa565b604051901515815260200160405180910390f35b34156105a657600080fd5b610132600160a060020a03600435166024356111ab565b604051901515815260200160405180910390f35b34156105dc57600080fd5b61021a600160a060020a0360043581169060243516611250565b60405190815260200160405180910390f35b341561061357600080fd5b610627600160a060020a036004351661127d565b005b6000546b019d971e4fe8401e740000009010155b90565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106d65780601f106106ab576101008083540402835291602001916106d6565b820191906000526020600020905b8154815290600101906020018083116106b957829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b600080600160a060020a038416151561076957600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546107af908463ffffffff61131616565b600160a060020a0380871660009081526001602052604080822093909355908616815220546107e4908463ffffffff61132d16565b600160a060020a03851660009081526001602052604090205561080d818463ffffffff61131616565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206113488339815191529086905190815260200160405180910390a3600191505b509392505050565b60075460ff1681565b60008080831161088357600080fd5b600160a060020a0333166000908152600160205260409020548311156108a857600080fd5b5033600160a060020a0381166000908152600160205260409020546108cd9084611316565b600160a060020a038216600090815260016020526040812091909155546108fa908463ffffffff61131616565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58460405190815260200160405180910390a2600191505b50919050565b600160a060020a0381166000908152600960205260409020545b919050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106d65780601f106106ab576101008083540402835291602001916106d6565b820191906000526020600020905b8154815290600101906020018083116106b957829003601f168201915b505050505081565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610a5f57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610a96565b610a6f818463ffffffff61131616565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b600080600160a060020a0385161515610b3557600080fd5b600160a060020a033316600090815260016020526040902054841115610b5a57600080fd5b60008411610b6757600080fd5b4283118015610b7c5750426309660180018311155b1515610b8757600080fd5b600160a060020a033316600090815260016020526040902054610bb0908563ffffffff61131616565b600160a060020a033381166000908152600160209081526040808320949094559188168152600990915220549050428111801590610bed57508015155b15610c4e57600160a060020a038516600090815260086020908152604080832054600190925290912054610c269163ffffffff61132d16565b600160a060020a03861660009081526001602090815260408083209390935560089052908120555b600160a060020a038516600090815260086020526040902054610c77908563ffffffff61132d16565b600160a060020a038616600090815260086020908152604080832093909355600990522054831015610cc157600160a060020a038516600090815260096020526040902054610cc3565b825b600160a060020a0380871660008181526009602052604090819020939093559133909116906000805160206113488339815191529087905190815260200160405180910390a384600160a060020a03167f49eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b858560405191825260208201526040908101905180910390a2600191505b509392505050565b600354600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106d65780601f106106ab576101008083540402835291602001916106d6565b820191906000526020600020905b8154815290600101906020018083116106b957829003601f168201915b505050505081565b600160a060020a0381166000908152600860205260409020545b919050565b600160a060020a033316600090815260086020526040812054818111610e4b57600080fd5b600160a060020a033316600090815260096020526040902054421015610e7057600080fd5b600160a060020a033316600090815260016020526040902054610e99908263ffffffff61132d16565b600160a060020a033316600081815260016020908152604080832094909455600881528382208290556009905282812081905590916000805160206113488339815191529084905190815260200160405180910390a333600160a060020a03167fb371d42b3715509a27f3109f6ac1ef6b7d7e7f8e9232b738ed17338be6cf95808260405190815260200160405180910390a2600191505b5090565b6000600160a060020a0383161515610f4c57600080fd5b600160a060020a033316600090815260016020526040902054610f75908363ffffffff61131616565b600160a060020a033381166000908152600160205260408082209390935590851681522054610faa908363ffffffff61132d16565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206113488339815191529085905190815260200160405180910390a35060015b92915050565b60035460009033600160a060020a0390811691161461101857600080fd5b611020610629565b1561102a57600080fd5b60005461103d908563ffffffff61132d16565b6000908155600160a060020a038616815260016020526040902054611068908563ffffffff61132d16565b600160a060020a0386166000908152600160205260408120919091558311156111705760005461109e908463ffffffff61132d16565b6000908155600160a060020a0386168152600860205260409020546110c9908463ffffffff61132d16565b600160a060020a03861660009081526008602090815260408083209390935560099052205482101561111357600160a060020a038516600090815260096020526040902054611115565b815b600160a060020a0386166000818152600960205260409081902092909255907f49eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b90859085905191825260208201526040908101905180910390a25b84600160a060020a031660006000805160206113488339815191528660405190815260200160405180910390a35060015b5b5b949350505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546111e3908363ffffffff61132d16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161461129857600080fd5b600160a060020a03811615156112ad57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561132257fe5b508082035b92915050565b60008282018381101561133c57fe5b8091505b50929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820c90a54d83233d5a58e9406350c392f83833118920b77a0e8846615c5184c8f880029

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

0000000000000000000000009c29d5bf4c6025501b94fa3708f85f260b9c0bfe

-----Decoded View---------------
Arg [0] : _developer (address): 0x9C29d5BF4C6025501B94FA3708f85F260B9C0bfe

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c29d5bf4c6025501b94fa3708f85f260b9c0bfe


Swarm Source

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