ETH Price: $2,357.53 (-0.33%)

Token

FLiK (FLIK)
 

Overview

Max Total Supply

600,000,000 FLIK

Holders

677 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 14 Decimals)

Balance
48.56058394 FLIK

Value
$0.00
0x854f2922C387C0d11698378f46DAB496433E449A
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:
FLiK

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.13;

contract owned {
    address public owner;

    function owned() {
        owner = msg.sender;
    }

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

    function transferOwnership(address newOwner) onlyOwner {
        owner = newOwner;
    }
}

contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }

contract FLiK is owned {
    /* Public variables of the token */
    string public standard = 'FLiK 0.1';
    string public name;
    string public symbol;
    uint8 public decimals = 14;
    uint256 public totalSupply;
    bool public locked;
    uint256 public icoSince;
    uint256 public icoTill;
    
    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);
    event IcoFinished();

    uint256 public buyPrice = 1;

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function FLiK(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol,
        uint256 _icoSince,
        uint256 _icoTill
    ) {
        totalSupply = initialSupply;
        
        balanceOf[this] = totalSupply / 100 * 90;           // Give the smart contract 90% of initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes

        balanceOf[msg.sender] = totalSupply / 100 * 10;     // Give 10% of total supply to contract owner

        Transfer(this, msg.sender, balanceOf[msg.sender]);

        if(_icoSince == 0 && _icoTill == 0) {
            icoSince = 1503187200;
            icoTill = 1505865600;
        }
        else {
            icoSince = _icoSince;
            icoTill = _icoTill;
        }
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        require(locked == false);                            // Check if smart contract is locked

        require(balanceOf[msg.sender] >= _value);            // Check if the sender has enough
        require(balanceOf[_to] + _value > balanceOf[_to]);   // Check for overflows

        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value) returns (bool success) {
        allowance[msg.sender][_spender] = _value;

        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);

        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(locked == false);                            // Check if smart contract is locked
        require(_value > 0);
        require(balanceOf[_from] >= _value);                  // Check if the sender has enough
        require(balanceOf[_to] + _value > balanceOf[_to]);   // Check for overflows
        require(_value <= allowance[_from][msg.sender]);     // Check allowance

        balanceOf[_from] -= _value;                          // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        allowance[_from][msg.sender] -= _value;
        Transfer(_from, _to, _value);

        return true;
    }

    function buy(uint256 ethers, uint256 time) internal {
        require(locked == false);                            // Check if smart contract is locked
        require(time >= icoSince && time <= icoTill);        // check for ico dates
        require(ethers > 0);                                 // check if ethers is greater than zero

        uint amount = ethers / buyPrice;

        require(balanceOf[this] >= amount);                  // check if smart contract has sufficient number of tokens

        balanceOf[msg.sender] += amount;
        balanceOf[this] -= amount;

        Transfer(this, msg.sender, amount);
    }

    function () payable {
        buy(msg.value, now);
    }

    function internalIcoFinished(uint256 time) internal returns (bool) {
        if(time > icoTill) {
            uint256 unsoldTokens = balanceOf[this];

            balanceOf[owner] += unsoldTokens;
            balanceOf[this] = 0;

            Transfer(this, owner, unsoldTokens);

            IcoFinished();

            return true;
        }

        return false;
    }

    /* 0x356e2927 */
    function icoFinished() onlyOwner {
        internalIcoFinished(now);
    }

    /* 0xd271011d */
    function transferEthers() onlyOwner {
        owner.transfer(this.balance);
    }

    function setBuyPrice(uint256 _buyPrice) onlyOwner {
        buyPrice = _buyPrice;
    }

    /*
       locking: 0x211e28b60000000000000000000000000000000000000000000000000000000000000001
       unlocking: 0x211e28b60000000000000000000000000000000000000000000000000000000000000000
    */
    function setLocked(bool _locked) onlyOwner {
        locked = _locked;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoTill","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_locked","type":"bool"}],"name":"setLocked","outputs":[],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"icoFinished","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoSince","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_buyPrice","type":"uint256"}],"name":"setBuyPrice","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"locked","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"transferEthers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"_icoSince","type":"uint256"},{"name":"_icoTill","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"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"},{"anonymous":false,"inputs":[],"name":"IcoFinished","type":"event"}]

606060405260408051908101604052600881527f464c694b20302e31000000000000000000000000000000000000000000000000602082015260019080516200004d929160200190620001c0565b506004805460ff1916600e1790556001600b5534156200006c57600080fd5b604051620010ab380380620010ab8339810160405280805191906020018051820191906020018051820191906020018051919060200180519150505b5b60008054600160a060020a03191633600160a060020a03161790555b60058590556064855b30600160a060020a03166000908152600960205260409020919004605a029055600284805162000103929160200190620001c0565b50600383805162000119929160200190620001c0565b506005546064905b33600160a060020a039081166000818152600960205260409081902094909304600a02938490559230909116917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a3811580156200018d575080155b15620001a957635998d1006007556359c1af80600855620001b4565b600782905560088190555b5b50505050506200026a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020357805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023357825182559160200191906001019062000216565b5b506200024292915062000246565b5090565b6200026791905b808211156200024257600081556001016200024d565b5090565b90565b610e31806200027a6000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012d578063095ea7b3146101b857806318160ddd146101ee5780631e72444714610213578063211e28b61461023857806323b872dd14610252578063313ce5671461028e578063356e2927146102b75780633f1b1267146102cc5780635a3b7e42146102f157806363ae8d6c1461037c57806370a08231146103945780638620410b146103c55780638da5cb5b146103ea57806395d89b4114610419578063a9059cbb146104a4578063cae9ca51146104c8578063cf30901214610541578063d271011d14610568578063dd62ed3e1461057d578063f2fde38b146105b4575b61012b5b61012834426105d5565b5b565b005b341561013857600080fd5b6101406106a7565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d5780820151818401525b602001610164565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c357600080fd5b6101da600160a060020a0360043516602435610745565b604051901515815260200160405180910390f35b34156101f957600080fd5b610201610776565b60405190815260200160405180910390f35b341561021e57600080fd5b61020161077c565b60405190815260200160405180910390f35b341561024357600080fd5b61012b6004351515610782565b005b341561025d57600080fd5b6101da600160a060020a03600435811690602435166044356107b0565b604051901515815260200160405180910390f35b341561029957600080fd5b6102a16108cc565b60405160ff909116815260200160405180910390f35b34156102c257600080fd5b61012b6108d5565b005b34156102d757600080fd5b6102016108fe565b60405190815260200160405180910390f35b34156102fc57600080fd5b610140610904565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d5780820151818401525b602001610164565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038757600080fd5b61012b6004356109a2565b005b341561039f57600080fd5b610201600160a060020a03600435166109c7565b60405190815260200160405180910390f35b34156103d057600080fd5b6102016109d9565b60405190815260200160405180910390f35b34156103f557600080fd5b6103fd6109df565b604051600160a060020a03909116815260200160405180910390f35b341561042457600080fd5b6101406109ee565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d5780820151818401525b602001610164565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104af57600080fd5b61012b600160a060020a0360043516602435610a8c565b005b34156104d357600080fd5b6101da60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b4095505050505050565b604051901515815260200160405180910390f35b341561054c57600080fd5b6101da610c74565b604051901515815260200160405180910390f35b341561057357600080fd5b61012b610c7d565b005b341561058857600080fd5b610201600160a060020a0360043581169060243516610cd5565b60405190815260200160405180910390f35b34156105bf57600080fd5b61012b600160a060020a0360043516610cf2565b005b60065460009060ff16156105e857600080fd5b60075482101580156105fc57506008548211155b151561060757600080fd5b6000831161061457600080fd5b600b548381151561062157fe5b600160a060020a03301660009081526009602052604090205491900491508190101561064c57600080fd5b600160a060020a033381166000818152600960205260408082208054860190553090931680825290839020805485900390559091600080516020610de68339815191529084905190815260200160405180910390a35b505050565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b505050505081565b600160a060020a033381166000908152600a6020908152604080832093861683529290522081905560015b92915050565b60055481565b60085481565b60005433600160a060020a0390811691161461079d57600080fd5b6006805460ff19168215151790555b5b50565b60065460009060ff16156107c357600080fd5b600082116107d057600080fd5b600160a060020a038416600090815260096020526040902054829010156107f657600080fd5b600160a060020a0383166000908152600960205260409020548281011161081c57600080fd5b600160a060020a038085166000908152600a60209081526040808320339094168352929052205482111561084f57600080fd5b600160a060020a03808516600081815260096020908152604080832080548890039055878516808452818420805489019055848452600a8352818420339096168452949091529081902080548690039055600080516020610de68339815191529085905190815260200160405180910390a35060015b9392505050565b60045460ff1681565b60005433600160a060020a039081169116146108f057600080fd5b6107ac42610d3a565b505b5b565b60075481565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b505050505081565b60005433600160a060020a039081169116146109bd57600080fd5b600b8190555b5b50565b60096020526000908152604090205481565b600b5481565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b505050505081565b60065460ff1615610a9c57600080fd5b600160a060020a03331660009081526009602052604090205481901015610ac257600080fd5b600160a060020a03821660009081526009602052604090205481810111610ae857600080fd5b600160a060020a03338116600081815260096020526040808220805486900390559285168082529083902080548501905591600080516020610de68339815191529084905190815260200160405180910390a35b5050565b600083610b4d8185610745565b15610c6b5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c045780820151818401525b602001610beb565b50505050905090810190601f168015610c315780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610c5257600080fd5b6102c65a03f11515610c6357600080fd5b505050600191505b5b509392505050565b60065460ff1681565b60005433600160a060020a03908116911614610c9857600080fd5b600054600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561012857600080fd5b5b5b565b600a60209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610d0d57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600080600854831115610dda5750600160a060020a0330811660008181526009602052604080822080548354861684528284208054820190558484529083905591549193919091169190600080516020610de68339815191529084905190815260200160405180910390a37fd26bc13d5a30cb67cbea6d0927234e897dd66eb4cab3db0d63181509fea7802660405160405180910390a160019150610ddf565b600091505b509190505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820832facb5089179350b1ce6b8b4dc9783691d6464b1dd5febe98597a40c5f3e2b0029000000000000000000000000000000000000000000000cb49b44ba602d80000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000599995e00000000000000000000000000000000000000000000000000000000059ea01600000000000000000000000000000000000000000000000000000000000000004464c694b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464c494b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012d578063095ea7b3146101b857806318160ddd146101ee5780631e72444714610213578063211e28b61461023857806323b872dd14610252578063313ce5671461028e578063356e2927146102b75780633f1b1267146102cc5780635a3b7e42146102f157806363ae8d6c1461037c57806370a08231146103945780638620410b146103c55780638da5cb5b146103ea57806395d89b4114610419578063a9059cbb146104a4578063cae9ca51146104c8578063cf30901214610541578063d271011d14610568578063dd62ed3e1461057d578063f2fde38b146105b4575b61012b5b61012834426105d5565b5b565b005b341561013857600080fd5b6101406106a7565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d5780820151818401525b602001610164565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c357600080fd5b6101da600160a060020a0360043516602435610745565b604051901515815260200160405180910390f35b34156101f957600080fd5b610201610776565b60405190815260200160405180910390f35b341561021e57600080fd5b61020161077c565b60405190815260200160405180910390f35b341561024357600080fd5b61012b6004351515610782565b005b341561025d57600080fd5b6101da600160a060020a03600435811690602435166044356107b0565b604051901515815260200160405180910390f35b341561029957600080fd5b6102a16108cc565b60405160ff909116815260200160405180910390f35b34156102c257600080fd5b61012b6108d5565b005b34156102d757600080fd5b6102016108fe565b60405190815260200160405180910390f35b34156102fc57600080fd5b610140610904565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d5780820151818401525b602001610164565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038757600080fd5b61012b6004356109a2565b005b341561039f57600080fd5b610201600160a060020a03600435166109c7565b60405190815260200160405180910390f35b34156103d057600080fd5b6102016109d9565b60405190815260200160405180910390f35b34156103f557600080fd5b6103fd6109df565b604051600160a060020a03909116815260200160405180910390f35b341561042457600080fd5b6101406109ee565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d5780820151818401525b602001610164565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104af57600080fd5b61012b600160a060020a0360043516602435610a8c565b005b34156104d357600080fd5b6101da60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b4095505050505050565b604051901515815260200160405180910390f35b341561054c57600080fd5b6101da610c74565b604051901515815260200160405180910390f35b341561057357600080fd5b61012b610c7d565b005b341561058857600080fd5b610201600160a060020a0360043581169060243516610cd5565b60405190815260200160405180910390f35b34156105bf57600080fd5b61012b600160a060020a0360043516610cf2565b005b60065460009060ff16156105e857600080fd5b60075482101580156105fc57506008548211155b151561060757600080fd5b6000831161061457600080fd5b600b548381151561062157fe5b600160a060020a03301660009081526009602052604090205491900491508190101561064c57600080fd5b600160a060020a033381166000818152600960205260408082208054860190553090931680825290839020805485900390559091600080516020610de68339815191529084905190815260200160405180910390a35b505050565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b505050505081565b600160a060020a033381166000908152600a6020908152604080832093861683529290522081905560015b92915050565b60055481565b60085481565b60005433600160a060020a0390811691161461079d57600080fd5b6006805460ff19168215151790555b5b50565b60065460009060ff16156107c357600080fd5b600082116107d057600080fd5b600160a060020a038416600090815260096020526040902054829010156107f657600080fd5b600160a060020a0383166000908152600960205260409020548281011161081c57600080fd5b600160a060020a038085166000908152600a60209081526040808320339094168352929052205482111561084f57600080fd5b600160a060020a03808516600081815260096020908152604080832080548890039055878516808452818420805489019055848452600a8352818420339096168452949091529081902080548690039055600080516020610de68339815191529085905190815260200160405180910390a35060015b9392505050565b60045460ff1681565b60005433600160a060020a039081169116146108f057600080fd5b6107ac42610d3a565b505b5b565b60075481565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b505050505081565b60005433600160a060020a039081169116146109bd57600080fd5b600b8190555b5b50565b60096020526000908152604090205481565b600b5481565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b505050505081565b60065460ff1615610a9c57600080fd5b600160a060020a03331660009081526009602052604090205481901015610ac257600080fd5b600160a060020a03821660009081526009602052604090205481810111610ae857600080fd5b600160a060020a03338116600081815260096020526040808220805486900390559285168082529083902080548501905591600080516020610de68339815191529084905190815260200160405180910390a35b5050565b600083610b4d8185610745565b15610c6b5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c045780820151818401525b602001610beb565b50505050905090810190601f168015610c315780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610c5257600080fd5b6102c65a03f11515610c6357600080fd5b505050600191505b5b509392505050565b60065460ff1681565b60005433600160a060020a03908116911614610c9857600080fd5b600054600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561012857600080fd5b5b5b565b600a60209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610d0d57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600080600854831115610dda5750600160a060020a0330811660008181526009602052604080822080548354861684528284208054820190558484529083905591549193919091169190600080516020610de68339815191529084905190815260200160405180910390a37fd26bc13d5a30cb67cbea6d0927234e897dd66eb4cab3db0d63181509fea7802660405160405180910390a160019150610ddf565b600091505b509190505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820832facb5089179350b1ce6b8b4dc9783691d6464b1dd5febe98597a40c5f3e2b0029

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

000000000000000000000000000000000000000000000cb49b44ba602d80000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000599995e00000000000000000000000000000000000000000000000000000000059ea01600000000000000000000000000000000000000000000000000000000000000004464c694b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464c494b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 60000000000000000000000
Arg [1] : tokenName (string): FLiK
Arg [2] : tokenSymbol (string): FLIK
Arg [3] : _icoSince (uint256): 1503237600
Arg [4] : _icoTill (uint256): 1508508000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000cb49b44ba602d800000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 00000000000000000000000000000000000000000000000000000000599995e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000059ea0160
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 464c694b00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 464c494b00000000000000000000000000000000000000000000000000000000


Swarm Source

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