ETH Price: $3,787.09 (+22.39%)
Gas: 13 Gwei

Token

ValorToken (VALOR)
 

Overview

Max Total Supply

75,000,000 VALOR

Holders

3,208 (0.00%)

Market

Price

$0.17 @ 0.000045 ETH (+1.99%)

Onchain Market Cap

$12,713,250.00

Circulating Supply Market Cap

$8,630,100.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
3 VALOR

Value
$0.51 ( ~0.00013466808605331 Eth) [0.0000%]
0xa305fab8bda7e1638235b054889b3217441dd645
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

VALOR is the native cryptocurrency of the SMART VALOR exchange.

Market

Volume (24H):$68,972.00
Market Capitalization:$8,630,100.00
Circulating Supply:50,884,585.00 VALOR
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ValorToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-03-27
*/

pragma solidity 0.4.25;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * 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 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 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    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 _a / _b;
  }

  /**
  * @dev Subtracts 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 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}



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

  mapping(address => uint256) internal balances;

  uint256 internal 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(_value <= balances[msg.sender]);
    require(_to != address(0));

    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) {
    return balances[_owner];
  }

}









/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _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 Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * 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(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    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) {
    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,
    uint256 _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,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 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 Standard Burnable Token
 * @dev Adds burnFrom method to ERC20 implementations
 */
contract StandardBurnableToken is BurnableToken, StandardToken {

  /**
   * @dev Burns a specific amount of tokens from the target address and decrements allowance
   * @param _from address The address which you want to send tokens from
   * @param _value uint256 The amount of token to be burned
   */
  function burnFrom(address _from, uint256 _value) public {
    require(_value <= allowed[_from][msg.sender]);
    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    _burn(_from, _value);
  }
}

/**
 * @title ValorToken
 */
contract ValorToken is StandardBurnableToken {

    string public constant name    =   "ValorToken";
    string public constant symbol  =   "VALOR";
    uint8  public constant decimals =   18;

    // initial supply addresses
    address public employeePool;
    address public futureDevFund;
    address public companyWallet;

    // initial supply and distribution of tokens
    uint256 internal constant VALOR = 10 ** uint256(decimals);
    uint256 public constant INITIAL_SUPPLY = 1e8 * VALOR; //100000000 VALOR.

    // required distribution is:
    // employeePool : 19%
    // futureDevFund: 26%
    // companyWallet: 55%
    uint256 internal constant employeePoolSupply =  1.9e7 * VALOR; // 19 000 000 VALOR
    uint256 internal constant futureDevFundSupply = 2.6e7 * VALOR; // 26 000 000 VALOR
    uint256 internal constant companyWalletSupply = 5.5e7 * VALOR; // 55 000 000 VALOR

    /**
     * @dev Constructor that distributes at TGS the supply among three predefined wallets 
     * @param _employeePool the account of employees pool funds
     * @param _futureDevFund the account of future development fund
     * @param _companyWallet the account of company managed cold wallet
     */
    constructor(address _employeePool, address _futureDevFund, address _companyWallet) public {
        require(_employeePool  != address(0),  "0x0 address is not allowed");
        require(_futureDevFund != address(0),  "0x0 address is not allowed");
        require(_companyWallet != address(0),  "0x0 address is not allowed");

        employeePool  = _employeePool;
        futureDevFund = _futureDevFund;
        companyWallet = _companyWallet;

        assert(INITIAL_SUPPLY == employeePoolSupply + futureDevFundSupply + companyWalletSupply);

        totalSupply_ = INITIAL_SUPPLY;

        // EmployeePool
        balances[employeePool] += employeePoolSupply;
        emit Transfer(address(0), employeePool, employeePoolSupply);

        // FutureDevFund
        balances[futureDevFund] += futureDevFundSupply;
        emit Transfer(address(0), futureDevFund, futureDevFundSupply);

        //CompanyWallet
        balances[companyWallet] += companyWalletSupply;
        emit Transfer(address(0), companyWallet, companyWalletSupply);
    }
}

Contract Security Audit

Contract ABI

[{"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":true,"inputs":[],"name":"companyWallet","outputs":[{"name":"","type":"address"}],"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":"INITIAL_SUPPLY","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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"employeePool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"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":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","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":true,"inputs":[],"name":"futureDevFund","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_employeePool","type":"address"},{"name":"_futureDevFund","type":"address"},{"name":"_companyWallet","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":"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"}]

608060405234801561001057600080fd5b50604051606080610dd3833981016040908152815160208301519190920151600160a060020a038316151561009457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a6024820152600080516020610db3833981519152604482015290519081900360640190fd5b600160a060020a03821615156100f957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a6024820152600080516020610db3833981519152604482015290519081900360640190fd5b600160a060020a038116151561015e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a6024820152600080516020610db3833981519152604482015290519081900360640190fd5b60038054600160a060020a0319908116600160a060020a038681169190911780845560048054841687841617905560058054909316858316179092556a52b7d2dcc80cd2e400000060015590811660009081526020818152604080832080546a0fb768105935a2f30000009081019091559454815195865290519316939192600080516020610d938339815191529281900390910190a360048054600160a060020a0390811660009081526020818152604080832080546a1581b6d300d0225a0000009081019091559454815195865290519316939192600080516020610d938339815191529281900390910190a360058054600160a060020a0390811660009081526020818152604080832080546a2d7eb3f96e070d970000009081019091559454815195865290519316939192600080516020610d938339815191529281900390910190a3505050610adc806102b76000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b75780631ec32d15146101de57806323b872dd1461020f5780632ff2e9dc14610239578063313ce5671461024e57806342966c681461027957806366188463146102935780636a3f5489146102b757806370a08231146102cc57806379cc6790146102ed57806395d89b4114610311578063a9059cbb14610326578063d73dd6231461034a578063dd62ed3e1461036e578063f93159d214610395575b600080fd5b34801561010157600080fd5b5061010a6103aa565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103e1565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610447565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101f361044d565b60408051600160a060020a039092168252519081900360200190f35b34801561021b57600080fd5b506101a3600160a060020a036004358116906024351660443561045c565b34801561024557600080fd5b506101cc6105d1565b34801561025a57600080fd5b506102636105e0565b6040805160ff9092168252519081900360200190f35b34801561028557600080fd5b506102916004356105e5565b005b34801561029f57600080fd5b506101a3600160a060020a03600435166024356105f2565b3480156102c357600080fd5b506101f36106e1565b3480156102d857600080fd5b506101cc600160a060020a03600435166106f0565b3480156102f957600080fd5b50610291600160a060020a036004351660243561070b565b34801561031d57600080fd5b5061010a6107a1565b34801561033257600080fd5b506101a3600160a060020a03600435166024356107d8565b34801561035657600080fd5b506101a3600160a060020a03600435166024356108b7565b34801561037a57600080fd5b506101cc600160a060020a0360043581169060243516610950565b3480156103a157600080fd5b506101f361097b565b60408051808201909152600a81527f56616c6f72546f6b656e00000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600554600160a060020a031681565b600160a060020a03831660009081526020819052604081205482111561048157600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156104b157600080fd5b600160a060020a03831615156104c657600080fd5b600160a060020a0384166000908152602081905260409020546104ef908363ffffffff61098a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610524908363ffffffff61099c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610566908363ffffffff61098a16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a52b7d2dcc80cd2e400000081565b601281565b6105ef33826109af565b50565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061064657336000908152600260209081526040808320600160a060020a038816845290915281205561067b565b610656818463ffffffff61098a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600160a060020a031681565b600160a060020a031660009081526020819052604090205490565b600160a060020a038216600090815260026020908152604080832033845290915290205481111561073b57600080fd5b600160a060020a038216600090815260026020908152604080832033845290915290205461076f908263ffffffff61098a16565b600160a060020a038316600090815260026020908152604080832033845290915290205561079d82826109af565b5050565b60408051808201909152600581527f56414c4f52000000000000000000000000000000000000000000000000000000602082015281565b336000908152602081905260408120548211156107f457600080fd5b600160a060020a038316151561080957600080fd5b33600090815260208190526040902054610829908363ffffffff61098a16565b3360009081526020819052604080822092909255600160a060020a0385168152205461085b908363ffffffff61099c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120546108eb908363ffffffff61099c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b60008282111561099657fe5b50900390565b818101828110156109a957fe5b92915050565b600160a060020a0382166000908152602081905260409020548111156109d457600080fd5b600160a060020a0382166000908152602081905260409020546109fd908263ffffffff61098a16565b600160a060020a038316600090815260208190526040902055600154610a29908263ffffffff61098a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505600a165627a7a7230582006d7da0ff78ca6624cffbb928b724c47a7f6853f35c8703ee3a8d4faa94e96e20029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef3078302061646472657373206973206e6f7420616c6c6f776564000000000000000000000000000000000000a76ee55d63cc9ae431c1618bfeb953487c06c3c2000000000000000000000000f5d3e5586ef9ca8a18f137808ff7e162a638e621000000000000000000000000bedc09625d4233631bca1ee670b24e0651cfbe17

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b75780631ec32d15146101de57806323b872dd1461020f5780632ff2e9dc14610239578063313ce5671461024e57806342966c681461027957806366188463146102935780636a3f5489146102b757806370a08231146102cc57806379cc6790146102ed57806395d89b4114610311578063a9059cbb14610326578063d73dd6231461034a578063dd62ed3e1461036e578063f93159d214610395575b600080fd5b34801561010157600080fd5b5061010a6103aa565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103e1565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610447565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101f361044d565b60408051600160a060020a039092168252519081900360200190f35b34801561021b57600080fd5b506101a3600160a060020a036004358116906024351660443561045c565b34801561024557600080fd5b506101cc6105d1565b34801561025a57600080fd5b506102636105e0565b6040805160ff9092168252519081900360200190f35b34801561028557600080fd5b506102916004356105e5565b005b34801561029f57600080fd5b506101a3600160a060020a03600435166024356105f2565b3480156102c357600080fd5b506101f36106e1565b3480156102d857600080fd5b506101cc600160a060020a03600435166106f0565b3480156102f957600080fd5b50610291600160a060020a036004351660243561070b565b34801561031d57600080fd5b5061010a6107a1565b34801561033257600080fd5b506101a3600160a060020a03600435166024356107d8565b34801561035657600080fd5b506101a3600160a060020a03600435166024356108b7565b34801561037a57600080fd5b506101cc600160a060020a0360043581169060243516610950565b3480156103a157600080fd5b506101f361097b565b60408051808201909152600a81527f56616c6f72546f6b656e00000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600554600160a060020a031681565b600160a060020a03831660009081526020819052604081205482111561048157600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156104b157600080fd5b600160a060020a03831615156104c657600080fd5b600160a060020a0384166000908152602081905260409020546104ef908363ffffffff61098a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610524908363ffffffff61099c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610566908363ffffffff61098a16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a52b7d2dcc80cd2e400000081565b601281565b6105ef33826109af565b50565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061064657336000908152600260209081526040808320600160a060020a038816845290915281205561067b565b610656818463ffffffff61098a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600160a060020a031681565b600160a060020a031660009081526020819052604090205490565b600160a060020a038216600090815260026020908152604080832033845290915290205481111561073b57600080fd5b600160a060020a038216600090815260026020908152604080832033845290915290205461076f908263ffffffff61098a16565b600160a060020a038316600090815260026020908152604080832033845290915290205561079d82826109af565b5050565b60408051808201909152600581527f56414c4f52000000000000000000000000000000000000000000000000000000602082015281565b336000908152602081905260408120548211156107f457600080fd5b600160a060020a038316151561080957600080fd5b33600090815260208190526040902054610829908363ffffffff61098a16565b3360009081526020819052604080822092909255600160a060020a0385168152205461085b908363ffffffff61099c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120546108eb908363ffffffff61099c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b60008282111561099657fe5b50900390565b818101828110156109a957fe5b92915050565b600160a060020a0382166000908152602081905260409020548111156109d457600080fd5b600160a060020a0382166000908152602081905260409020546109fd908263ffffffff61098a16565b600160a060020a038316600090815260208190526040902055600154610a29908263ffffffff61098a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505600a165627a7a7230582006d7da0ff78ca6624cffbb928b724c47a7f6853f35c8703ee3a8d4faa94e96e20029

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

000000000000000000000000a76ee55d63cc9ae431c1618bfeb953487c06c3c2000000000000000000000000f5d3e5586ef9ca8a18f137808ff7e162a638e621000000000000000000000000bedc09625d4233631bca1ee670b24e0651cfbe17

-----Decoded View---------------
Arg [0] : _employeePool (address): 0xA76ee55d63CC9ae431C1618bFEB953487C06C3c2
Arg [1] : _futureDevFund (address): 0xF5d3E5586EF9Ca8A18F137808ff7e162a638E621
Arg [2] : _companyWallet (address): 0xBedC09625d4233631Bca1Ee670B24E0651CfBe17

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000a76ee55d63cc9ae431c1618bfeb953487c06c3c2
Arg [1] : 000000000000000000000000f5d3e5586ef9ca8a18f137808ff7e162a638e621
Arg [2] : 000000000000000000000000bedc09625d4233631bca1ee670b24e0651cfbe17


Swarm Source

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