ETH Price: $3,418.95 (-0.63%)
Gas: 3 Gwei

Token

MintFlint Token (MTF)
 

Overview

Max Total Supply

175,676,330.5228 MTF

Holders

107

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
scaly2018.eth
Balance
500 MTF

Value
$0.00
0x51ec5e1b8B3C4C6baE49619e657F94C4AD577b45
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:
MTF

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.21;

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

    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 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 view returns (uint256) {
    return allowed[_owner][_spender];
  }

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

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

}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @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 mint(address _to, uint256 _amount) canMint internal returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() canMint internal returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    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() public {
    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) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract MTF is MintableToken, Ownable {

    using SafeMath for uint256;
    //The name of the  token
    string public constant name = "MintFlint Token";
    //The token symbol
    string public constant symbol = "MTF";
    //The precision used in the balance calculations in contract
    uint8 public constant decimals = 18;

    //maximum cap to be sold on ICO
    uint256 public constant maxCap = 1500000000e18;
    //to save total number of ethers received
    uint256 public totalWeiReceived;

    //time when the sale starts
    uint256 public startTime;
    //time when the presale ends
    uint256 public endTime;
    //to check the sale status
    bool public paused;

    //events
    event StateChanged(bool);
    event TokenPurchase(address indexed beneficiary, uint256 value, uint256 amount);

    function MTF(uint256 _startTime, uint256 _endTime) public {
        startTime = _startTime;
        endTime = _endTime;
        paused = false;
        totalSupply_ = 0;
    }

    modifier whenSaleEnded() {
        require(now >= endTime);
        _;
    }

    /**
     * @dev to determine the timeframe of sale
     */
    modifier validTimeframe() {
        require(!paused && now >=startTime && now < endTime);
        _;
    }

    /**
     * @dev Allocate tokens to team members
     */
    function teamAllocation(address _airdropAddress) public onlyOwner whenSaleEnded {
        uint256 toDistribute = totalSupply_.mul(2);
        // Receiver1 3.0%
        uint256 part1 = toDistribute.mul(3).div(400);
        mint(0x1117Db9F1bf18C91233Bff3BF2676137709463B3, part1);
        mint(0x6C137b489cEE58C32fd8Aec66EAdC4B959550198, part1);
        mint(0x450023b2D943498949f0A9cdb1DbBd827844EE78, part1);
        mint(0x89080db76A555c42D7b43556E40AcaAFeB786CDD, part1);

        // Receiver2 19.5%
        uint256 part2 = toDistribute.mul(195).div(4000);
        mint(0xcFc43257606C6a642d9438dCd82bf5b39A17dbAB, part2);
        mint(0x4a8C5Ea0619c40070f288c8aC289ef2f6Bb87cff, part2);
        mint(0x947251376EeAFb0B0CD1bD47cC6056A5162bEaF4, part2);
        mint(0x39A49403eFB1e85F835A9e5dc82706B970D112e4, part2);

        // Receiver3 2.0% 0x733bc7201261aC3c9508D20a811D99179304240a
        mint(0x733bc7201261aC3c9508D20a811D99179304240a, toDistribute.mul(2).div(100));

        // Receiver4 18.0% 0x4b6716bd349dC65d07152844ed4990C2077cF1a7
        mint(0x4b6716bd349dC65d07152844ed4990C2077cF1a7, toDistribute.mul(18).div(100));

        // Receiver5 6% 0xEf628A29668C00d5C7C4D915F07188dC96cF24eb
        uint256 part5 = toDistribute.mul(6).div(400);
        mint(0xEf628A29668C00d5C7C4D915F07188dC96cF24eb, part5);
        mint(0xF28a5e85316E0C950f8703e2d99F15A7c077014c, part5);
        mint(0x0c8C9Dcfa4ed27e02349D536fE30957a32b44a04, part5);
        mint(0x0A86174f18D145D3850501e2f4C160519207B829, part5);

        // Receiver6 1.50%
        // 0.75% in 0x35eeb3216E2Ff669F2c1Ff90A08A22F60e6c5728 and
        // 0.75% in 0x28dcC9Af670252A5f76296207cfcC29B4E3C68D5
        mint(0x35eeb3216E2Ff669F2c1Ff90A08A22F60e6c5728, toDistribute.mul(75).div(10000));
        mint(0x28dcC9Af670252A5f76296207cfcC29B4E3C68D5, toDistribute.mul(75).div(10000));

        mint(_airdropAddress, 175000000 ether);

        finishMinting();
    }

    function transfer(address _to, uint _value) whenSaleEnded public returns(bool _success) {
        return super.transfer(_to, _value);
    }

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

    /**
    * @dev Calculate number of tokens that will be received in one ether
    *
    */
    function getPrice() public pure returns(uint256) {
        return 100000;
    }

    /**
    * @dev to enable pause sale for break in ICO and Pre-ICO
    *
    */
    function pauseSale() public onlyOwner {
        require(!paused);
        paused = true;
    }

    /**
    * @dev to resume paused sale
    *
    */
    function resumeSale() public onlyOwner {
        require(paused);
        paused = false;
    }

    function buyTokens(address beneficiary) internal validTimeframe {
        uint256 tokensBought = msg.value.mul(getPrice());
        totalWeiReceived = totalWeiReceived.add(msg.value);
        emit TokenPurchase(beneficiary, msg.value, tokensBought);
        mint(beneficiary, tokensBought);
        require(totalSupply_ <= maxCap);
    }

    function () public payable {
        buyTokens(msg.sender);
    }

    /**
    * @dev Failsafe drain.
    */
    function drain() public onlyOwner whenSaleEnded {
        owner.transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","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":true,"inputs":[],"name":"maxCap","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":false,"inputs":[{"name":"_airdropAddress","type":"address"}],"name":"teamAllocation","outputs":[],"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":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resumeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalWeiReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"drain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","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":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"","type":"bool"}],"name":"StateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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"}]

60806040526003805460ff1916905534801561001a57600080fd5b506040516040806111bd83398101604052805160209091015160038054610100330261010060a860020a03199091161790556005919091556006556007805460ff19169055600060015561114a806100736000396000f30060806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014857806306fdde0314610171578063095ea7b3146101fb57806318160ddd1461021f57806323548b8b1461024657806323b872dd1461025b5780632a1ef0ca14610285578063313ce567146102a65780633197cbb6146102d157806333e364cb146102e657806355367ba9146102fb5780635c975abb14610310578063661884631461032557806370a082311461034957806378e979251461036a57806388d12a4d1461037f5780638da5cb5b1461039457806395d89b41146103c55780639890220b146103da57806398d5fdca146103ef578063a9059cbb14610404578063d73dd62314610428578063dd62ed3e1461044c578063f2fde38b14610473575b61014633610494565b005b34801561015457600080fd5b5061015d610562565b604080519115158252519081900360200190f35b34801561017d57600080fd5b5061018661056b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c05781810151838201526020016101a8565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020757600080fd5b5061015d600160a060020a03600435166024356105a2565b34801561022b57600080fd5b50610234610609565b60408051918252519081900360200190f35b34801561025257600080fd5b5061023461060f565b34801561026757600080fd5b5061015d600160a060020a036004358116906024351660443561061f565b34801561029157600080fd5b50610146600160a060020a0360043516610644565b3480156102b257600080fd5b506102bb610942565b6040805160ff9092168252519081900360200190f35b3480156102dd57600080fd5b50610234610947565b3480156102f257600080fd5b5061014661094d565b34801561030757600080fd5b50610146610986565b34801561031c57600080fd5b5061015d6109c1565b34801561033157600080fd5b5061015d600160a060020a03600435166024356109ca565b34801561035557600080fd5b50610234600160a060020a0360043516610aba565b34801561037657600080fd5b50610234610ad5565b34801561038b57600080fd5b50610234610adb565b3480156103a057600080fd5b506103a9610ae1565b60408051600160a060020a039092168252519081900360200190f35b3480156103d157600080fd5b50610186610af5565b3480156103e657600080fd5b50610146610b2c565b3480156103fb57600080fd5b50610234610b9b565b34801561041057600080fd5b5061015d600160a060020a0360043516602435610ba2565b34801561043457600080fd5b5061015d600160a060020a0360043516602435610bc5565b34801561045857600080fd5b50610234600160a060020a0360043581169060243516610c5e565b34801561047f57600080fd5b50610146600160a060020a0360043516610c89565b60075460009060ff161580156104ac57506005544210155b80156104b9575060065442105b15156104c457600080fd5b6104dc6104cf610b9b565b349063ffffffff610d2e16565b6004549091506104f2903463ffffffff610d5716565b60045560408051348152602081018390528151600160a060020a038516927fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f928290030190a26105428282610d64565b506001546b04d8c55aefb8c05b5c000000101561055e57600080fd5b5050565b60035460ff1681565b60408051808201909152600f81527f4d696e74466c696e7420546f6b656e0000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60015490565b6b04d8c55aefb8c05b5c00000081565b60065460009042101561063157600080fd5b61063c848484610e50565b949350505050565b6003546000908190819081906101009004600160a060020a0316331461066957600080fd5b60065442101561067857600080fd5b60015461068c90600263ffffffff610d2e16565b93506106b16101906106a586600363ffffffff610d2e16565b9063ffffffff610fc716565b92506106d1731117db9f1bf18c91233bff3bf2676137709463b384610d64565b506106f0736c137b489cee58c32fd8aec66eadc4b95955019884610d64565b5061070f73450023b2d943498949f0a9cdb1dbbd827844ee7884610d64565b5061072e7389080db76a555c42d7b43556e40acaafeb786cdd84610d64565b50610746610fa06106a58660c363ffffffff610d2e16565b915061076673cfc43257606c6a642d9438dcd82bf5b39a17dbab83610d64565b50610785734a8c5ea0619c40070f288c8ac289ef2f6bb87cff83610d64565b506107a473947251376eeafb0b0cd1bd47cc6056a5162beaf483610d64565b506107c37339a49403efb1e85f835a9e5dc82706b970d112e483610d64565b506107f773733bc7201261ac3c9508d20a811d99179304240a6107f260646106a588600263ffffffff610d2e16565b610d64565b50610826734b6716bd349dc65d07152844ed4990c2077cf1a76107f260646106a588601263ffffffff610d2e16565b5061083e6101906106a586600663ffffffff610d2e16565b905061085e73ef628a29668c00d5c7c4d915f07188dc96cf24eb82610d64565b5061087d73f28a5e85316e0c950f8703e2d99f15a7c077014c82610d64565b5061089c730c8c9dcfa4ed27e02349d536fe30957a32b44a0482610d64565b506108bb730a86174f18d145d3850501e2f4c160519207b82982610d64565b506108eb7335eeb3216e2ff669f2c1ff90a08a22f60e6c57286107f26127106106a588604b63ffffffff610d2e16565b5061091b7328dcc9af670252a5f76296207cfcc29b4e3c68d56107f26127106106a588604b63ffffffff610d2e16565b50610931856a90c1b1025e16710f000000610d64565b5061093a610fdc565b505050505050565b601281565b60065481565b6003546101009004600160a060020a0316331461096957600080fd5b60075460ff16151561097a57600080fd5b6007805460ff19169055565b6003546101009004600160a060020a031633146109a257600080fd5b60075460ff16156109b257600080fd5b6007805460ff19166001179055565b60075460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a1f57336000908152600260209081526040808320600160a060020a0388168452909152812055610a54565b610a2f818463ffffffff61102b16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60055481565b60045481565b6003546101009004600160a060020a031681565b60408051808201909152600381527f4d54460000000000000000000000000000000000000000000000000000000000602082015281565b6003546101009004600160a060020a03163314610b4857600080fd5b600654421015610b5757600080fd5b600354604051600160a060020a036101009092049190911690303180156108fc02916000818181858888f19350505050158015610b98573d6000803e3d6000fd5b50565b620186a090565b600654600090421015610bb457600080fd5b610bbe838361103d565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610bf9908363ffffffff610d5716565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6003546101009004600160a060020a03163314610ca557600080fd5b600160a060020a0381161515610cba57600080fd5b600354604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360038054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b6000821515610d3f57506000610603565b50818102818382811515610d4f57fe5b041461060357fe5b8181018281101561060357fe5b60035460009060ff1615610d7757600080fd5b600154610d8a908363ffffffff610d5716565b600155600160a060020a038316600090815260208190526040902054610db6908363ffffffff610d5716565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b6000600160a060020a0383161515610e6757600080fd5b600160a060020a038416600090815260208190526040902054821115610e8c57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610ebc57600080fd5b600160a060020a038416600090815260208190526040902054610ee5908363ffffffff61102b16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610f1a908363ffffffff610d5716565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f5c908363ffffffff61102b16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60008183811515610fd457fe5b049392505050565b60035460009060ff1615610fef57600080fd5b6003805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60008282111561103757fe5b50900390565b6000600160a060020a038316151561105457600080fd5b3360009081526020819052604090205482111561107057600080fd5b33600090815260208190526040902054611090908363ffffffff61102b16565b3360009081526020819052604080822092909255600160a060020a038516815220546110c2908363ffffffff610d5716565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001929150505600a165627a7a723058206c6af26a52e445733074008058fdf1e30604cf99be5436e4013d1de4eadfcd9e0029000000000000000000000000000000000000000000000000000000005b400280000000000000000000000000000000000000000000000000000000005b6cd580

Deployed Bytecode

0x60806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014857806306fdde0314610171578063095ea7b3146101fb57806318160ddd1461021f57806323548b8b1461024657806323b872dd1461025b5780632a1ef0ca14610285578063313ce567146102a65780633197cbb6146102d157806333e364cb146102e657806355367ba9146102fb5780635c975abb14610310578063661884631461032557806370a082311461034957806378e979251461036a57806388d12a4d1461037f5780638da5cb5b1461039457806395d89b41146103c55780639890220b146103da57806398d5fdca146103ef578063a9059cbb14610404578063d73dd62314610428578063dd62ed3e1461044c578063f2fde38b14610473575b61014633610494565b005b34801561015457600080fd5b5061015d610562565b604080519115158252519081900360200190f35b34801561017d57600080fd5b5061018661056b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c05781810151838201526020016101a8565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020757600080fd5b5061015d600160a060020a03600435166024356105a2565b34801561022b57600080fd5b50610234610609565b60408051918252519081900360200190f35b34801561025257600080fd5b5061023461060f565b34801561026757600080fd5b5061015d600160a060020a036004358116906024351660443561061f565b34801561029157600080fd5b50610146600160a060020a0360043516610644565b3480156102b257600080fd5b506102bb610942565b6040805160ff9092168252519081900360200190f35b3480156102dd57600080fd5b50610234610947565b3480156102f257600080fd5b5061014661094d565b34801561030757600080fd5b50610146610986565b34801561031c57600080fd5b5061015d6109c1565b34801561033157600080fd5b5061015d600160a060020a03600435166024356109ca565b34801561035557600080fd5b50610234600160a060020a0360043516610aba565b34801561037657600080fd5b50610234610ad5565b34801561038b57600080fd5b50610234610adb565b3480156103a057600080fd5b506103a9610ae1565b60408051600160a060020a039092168252519081900360200190f35b3480156103d157600080fd5b50610186610af5565b3480156103e657600080fd5b50610146610b2c565b3480156103fb57600080fd5b50610234610b9b565b34801561041057600080fd5b5061015d600160a060020a0360043516602435610ba2565b34801561043457600080fd5b5061015d600160a060020a0360043516602435610bc5565b34801561045857600080fd5b50610234600160a060020a0360043581169060243516610c5e565b34801561047f57600080fd5b50610146600160a060020a0360043516610c89565b60075460009060ff161580156104ac57506005544210155b80156104b9575060065442105b15156104c457600080fd5b6104dc6104cf610b9b565b349063ffffffff610d2e16565b6004549091506104f2903463ffffffff610d5716565b60045560408051348152602081018390528151600160a060020a038516927fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f928290030190a26105428282610d64565b506001546b04d8c55aefb8c05b5c000000101561055e57600080fd5b5050565b60035460ff1681565b60408051808201909152600f81527f4d696e74466c696e7420546f6b656e0000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60015490565b6b04d8c55aefb8c05b5c00000081565b60065460009042101561063157600080fd5b61063c848484610e50565b949350505050565b6003546000908190819081906101009004600160a060020a0316331461066957600080fd5b60065442101561067857600080fd5b60015461068c90600263ffffffff610d2e16565b93506106b16101906106a586600363ffffffff610d2e16565b9063ffffffff610fc716565b92506106d1731117db9f1bf18c91233bff3bf2676137709463b384610d64565b506106f0736c137b489cee58c32fd8aec66eadc4b95955019884610d64565b5061070f73450023b2d943498949f0a9cdb1dbbd827844ee7884610d64565b5061072e7389080db76a555c42d7b43556e40acaafeb786cdd84610d64565b50610746610fa06106a58660c363ffffffff610d2e16565b915061076673cfc43257606c6a642d9438dcd82bf5b39a17dbab83610d64565b50610785734a8c5ea0619c40070f288c8ac289ef2f6bb87cff83610d64565b506107a473947251376eeafb0b0cd1bd47cc6056a5162beaf483610d64565b506107c37339a49403efb1e85f835a9e5dc82706b970d112e483610d64565b506107f773733bc7201261ac3c9508d20a811d99179304240a6107f260646106a588600263ffffffff610d2e16565b610d64565b50610826734b6716bd349dc65d07152844ed4990c2077cf1a76107f260646106a588601263ffffffff610d2e16565b5061083e6101906106a586600663ffffffff610d2e16565b905061085e73ef628a29668c00d5c7c4d915f07188dc96cf24eb82610d64565b5061087d73f28a5e85316e0c950f8703e2d99f15a7c077014c82610d64565b5061089c730c8c9dcfa4ed27e02349d536fe30957a32b44a0482610d64565b506108bb730a86174f18d145d3850501e2f4c160519207b82982610d64565b506108eb7335eeb3216e2ff669f2c1ff90a08a22f60e6c57286107f26127106106a588604b63ffffffff610d2e16565b5061091b7328dcc9af670252a5f76296207cfcc29b4e3c68d56107f26127106106a588604b63ffffffff610d2e16565b50610931856a90c1b1025e16710f000000610d64565b5061093a610fdc565b505050505050565b601281565b60065481565b6003546101009004600160a060020a0316331461096957600080fd5b60075460ff16151561097a57600080fd5b6007805460ff19169055565b6003546101009004600160a060020a031633146109a257600080fd5b60075460ff16156109b257600080fd5b6007805460ff19166001179055565b60075460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a1f57336000908152600260209081526040808320600160a060020a0388168452909152812055610a54565b610a2f818463ffffffff61102b16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60055481565b60045481565b6003546101009004600160a060020a031681565b60408051808201909152600381527f4d54460000000000000000000000000000000000000000000000000000000000602082015281565b6003546101009004600160a060020a03163314610b4857600080fd5b600654421015610b5757600080fd5b600354604051600160a060020a036101009092049190911690303180156108fc02916000818181858888f19350505050158015610b98573d6000803e3d6000fd5b50565b620186a090565b600654600090421015610bb457600080fd5b610bbe838361103d565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610bf9908363ffffffff610d5716565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6003546101009004600160a060020a03163314610ca557600080fd5b600160a060020a0381161515610cba57600080fd5b600354604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360038054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b6000821515610d3f57506000610603565b50818102818382811515610d4f57fe5b041461060357fe5b8181018281101561060357fe5b60035460009060ff1615610d7757600080fd5b600154610d8a908363ffffffff610d5716565b600155600160a060020a038316600090815260208190526040902054610db6908363ffffffff610d5716565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b6000600160a060020a0383161515610e6757600080fd5b600160a060020a038416600090815260208190526040902054821115610e8c57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610ebc57600080fd5b600160a060020a038416600090815260208190526040902054610ee5908363ffffffff61102b16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610f1a908363ffffffff610d5716565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f5c908363ffffffff61102b16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60008183811515610fd457fe5b049392505050565b60035460009060ff1615610fef57600080fd5b6003805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60008282111561103757fe5b50900390565b6000600160a060020a038316151561105457600080fd5b3360009081526020819052604090205482111561107057600080fd5b33600090815260208190526040902054611090908363ffffffff61102b16565b3360009081526020819052604080822092909255600160a060020a038516815220546110c2908363ffffffff610d5716565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001929150505600a165627a7a723058206c6af26a52e445733074008058fdf1e30604cf99be5436e4013d1de4eadfcd9e0029

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

000000000000000000000000000000000000000000000000000000005b400280000000000000000000000000000000000000000000000000000000005b6cd580

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1530921600
Arg [1] : _endTime (uint256): 1533859200

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005b400280
Arg [1] : 000000000000000000000000000000000000000000000000000000005b6cd580


Swarm Source

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