ETH Price: $2,624.91 (-2.64%)

Token

Luckchemy (LUK)
 

Overview

Max Total Supply

1,000,000,000 LUK

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
628,262,455.94583383 LUK

Value
$0.00
0x18777aec0b231d1a4a9c66b51253088a03affdfc
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:
LuckchemyToken

Compiler Version
v0.4.22+commit.4cb486ee

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-04-23
*/

pragma solidity ^0.4.13;

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));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract Claimable is Ownable {
  address public pendingOwner;

  /**
   * @dev Modifier throws if called by any account other than the pendingOwner.
   */
  modifier onlyPendingOwner() {
    require(msg.sender == pendingOwner);
    _;
  }

  /**
   * @dev Allows the current owner to set the pendingOwner address.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) onlyOwner public {
    pendingOwner = newOwner;
  }

  /**
   * @dev Allows the pendingOwner address to finalize the transfer.
   */
  function claimOwnership() onlyPendingOwner public {
    OwnershipTransferred(owner, pendingOwner);
    owner = pendingOwner;
    pendingOwner = address(0);
  }
}

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

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

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

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

}

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);
    Transfer(_from, _to, _value);
    return true;
  }

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

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

}

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 {
    require(_value <= balances[msg.sender]);
    // 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

    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    Burn(burner, _value);
    Transfer(burner, address(0), _value);
  }
}

contract LuckchemyToken is BurnableToken, StandardToken, Claimable {

    bool public released = false;

    string public constant name = "Luckchemy";

    string public constant symbol = "LUK";

    uint8 public constant decimals = 8;

    uint256 public CROWDSALE_SUPPLY;

    uint256 public OWNERS_AND_PARTNERS_SUPPLY;

    address public constant OWNERS_AND_PARTNERS_ADDRESS = 0x603a535a1D7C5050021F9f5a4ACB773C35a67602;

    // Index of unique addresses
    uint256 public addressCount = 0;

    // Map of unique addresses
    mapping(uint256 => address) public addressMap;
    mapping(address => bool) public addressAvailabilityMap;

    //blacklist of addresses (product/developers addresses) that are not included in the final Holder lottery
    mapping(address => bool) public blacklist;

    // service agent for managing blacklist
    address public serviceAgent;

    event Release();
    event BlacklistAdd(address indexed addr);
    event BlacklistRemove(address indexed addr);

    /**
     * Do not transfer tokens until the crowdsale is over.
     *
     */
    modifier canTransfer() {
        require(released || msg.sender == owner);
        _;
    }

    /*
     * modifier which gives specific rights to serviceAgent
     */
    modifier onlyServiceAgent(){
        require(msg.sender == serviceAgent);
        _;
    }


    function LuckchemyToken() public {

        totalSupply_ = 1000000000 * (10 ** uint256(decimals));
        CROWDSALE_SUPPLY = 700000000 * (10 ** uint256(decimals));
        OWNERS_AND_PARTNERS_SUPPLY = 300000000 * (10 ** uint256(decimals));

        addAddressToUniqueMap(msg.sender);
        addAddressToUniqueMap(OWNERS_AND_PARTNERS_ADDRESS);

        balances[msg.sender] = CROWDSALE_SUPPLY;

        balances[OWNERS_AND_PARTNERS_ADDRESS] = OWNERS_AND_PARTNERS_SUPPLY;

        owner = msg.sender;

        Transfer(0x0, msg.sender, CROWDSALE_SUPPLY);

        Transfer(0x0, OWNERS_AND_PARTNERS_ADDRESS, OWNERS_AND_PARTNERS_SUPPLY);
    }

    function transfer(address _to, uint256 _value) public canTransfer returns (bool success) {
        //Add address to map of unique token owners
        addAddressToUniqueMap(_to);

        // Call StandardToken.transfer()
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public canTransfer returns (bool success) {
        //Add address to map of unique token owners
        addAddressToUniqueMap(_to);

        // Call StandardToken.transferForm()
        return super.transferFrom(_from, _to, _value);
    }

    /**
    *
    * Release the tokens to the public.
    * Can be called only by owner which should be the Crowdsale contract
    * Should be called if the crowdale is successfully finished
    *
    */
    function releaseTokenTransfer() public onlyOwner {
        released = true;
        Release();
    }

    /**
     * Add address to the black list.
     * Only service agent can do this
     */
    function addBlacklistItem(address _blackAddr) public onlyServiceAgent {
        blacklist[_blackAddr] = true;

        BlacklistAdd(_blackAddr);
    }

    /**
    * Remove address from the black list.
    * Only service agent can do this
    */
    function removeBlacklistItem(address _blackAddr) public onlyServiceAgent {
        delete blacklist[_blackAddr];
    }

    /**
    * Add address to unique map if it is not added
    */
    function addAddressToUniqueMap(address _addr) private returns (bool) {
        if (addressAvailabilityMap[_addr] == true) {
            return true;
        }

        addressAvailabilityMap[_addr] = true;
        addressMap[addressCount++] = _addr;

        return true;
    }

    /**
    * Get address by index from map of unique addresses
    */
    function getUniqueAddressByIndex(uint256 _addressIndex) public view returns (address) {
        return addressMap[_addressIndex];
    }

    /**
    * Change service agent
    */
    function changeServiceAgent(address _addr) public onlyOwner {
        serviceAgent = _addr;
    }

}

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":"","type":"address"}],"name":"addressAvailabilityMap","outputs":[{"name":"","type":"bool"}],"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"serviceAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"CROWDSALE_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addressIndex","type":"uint256"}],"name":"getUniqueAddressByIndex","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_blackAddr","type":"address"}],"name":"removeBlacklistItem","outputs":[],"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":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"OWNERS_AND_PARTNERS_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":true,"inputs":[{"name":"","type":"uint256"}],"name":"addressMap","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_blackAddr","type":"address"}],"name":"addBlacklistItem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"changeServiceAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"OWNERS_AND_PARTNERS_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","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":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Release","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"}],"name":"BlacklistAdd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"}],"name":"BlacklistRemove","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":"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"}]

60806040526004805460a060020a60ff0219169055600060075534801561002557600080fd5b5060038054600160a060020a03191633600160a060020a0381169190911790915567016345785d8a000060015566f8b0a10e470000600555666a94d74f43000060065561007a90640100000000610172810204565b506100a173603a535a1d7c5050021f9f5a4acb773c35a67602640100000000610172810204565b50600554600160a060020a03331660008181526020818152604080832085905560065473603a535a1d7c5050021f9f5a4acb773c35a6760284527f073d6e6f497a40a379d876b56c3789fb028c20da9e81861c56d7a1cb2d2c6e015560038054600160a060020a031916851790558051948552519293919260008051602061127f8339815191529281900390910190a3600654604080519182525173603a535a1d7c5050021f9f5a4acb773c35a676029160009160008051602061127f8339815191529181900360200190a36101f6565b600160a060020a03811660009081526009602052604081205460ff161515600114156101a0575060016101f1565b50600160a060020a0381166000818152600960209081526040808320805460ff1916600190811790915560078054808301909155845260089092529091208054600160a060020a0319169092179091555b919050565b61107a806102056000396000f30060806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610184578063095ea7b31461020e57806318160ddd146102465780631e899d671461026d57806323b872dd1461028e578063313ce567146102b857806342966c68146102e357806343a77530146102fd5780634e71e0c81461032e57806356ad9f57146103435780635f412d4f14610358578063620a6a8e1461036d57806366188463146103855780636d77e144146103a957806370a08231146103ca5780638da5cb5b146103eb57806395d89b411461040057806396132521146104155780639d80c8181461042a5780639dfaa2071461043f578063a9059cbb14610454578063bbf722a214610478578063c4bff12414610490578063cef5ed69146104b1578063d1c15acf146104d2578063d73dd623146104e7578063dd62ed3e1461050b578063e30c397814610532578063f2fde38b14610547578063f9f92be414610568575b600080fd5b34801561019057600080fd5b50610199610589565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d35781810151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021a57600080fd5b50610232600160a060020a03600435166024356105c0565b604080519115158252519081900360200190f35b34801561025257600080fd5b5061025b61062a565b60408051918252519081900360200190f35b34801561027957600080fd5b50610232600160a060020a0360043516610630565b34801561029a57600080fd5b50610232600160a060020a0360043581169060243516604435610645565b3480156102c457600080fd5b506102cd6106a7565b6040805160ff9092168252519081900360200190f35b3480156102ef57600080fd5b506102fb6004356106ac565b005b34801561030957600080fd5b506103126107a9565b60408051600160a060020a039092168252519081900360200190f35b34801561033a57600080fd5b506102fb6107b8565b34801561034f57600080fd5b5061025b610846565b34801561036457600080fd5b506102fb61084c565b34801561037957600080fd5b506103126004356108c7565b34801561039157600080fd5b50610232600160a060020a03600435166024356108e5565b3480156103b557600080fd5b506102fb600160a060020a03600435166109de565b3480156103d657600080fd5b5061025b600160a060020a0360043516610a1a565b3480156103f757600080fd5b50610312610a35565b34801561040c57600080fd5b50610199610a44565b34801561042157600080fd5b50610232610a7b565b34801561043657600080fd5b5061025b610a9c565b34801561044b57600080fd5b50610312610aa2565b34801561046057600080fd5b50610232600160a060020a0360043516602435610aba565b34801561048457600080fd5b50610312600435610b1a565b34801561049c57600080fd5b506102fb600160a060020a0360043516610b35565b3480156104bd57600080fd5b506102fb600160a060020a0360043516610b9c565b3480156104de57600080fd5b5061025b610be6565b3480156104f357600080fd5b50610232600160a060020a0360043516602435610bec565b34801561051757600080fd5b5061025b600160a060020a0360043581169060243516610c8e565b34801561053e57600080fd5b50610312610cb9565b34801561055357600080fd5b506102fb600160a060020a0360043516610cc8565b34801561057457600080fd5b50610232600160a060020a0360043516610d12565b60408051808201909152600981527f4c75636b6368656d790000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b60096020526000908152604090205460ff1681565b60045460009074010000000000000000000000000000000000000000900460ff168061067f575060035433600160a060020a039081169116145b151561068a57600080fd5b61069383610d27565b5061069f848484610db4565b949350505050565b600881565b600160a060020a0333166000908152602081905260408120548211156106d157600080fd5b5033600160a060020a0381166000908152602081905260409020546106f69083610f34565b600160a060020a038216600090815260208190526040902055600154610722908363ffffffff610f3416565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600b54600160a060020a031681565b60045433600160a060020a039081169116146107d357600080fd5b600454600354604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60055481565b60035433600160a060020a0390811691161461086757600080fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fdf3164c6542982869e04c28f5083f269f2b72ca4bff9a7e792f5c0422788bbc590600090a1565b600081815260086020526040902054600160a060020a03165b919050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561094257600160a060020a033381166000908152600260209081526040808320938816835292905290812055610979565b610952818463ffffffff610f3416565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600b5433600160a060020a039081169116146109f957600080fd5b600160a060020a03166000908152600a60205260409020805460ff19169055565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031681565b60408051808201909152600381527f4c554b0000000000000000000000000000000000000000000000000000000000602082015281565b60045474010000000000000000000000000000000000000000900460ff1681565b60075481565b73603a535a1d7c5050021f9f5a4acb773c35a6760281565b60045460009074010000000000000000000000000000000000000000900460ff1680610af4575060035433600160a060020a039081169116145b1515610aff57600080fd5b610b0883610d27565b50610b138383610f46565b9392505050565b600860205260009081526040902054600160a060020a031681565b600b5433600160a060020a03908116911614610b5057600080fd5b600160a060020a0381166000818152600a6020526040808220805460ff19166001179055517f7a03ea7eb40e97cfdee89cf6f18808a27ebeccb5e8c028b07d650c205e9345389190a250565b60035433600160a060020a03908116911614610bb757600080fd5b600b805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60065481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c24908363ffffffff61103f16565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b60035433600160a060020a03908116911614610ce357600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600a6020526000908152604090205460ff1681565b600160a060020a03811660009081526009602052604081205460ff16151560011415610d55575060016108e0565b50600160a060020a03166000818152600960209081526040808320805460ff191660019081179091556007805480830190915584526008909252909120805473ffffffffffffffffffffffffffffffffffffffff191690921790915590565b6000600160a060020a0383161515610dcb57600080fd5b600160a060020a038416600090815260208190526040902054821115610df057600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610e2357600080fd5b600160a060020a038416600090815260208190526040902054610e4c908363ffffffff610f3416565b600160a060020a038086166000908152602081905260408082209390935590851681522054610e81908363ffffffff61103f16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610ec7908363ffffffff610f3416565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610f4057fe5b50900390565b6000600160a060020a0383161515610f5d57600080fd5b600160a060020a033316600090815260208190526040902054821115610f8257600080fd5b600160a060020a033316600090815260208190526040902054610fab908363ffffffff610f3416565b600160a060020a033381166000908152602081905260408082209390935590851681522054610fe0908363ffffffff61103f16565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600082820183811015610b1357fe00a165627a7a723058205e6e3f27ed86edac2c9308e66f4cc8c5647e3226243fc2c7bb6668daabf982410029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610184578063095ea7b31461020e57806318160ddd146102465780631e899d671461026d57806323b872dd1461028e578063313ce567146102b857806342966c68146102e357806343a77530146102fd5780634e71e0c81461032e57806356ad9f57146103435780635f412d4f14610358578063620a6a8e1461036d57806366188463146103855780636d77e144146103a957806370a08231146103ca5780638da5cb5b146103eb57806395d89b411461040057806396132521146104155780639d80c8181461042a5780639dfaa2071461043f578063a9059cbb14610454578063bbf722a214610478578063c4bff12414610490578063cef5ed69146104b1578063d1c15acf146104d2578063d73dd623146104e7578063dd62ed3e1461050b578063e30c397814610532578063f2fde38b14610547578063f9f92be414610568575b600080fd5b34801561019057600080fd5b50610199610589565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d35781810151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021a57600080fd5b50610232600160a060020a03600435166024356105c0565b604080519115158252519081900360200190f35b34801561025257600080fd5b5061025b61062a565b60408051918252519081900360200190f35b34801561027957600080fd5b50610232600160a060020a0360043516610630565b34801561029a57600080fd5b50610232600160a060020a0360043581169060243516604435610645565b3480156102c457600080fd5b506102cd6106a7565b6040805160ff9092168252519081900360200190f35b3480156102ef57600080fd5b506102fb6004356106ac565b005b34801561030957600080fd5b506103126107a9565b60408051600160a060020a039092168252519081900360200190f35b34801561033a57600080fd5b506102fb6107b8565b34801561034f57600080fd5b5061025b610846565b34801561036457600080fd5b506102fb61084c565b34801561037957600080fd5b506103126004356108c7565b34801561039157600080fd5b50610232600160a060020a03600435166024356108e5565b3480156103b557600080fd5b506102fb600160a060020a03600435166109de565b3480156103d657600080fd5b5061025b600160a060020a0360043516610a1a565b3480156103f757600080fd5b50610312610a35565b34801561040c57600080fd5b50610199610a44565b34801561042157600080fd5b50610232610a7b565b34801561043657600080fd5b5061025b610a9c565b34801561044b57600080fd5b50610312610aa2565b34801561046057600080fd5b50610232600160a060020a0360043516602435610aba565b34801561048457600080fd5b50610312600435610b1a565b34801561049c57600080fd5b506102fb600160a060020a0360043516610b35565b3480156104bd57600080fd5b506102fb600160a060020a0360043516610b9c565b3480156104de57600080fd5b5061025b610be6565b3480156104f357600080fd5b50610232600160a060020a0360043516602435610bec565b34801561051757600080fd5b5061025b600160a060020a0360043581169060243516610c8e565b34801561053e57600080fd5b50610312610cb9565b34801561055357600080fd5b506102fb600160a060020a0360043516610cc8565b34801561057457600080fd5b50610232600160a060020a0360043516610d12565b60408051808201909152600981527f4c75636b6368656d790000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015490565b60096020526000908152604090205460ff1681565b60045460009074010000000000000000000000000000000000000000900460ff168061067f575060035433600160a060020a039081169116145b151561068a57600080fd5b61069383610d27565b5061069f848484610db4565b949350505050565b600881565b600160a060020a0333166000908152602081905260408120548211156106d157600080fd5b5033600160a060020a0381166000908152602081905260409020546106f69083610f34565b600160a060020a038216600090815260208190526040902055600154610722908363ffffffff610f3416565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600b54600160a060020a031681565b60045433600160a060020a039081169116146107d357600080fd5b600454600354604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60055481565b60035433600160a060020a0390811691161461086757600080fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fdf3164c6542982869e04c28f5083f269f2b72ca4bff9a7e792f5c0422788bbc590600090a1565b600081815260086020526040902054600160a060020a03165b919050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561094257600160a060020a033381166000908152600260209081526040808320938816835292905290812055610979565b610952818463ffffffff610f3416565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600b5433600160a060020a039081169116146109f957600080fd5b600160a060020a03166000908152600a60205260409020805460ff19169055565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031681565b60408051808201909152600381527f4c554b0000000000000000000000000000000000000000000000000000000000602082015281565b60045474010000000000000000000000000000000000000000900460ff1681565b60075481565b73603a535a1d7c5050021f9f5a4acb773c35a6760281565b60045460009074010000000000000000000000000000000000000000900460ff1680610af4575060035433600160a060020a039081169116145b1515610aff57600080fd5b610b0883610d27565b50610b138383610f46565b9392505050565b600860205260009081526040902054600160a060020a031681565b600b5433600160a060020a03908116911614610b5057600080fd5b600160a060020a0381166000818152600a6020526040808220805460ff19166001179055517f7a03ea7eb40e97cfdee89cf6f18808a27ebeccb5e8c028b07d650c205e9345389190a250565b60035433600160a060020a03908116911614610bb757600080fd5b600b805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60065481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c24908363ffffffff61103f16565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b60035433600160a060020a03908116911614610ce357600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600a6020526000908152604090205460ff1681565b600160a060020a03811660009081526009602052604081205460ff16151560011415610d55575060016108e0565b50600160a060020a03166000818152600960209081526040808320805460ff191660019081179091556007805480830190915584526008909252909120805473ffffffffffffffffffffffffffffffffffffffff191690921790915590565b6000600160a060020a0383161515610dcb57600080fd5b600160a060020a038416600090815260208190526040902054821115610df057600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610e2357600080fd5b600160a060020a038416600090815260208190526040902054610e4c908363ffffffff610f3416565b600160a060020a038086166000908152602081905260408082209390935590851681522054610e81908363ffffffff61103f16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610ec7908363ffffffff610f3416565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610f4057fe5b50900390565b6000600160a060020a0383161515610f5d57600080fd5b600160a060020a033316600090815260208190526040902054821115610f8257600080fd5b600160a060020a033316600090815260208190526040902054610fab908363ffffffff610f3416565b600160a060020a033381166000908152602081905260408082209390935590851681522054610fe0908363ffffffff61103f16565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600082820183811015610b1357fe00a165627a7a723058205e6e3f27ed86edac2c9308e66f4cc8c5647e3226243fc2c7bb6668daabf982410029

Swarm Source

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