ETH Price: $3,428.96 (+0.33%)
Gas: 5 Gwei

Token

AGATE (AGT)
 

Overview

Max Total Supply

490,000,000 AGT

Holders

876

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
110 AGT

Value
$0.00
0xea34fd7e3b335498b7c8ad9fdc833a46dd78b193
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AgateToken

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-08-20
*/

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 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) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @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 Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 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(_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 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.
 * @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) {
        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 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) public returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval (address _spender, uint _subtractedValue) public 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);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }

    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }

    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

contract Owned {
    address public owner;

    constructor() public {
        owner = msg.sender;
    }

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

/**
 * @title TokenVesting
 * @dev A token holder contract that can release its token balance gradually like a
 * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
 * owner.
 */
contract TokenVesting is Owned {
  using SafeMath for uint256;
  using SafeERC20 for ERC20Basic;

  event Released(uint256 amount);
  event Revoked();

  // beneficiary of tokens after they are released
  address public beneficiary;

  uint256 public cliff;
  uint256 public start;
  uint256 public duration;

  bool public revocable;

  mapping (address => uint256) public released;
  mapping (address => bool) public revoked;

  /**
   * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
   * _beneficiary, gradually in a linear fashion until _start + _duration. By then all
   * of the balance will have vested.
   * @param _beneficiary address of the beneficiary to whom vested tokens are transferred
   * @param _cliff duration in seconds of the cliff in which tokens will begin to vest
   * @param _start the time (as Unix time) at which point vesting starts 
   * @param _duration duration in seconds of the period in which the tokens will vest
   * @param _revocable whether the vesting is revocable or not
   */
  constructor(
    address _beneficiary,
    uint256 _start,
    uint256 _cliff,
    uint256 _duration,
    bool _revocable
  )
    public
  {
    require(_beneficiary != address(0));
    require(_cliff <= _duration);

    beneficiary = _beneficiary;
    revocable = _revocable;
    duration = _duration;
    cliff = _start.add(_cliff);
    start = _start;
  }

  /**
   * @notice Transfers vested tokens to beneficiary.
   * @param token ERC20 token which is being vested
   */
  function release(ERC20Basic token) public {
    uint256 unreleased = releasableAmount(token);

    require(unreleased > 0);

    released[token] = released[token].add(unreleased);

    token.safeTransfer(beneficiary, unreleased);

    emit Released(unreleased);
  }

  /**
   * @notice Allows the owner to revoke the vesting. Tokens already vested
   * remain in the contract, the rest are returned to the owner.
   * @param token ERC20 token which is being vested
   */
  function revoke(ERC20Basic token) public onlyOwner {
    require(revocable);
    require(!revoked[token]);

    uint256 balance = token.balanceOf(this);

    uint256 unreleased = releasableAmount(token);
    uint256 refund = balance.sub(unreleased);

    revoked[token] = true;

    token.safeTransfer(owner, refund);

    emit Revoked();
  }

  /**
   * @dev Calculates the amount that has already vested but hasn't been released yet.
   * @param token ERC20 token which is being vested
   */
  function releasableAmount(ERC20Basic token) public view returns (uint256) {
    return vestedAmount(token).sub(released[token]);
  }

  /**
   * @dev Calculates the amount that has already vested.
   * @param token ERC20 token which is being vested
   */
  function vestedAmount(ERC20Basic token) public view returns (uint256) {
    uint256 currentBalance = token.balanceOf(this);
    uint256 totalBalance = currentBalance.add(released[token]);

    if (block.timestamp < cliff) {
      return 0;
    } else if (block.timestamp >= start.add(duration) || revoked[token]) {
      return totalBalance;
    } else {
      return totalBalance.mul(block.timestamp.sub(start)).div(duration);
    }
  }
}

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

contract AgateToken is BurnableToken, StandardToken, Owned {
    string public constant name = "AGATE";
    string public constant symbol = "AGT";
    uint8 public constant decimals = 18;

    /// Maximum tokens to be allocated (490 million AGT)
    uint256 public constant HARD_CAP = 490000000 * 10**uint256(decimals);

    /// This address is used to keep the tokens for sale
    address public saleTokensAddress;

    /// This address is used to keep the bounty and airdrop tokens
    address public bountyTokensAddress;

    /// This address will receive the team tokens when they are released from the vesting
    address public teamTokensAddress;
    
    /// This address is used to keep the vested team tokens
    TokenVesting public teamTokensVesting;

    /// This address is used to keep the advisors tokens
    address public advisorsTokensAddress;

    /// This address is used to keep the reserve tokens
    address public reserveTokensAddress;

    /// when the token sale is closed, the unsold tokens are burnt
    bool public saleClosed = false;

    /// open the trading for everyone
    bool public tradingOpen = false;

    /// the team tokens are vested for an year after the date 15 Nov 2018 
    uint64 public constant date15Nov2018 = 1542240000;

    /// Only allowed to execute before the token sale is closed
    modifier beforeSaleClosed {
        require(!saleClosed);
        _;
    }

    constructor(address _teamTokensAddress, address _reserveTokensAddress, 
                address _advisorsTokensAddress, address _saleTokensAddress, address _bountyTokensAddress) public {
        require(_teamTokensAddress != address(0));
        require(_reserveTokensAddress != address(0));
        require(_advisorsTokensAddress != address(0));
        require(_saleTokensAddress != address(0));
        require(_bountyTokensAddress != address(0));

        teamTokensAddress = _teamTokensAddress;
        reserveTokensAddress = _reserveTokensAddress;
        advisorsTokensAddress = _advisorsTokensAddress;
        saleTokensAddress = _saleTokensAddress;
        bountyTokensAddress = _bountyTokensAddress;

        /// Maximum tokens to be allocated on the sale
        /// 318.5M AGT (65% of 490M total supply)
        uint256 saleTokens = 318500000 * 10**uint256(decimals);
        totalSupply_ = saleTokens;
        balances[saleTokensAddress] = saleTokens;
        emit Transfer(address(0), saleTokensAddress, balances[saleTokensAddress]);
 
        /// Team tokens - 49M AGT (10% of total supply) - vested for an year since 15 Nov 2018
        uint256 teamTokens = 49000000 * 10**uint256(decimals);
        totalSupply_ = totalSupply_.add(teamTokens);
        teamTokensVesting = new TokenVesting(teamTokensAddress, date15Nov2018, 92 days, 365 days, false);
        balances[address(teamTokensVesting)] = teamTokens;
        emit Transfer(address(0), address(teamTokensVesting), balances[address(teamTokensVesting)]);
 
        /// Bounty and airdrop tokens - 24.5M AGT (5% of total supply)
        uint256 bountyTokens = 24500000 * 10**uint256(decimals);
        totalSupply_ = totalSupply_.add(bountyTokens);
        balances[bountyTokensAddress] = bountyTokens;
        emit Transfer(address(0), bountyTokensAddress, balances[bountyTokensAddress]);
 
        /// Advisors tokens - 24.5M AGT (5% of total supply)
        uint256 advisorsTokens = 24500000 * 10**uint256(decimals);
        totalSupply_ = totalSupply_.add(advisorsTokens);
        balances[advisorsTokensAddress] = advisorsTokens;
        emit Transfer(address(0), advisorsTokensAddress, balances[advisorsTokensAddress]);

        /// Reserved tokens - 73.5M AGT (15% of total supply)
        uint256 reserveTokens = 73500000 * 10**uint256(decimals);
        totalSupply_ = totalSupply_.add(reserveTokens);
        balances[reserveTokensAddress] = reserveTokens;
        emit Transfer(address(0), reserveTokensAddress, balances[reserveTokensAddress]);

        require(totalSupply_ <= HARD_CAP);
    }

    /// @dev reallocates the unsold and leftover bounty tokens
    function closeSale() external onlyOwner beforeSaleClosed {
        /// The unsold tokens are burnt

        _burn(saleTokensAddress, balances[saleTokensAddress]);
        saleClosed = true;
    }

    /// @dev opens the trading for everyone
    function openTrading() external onlyOwner {
        tradingOpen = true;
    }

    /// @dev Trading limited
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        if(tradingOpen) {
            return super.transferFrom(_from, _to, _value);
        }
        return false;
    }

    /// @dev Trading limited
    function transfer(address _to, uint256 _value) public returns (bool) {
        if(tradingOpen || msg.sender == saleTokensAddress || msg.sender == bountyTokensAddress
                        || msg.sender == advisorsTokensAddress) {
            return super.transfer(_to, _value);
        }
        return false;
    }
}

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":"date15Nov2018","outputs":[{"name":"","type":"uint64"}],"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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"teamTokensVesting","outputs":[{"name":"","type":"address"}],"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":"teamTokensAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensAddress","outputs":[{"name":"","type":"address"}],"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":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":"saleTokensAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserveTokensAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"openTrading","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsTokensAddress","outputs":[{"name":"","type":"address"}],"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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tradingOpen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_teamTokensAddress","type":"address"},{"name":"_reserveTokensAddress","type":"address"},{"name":"_advisorsTokensAddress","type":"address"},{"name":"_saleTokensAddress","type":"address"},{"name":"_bountyTokensAddress","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"}]

60806040526009805460a060020a61ffff02191690553480156200002257600080fd5b5060405160a08062001a638339810160409081528151602083015191830151606084015160809094015160038054600160a060020a0319163317905591939091600080808080600160a060020a038a1615156200007e57600080fd5b600160a060020a03891615156200009457600080fd5b600160a060020a0388161515620000aa57600080fd5b600160a060020a0387161515620000c057600080fd5b600160a060020a0386161515620000d657600080fd5b60068054600160a060020a0319908116600160a060020a038d8116919091179092556009805482168c84161790556008805482168b84161790556004805482168a841617808255600580549093168a8516179092556b010774ff98c9f5a4ce80000060018190559183166000908152602081815260408083208590559254909416808252828220548351908152925193995093909260008051602062001a438339815191529281900390910190a36001546a2888275295397bd10000009450620001af908564010000000062000d526200042f82021704565b600155600654600160a060020a0316635becb70062794a006301e133806000620001d862000446565b600160a060020a03909516855267ffffffffffffffff909316602085015260408085019290925260608401529015156080830152519081900360a001906000f0801580156200022b573d6000803e3d6000fd5b5060078054600160a060020a031916600160a060020a03928316178082558216600090815260208181526040808320899055925490931680825282822054835190815292519093919260008051602062001a4383398151915292908290030190a36001546a144413a94a9cbde88000009350620002b7908464010000000062000d526200042f82021704565b60015560058054600160a060020a03908116600090815260208181526040808320889055935490921680825283822054845190815293519093919260008051602062001a43833981519152928290030190a36001546a144413a94a9cbde8800000925062000334908364010000000062000d526200042f82021704565b60015560088054600160a060020a03908116600090815260208181526040808320879055935490921680825283822054845190815293519093919260008051602062001a43833981519152928290030190a3506001546a3ccc3afbdfd639b980000090620003b1908264010000000062000d526200042f82021704565b60015560098054600160a060020a03908116600090815260208181526040808320869055935490921680825283822054845190815293519093919260008051602062001a43833981519152928290030190a36001546b0195518939d43ed62a00000010156200041f57600080fd5b5050505050505050505062000457565b6000828201838110156200043f57fe5b9392505050565b60405161084f80620011f483390190565b610d8d80620004676000396000f3006080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d75780630bc59a8e1461020f57806318160ddd1461024157806323b872dd14610268578063313ce567146102925780633a03171c146102bd57806342966c68146102d25780634628bc22146102ec578063661884631461031d57806370a08231146103415780637b0de0151461036257806388ea70ee146103775780638da5cb5b1461038c57806395d89b41146103a1578063a9059cbb146103b6578063afa31744146103da578063b8c766b8146103ef578063c611ded714610404578063c9567bf914610419578063d20f50291461042e578063d73dd62314610443578063dd62ed3e14610467578063ee55efee1461048e578063ffb54a99146104a3575b600080fd5b34801561015957600080fd5b506101626104b8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019c578181015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e357600080fd5b506101fb600160a060020a03600435166024356104ef565b604080519115158252519081900360200190f35b34801561021b57600080fd5b50610224610556565b6040805167ffffffffffffffff9092168252519081900360200190f35b34801561024d57600080fd5b5061025661055e565b60408051918252519081900360200190f35b34801561027457600080fd5b506101fb600160a060020a0360043581169060243516604435610564565b34801561029e57600080fd5b506102a76105a8565b6040805160ff9092168252519081900360200190f35b3480156102c957600080fd5b506102566105ad565b3480156102de57600080fd5b506102ea6004356105bd565b005b3480156102f857600080fd5b506103016105ca565b60408051600160a060020a039092168252519081900360200190f35b34801561032957600080fd5b506101fb600160a060020a03600435166024356105d9565b34801561034d57600080fd5b50610256600160a060020a03600435166106c9565b34801561036e57600080fd5b506103016106e4565b34801561038357600080fd5b506103016106f3565b34801561039857600080fd5b50610301610702565b3480156103ad57600080fd5b50610162610711565b3480156103c257600080fd5b506101fb600160a060020a0360043516602435610748565b3480156103e657600080fd5b506103016107c8565b3480156103fb57600080fd5b506101fb6107d7565b34801561041057600080fd5b506103016107f8565b34801561042557600080fd5b506102ea610807565b34801561043a57600080fd5b50610301610857565b34801561044f57600080fd5b506101fb600160a060020a0360043516602435610866565b34801561047357600080fd5b50610256600160a060020a03600435811690602435166108ff565b34801561049a57600080fd5b506102ea61092a565b3480156104af57600080fd5b506101fb6109c5565b60408051808201909152600581527f4147415445000000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b635becb70081565b60015490565b6009546000907501000000000000000000000000000000000000000000900460ff161561059d576105968484846109e7565b90506105a1565b5060005b9392505050565b601281565b6b0195518939d43ed62a00000081565b6105c73382610b5e565b50565b600754600160a060020a031681565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561062e57336000908152600260209081526040808320600160a060020a0388168452909152812055610663565b61063e818463ffffffff610c5f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600654600160a060020a031681565b600554600160a060020a031681565b600354600160a060020a031681565b60408051808201909152600381527f4147540000000000000000000000000000000000000000000000000000000000602082015281565b6009546000907501000000000000000000000000000000000000000000900460ff168061077f5750600454600160a060020a031633145b806107945750600554600160a060020a031633145b806107a95750600854600160a060020a031633145b156107bf576107b88383610c71565b9050610550565b50600092915050565b600454600160a060020a031681565b60095474010000000000000000000000000000000000000000900460ff1681565b600954600160a060020a031681565b600354600160a060020a0316331461081e57600080fd5b6009805475ff00000000000000000000000000000000000000000019167501000000000000000000000000000000000000000000179055565b600854600160a060020a031681565b336000908152600260209081526040808320600160a060020a038616845290915281205461089a908363ffffffff610d5216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461094157600080fd5b60095474010000000000000000000000000000000000000000900460ff161561096957600080fd5b600454600160a060020a031660008181526020819052604090205461098e9190610b5e565b6009805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b6009547501000000000000000000000000000000000000000000900460ff1681565b6000600160a060020a03831615156109fe57600080fd5b600160a060020a038416600090815260208190526040902054821115610a2357600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610a5357600080fd5b600160a060020a038416600090815260208190526040902054610a7c908363ffffffff610c5f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ab1908363ffffffff610d5216565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610af3908363ffffffff610c5f16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610b8357600080fd5b600160a060020a038216600090815260208190526040902054610bac908263ffffffff610c5f16565b600160a060020a038316600090815260208190526040902055600154610bd8908263ffffffff610c5f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610c6b57fe5b50900390565b6000600160a060020a0383161515610c8857600080fd5b33600090815260208190526040902054821115610ca457600080fd5b33600090815260208190526040902054610cc4908363ffffffff610c5f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610cf6908363ffffffff610d5216565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000828201838110156105a157fe00a165627a7a72305820020b1775c7aa782fb0d082d715bf391ee471ea19b86882dc9b0bb19e307931e40029608060405234801561001057600080fd5b5060405160a08061084f8339810160409081528151602083015191830151606084015160809094015160008054600160a060020a0319163317905591939091600160a060020a038516151561006457600080fd5b8183111561007157600080fd5b60018054600160a060020a031916600160a060020a0387161790556005805460ff191682151517905560048290556100b684846401000000006100c581026106411704565b600255505050600355506100db565b6000828201838110156100d457fe5b9392505050565b610765806100ea6000396000f3006080604052600436106100a05763ffffffff60e060020a6000350416630fb5a6b481146100a557806313d033c0146100cc5780631726cbc8146100e15780631916558714610102578063384711cc1461012557806338af3eed1461014657806374a8f10314610177578063872a7810146101985780638da5cb5b146101c15780639852595c146101d6578063be9a6555146101f7578063fa01dc061461020c575b600080fd5b3480156100b157600080fd5b506100ba61022d565b60408051918252519081900360200190f35b3480156100d857600080fd5b506100ba610233565b3480156100ed57600080fd5b506100ba600160a060020a0360043516610239565b34801561010e57600080fd5b50610123600160a060020a0360043516610271565b005b34801561013157600080fd5b506100ba600160a060020a036004351661031d565b34801561015257600080fd5b5061015b610474565b60408051600160a060020a039092168252519081900360200190f35b34801561018357600080fd5b50610123600160a060020a0360043516610483565b3480156101a457600080fd5b506101ad6105ea565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b5061015b6105f3565b3480156101e257600080fd5b506100ba600160a060020a0360043516610602565b34801561020357600080fd5b506100ba610614565b34801561021857600080fd5b506101ad600160a060020a036004351661061a565b60045481565b60025481565b600160a060020a03811660009081526006602052604081205461026b9061025f8461031d565b9063ffffffff61062f16565b92915050565b600061027c82610239565b90506000811161028b57600080fd5b600160a060020a0382166000908152600660205260409020546102b4908263ffffffff61064116565b600160a060020a038084166000818152600660205260409020929092556001546102e69291168363ffffffff61065b16565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561037d57600080fd5b505af1158015610391573d6000803e3d6000fd5b505050506040513d60208110156103a757600080fd5b5051600160a060020a0385166000908152600660205260409020549092506103d690839063ffffffff61064116565b90506002544210156103eb576000925061046d565b6004546003546104009163ffffffff61064116565b421015806104265750600160a060020a03841660009081526007602052604090205460ff165b156104335780925061046d565b61046a60045461045e6104516003544261062f90919063ffffffff16565b849063ffffffff6106f716565b9063ffffffff61072216565b92505b5050919050565b600154600160a060020a031681565b6000805481908190600160a060020a0316331461049f57600080fd5b60055460ff1615156104b057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156104d657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505050506040513d602081101561056157600080fd5b5051925061056e84610239565b9150610580838363ffffffff61062f16565b600160a060020a038086166000818152600760205260408120805460ff19166001179055549293506105bb929091168363ffffffff61065b16565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60035481565b60076020526000908152604090205460ff1681565b60008282111561063b57fe5b50900390565b60008282018381101561065057fe5b8091505b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156106be57600080fd5b505af11580156106d2573d6000803e3d6000fd5b505050506040513d60208110156106e857600080fd5b505115156106f257fe5b505050565b60008083151561070a5760009150610654565b5082820282848281151561071a57fe5b041461065057fe5b600080828481151561073057fe5b049493505050505600a165627a7a72305820fd02bdb031ec4b77c61da9863c7bc0a1f0ec71e005e7cf11ee2caedf84f34d710029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000508f0b612fef3f2b93452fe89470ed5434ed44c9000000000000000000000000419d855657f2b026dea549d320a42809b16ae37800000000000000000000000040d94e103075356ecadcb6c3d97dc92480de1075000000000000000000000000db78bdf09cfe6ec50929f987fab08e757643179a000000000000000000000000d883c69077dd25ab5348b1998495effc87fd61c1

Deployed Bytecode

0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d75780630bc59a8e1461020f57806318160ddd1461024157806323b872dd14610268578063313ce567146102925780633a03171c146102bd57806342966c68146102d25780634628bc22146102ec578063661884631461031d57806370a08231146103415780637b0de0151461036257806388ea70ee146103775780638da5cb5b1461038c57806395d89b41146103a1578063a9059cbb146103b6578063afa31744146103da578063b8c766b8146103ef578063c611ded714610404578063c9567bf914610419578063d20f50291461042e578063d73dd62314610443578063dd62ed3e14610467578063ee55efee1461048e578063ffb54a99146104a3575b600080fd5b34801561015957600080fd5b506101626104b8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019c578181015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e357600080fd5b506101fb600160a060020a03600435166024356104ef565b604080519115158252519081900360200190f35b34801561021b57600080fd5b50610224610556565b6040805167ffffffffffffffff9092168252519081900360200190f35b34801561024d57600080fd5b5061025661055e565b60408051918252519081900360200190f35b34801561027457600080fd5b506101fb600160a060020a0360043581169060243516604435610564565b34801561029e57600080fd5b506102a76105a8565b6040805160ff9092168252519081900360200190f35b3480156102c957600080fd5b506102566105ad565b3480156102de57600080fd5b506102ea6004356105bd565b005b3480156102f857600080fd5b506103016105ca565b60408051600160a060020a039092168252519081900360200190f35b34801561032957600080fd5b506101fb600160a060020a03600435166024356105d9565b34801561034d57600080fd5b50610256600160a060020a03600435166106c9565b34801561036e57600080fd5b506103016106e4565b34801561038357600080fd5b506103016106f3565b34801561039857600080fd5b50610301610702565b3480156103ad57600080fd5b50610162610711565b3480156103c257600080fd5b506101fb600160a060020a0360043516602435610748565b3480156103e657600080fd5b506103016107c8565b3480156103fb57600080fd5b506101fb6107d7565b34801561041057600080fd5b506103016107f8565b34801561042557600080fd5b506102ea610807565b34801561043a57600080fd5b50610301610857565b34801561044f57600080fd5b506101fb600160a060020a0360043516602435610866565b34801561047357600080fd5b50610256600160a060020a03600435811690602435166108ff565b34801561049a57600080fd5b506102ea61092a565b3480156104af57600080fd5b506101fb6109c5565b60408051808201909152600581527f4147415445000000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b635becb70081565b60015490565b6009546000907501000000000000000000000000000000000000000000900460ff161561059d576105968484846109e7565b90506105a1565b5060005b9392505050565b601281565b6b0195518939d43ed62a00000081565b6105c73382610b5e565b50565b600754600160a060020a031681565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561062e57336000908152600260209081526040808320600160a060020a0388168452909152812055610663565b61063e818463ffffffff610c5f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600654600160a060020a031681565b600554600160a060020a031681565b600354600160a060020a031681565b60408051808201909152600381527f4147540000000000000000000000000000000000000000000000000000000000602082015281565b6009546000907501000000000000000000000000000000000000000000900460ff168061077f5750600454600160a060020a031633145b806107945750600554600160a060020a031633145b806107a95750600854600160a060020a031633145b156107bf576107b88383610c71565b9050610550565b50600092915050565b600454600160a060020a031681565b60095474010000000000000000000000000000000000000000900460ff1681565b600954600160a060020a031681565b600354600160a060020a0316331461081e57600080fd5b6009805475ff00000000000000000000000000000000000000000019167501000000000000000000000000000000000000000000179055565b600854600160a060020a031681565b336000908152600260209081526040808320600160a060020a038616845290915281205461089a908363ffffffff610d5216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461094157600080fd5b60095474010000000000000000000000000000000000000000900460ff161561096957600080fd5b600454600160a060020a031660008181526020819052604090205461098e9190610b5e565b6009805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b6009547501000000000000000000000000000000000000000000900460ff1681565b6000600160a060020a03831615156109fe57600080fd5b600160a060020a038416600090815260208190526040902054821115610a2357600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610a5357600080fd5b600160a060020a038416600090815260208190526040902054610a7c908363ffffffff610c5f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ab1908363ffffffff610d5216565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610af3908363ffffffff610c5f16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610b8357600080fd5b600160a060020a038216600090815260208190526040902054610bac908263ffffffff610c5f16565b600160a060020a038316600090815260208190526040902055600154610bd8908263ffffffff610c5f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610c6b57fe5b50900390565b6000600160a060020a0383161515610c8857600080fd5b33600090815260208190526040902054821115610ca457600080fd5b33600090815260208190526040902054610cc4908363ffffffff610c5f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610cf6908363ffffffff610d5216565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6000828201838110156105a157fe00a165627a7a72305820020b1775c7aa782fb0d082d715bf391ee471ea19b86882dc9b0bb19e307931e40029

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

000000000000000000000000508f0b612fef3f2b93452fe89470ed5434ed44c9000000000000000000000000419d855657f2b026dea549d320a42809b16ae37800000000000000000000000040d94e103075356ecadcb6c3d97dc92480de1075000000000000000000000000db78bdf09cfe6ec50929f987fab08e757643179a000000000000000000000000d883c69077dd25ab5348b1998495effc87fd61c1

-----Decoded View---------------
Arg [0] : _teamTokensAddress (address): 0x508F0b612FEF3f2b93452FE89470Ed5434ed44c9
Arg [1] : _reserveTokensAddress (address): 0x419d855657F2b026dea549D320a42809b16ae378
Arg [2] : _advisorsTokensAddress (address): 0x40D94e103075356ECaDcB6C3D97dC92480de1075
Arg [3] : _saleTokensAddress (address): 0xDB78BdF09Cfe6ec50929F987FAB08e757643179a
Arg [4] : _bountyTokensAddress (address): 0xd883C69077dD25AB5348b1998495efFC87Fd61c1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000508f0b612fef3f2b93452fe89470ed5434ed44c9
Arg [1] : 000000000000000000000000419d855657f2b026dea549d320a42809b16ae378
Arg [2] : 00000000000000000000000040d94e103075356ecadcb6c3d97dc92480de1075
Arg [3] : 000000000000000000000000db78bdf09cfe6ec50929f987fab08e757643179a
Arg [4] : 000000000000000000000000d883c69077dd25ab5348b1998495effc87fd61c1


Swarm Source

bzzr://fd02bdb031ec4b77c61da9863c7bc0a1f0ec71e005e7cf11ee2caedf84f34d71
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.