Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
280,000,000 F2K
Holders
1,354
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
F2KToken
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-12-18 */ pragma solidity ^0.4.24; /** * @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. */ constructor() 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) onlyOwner public { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { uint256 public totalSupply; /** * @param _owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address _owner) public constant returns (uint256 balance); /** * @notice send `_value` token to `_to` from `msg.sender` * @param _to The address of the recipient * @param _value The amount of token to be transferred * @return Whether the transfer was successful or not */ function transfer(address _to, uint256 _value) public returns (bool success); /** * @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from` * @param _from The address of the sender * @param _to The address of the recipient * @param _value The amount of token to be transferred * @return Whether the transfer was successful or not */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); /** * @notice `msg.sender` approves `_spender` to spend `_value` tokens * @param _spender The address of the account able to transfer the tokens * @param _value The amount of tokens to be approved for transfer * @return Whether the approval was successful or not */ function approve(address _spender, uint256 _value) public returns (bool success); /** * @param _owner The address of the account owning tokens * @param _spender The address of the account able to transfer the tokens * @return Amount of remaining tokens allowed to spent */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining); /** * MUST trigger when tokens are transferred, including zero value transfers. */ event Transfer(address indexed _from, address indexed _to, uint256 _value); /** * MUST trigger on any successful call to approve(address _spender, uint256 _value) */ event Approval(address indexed _owner, address indexed _spender, uint256 _value); } library SafeMath { /** * @notice 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; } /** * @notice 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; } /** * @notice 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; } } contract F2KToken is ERC20, Ownable { // Adding safe calculation methods to uint256 using SafeMath for uint256; // Defining balances mapping (ERC20) mapping(address => uint256) balances; // Defining allowances mapping (ERC20) mapping(address => mapping(address => uint256)) allowed; // Defining addresses allowed to bypass global freeze mapping(address => bool) public freezeBypassing; // Defining addresses that have custom lockups periods mapping(address => uint256) public lockupExpirations; // Token Symbol string public constant symbol = "F2K"; // Token Name string public constant name = "Farm2Kitchen Token"; // Token Decimals uint8 public constant decimals = 2; // global freeze one-way toggle bool public tradingLive; // Total supply of token uint256 public totalSupply; constructor() public { totalSupply = 280000000 * (10 ** uint256(decimals)); balances[owner] = totalSupply; emit Transfer(address(0), owner, totalSupply); } /** * @notice Event for Lockup period applied to address * @param owner Specific lockup address target * @param until Timestamp when lockup end (seconds since epoch) */ event LockupApplied( address indexed owner, uint256 until ); /** * @notice distribute tokens to an address * @param to Who will receive the token * @param tokenAmount How much token will be sent */ function distribute( address to, uint256 tokenAmount ) public onlyOwner { require(tokenAmount > 0); require(tokenAmount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(tokenAmount); balances[to] = balances[to].add(tokenAmount); emit Transfer(owner, to, tokenAmount); } /** * @notice Prevents the given wallet to transfer its token for the given duration. * This methods resets the lock duration if one is already in place. * @param wallet The wallet address to lock * @param duration How much time is the token locked from now (in sec) */ function lockup( address wallet, uint256 duration ) public onlyOwner { uint256 lockupExpiration = duration.add(now); lockupExpirations[wallet] = lockupExpiration; emit LockupApplied(wallet, lockupExpiration); } /** * @notice choose if an address is allowed to bypass the global freeze * @param to Target of the freeze bypass status update * @param status New status (if true will bypass) */ function setBypassStatus( address to, bool status ) public onlyOwner { freezeBypassing[to] = status; } /** * @notice One-way toggle to allow trading (remove global freeze) * @param status New status (if true will bypass) */ function setTrading( bool status ) public onlyOwner { tradingLive = status; } /** * @notice Modifier that checks if the conditions are met for a token to be * tradable. To be so, it must : * - Global Freeze must be removed, or, "from" must be allowed to bypass it * - "from" must not be in a custom lockup period * @param from Who to check the status */ modifier tradable(address from) { require( (tradingLive || freezeBypassing[from]) && //solium-disable-line indentation (lockupExpirations[from] <= now) ); _; } /** * @notice Return the total supply of the token * @dev This function is part of the ERC20 standard * @return {"totalSupply": "The token supply"} */ function totalSupply() public view returns (uint256 supply) { return totalSupply; } /** * @notice Get the token balance of `owner` * @dev This function is part of the ERC20 standard * @param owner The wallet to get the balance of * @return {"balance": "The balance of `owner`"} */ function balanceOf( address owner ) public view returns (uint256 balance) { return balances[owner]; } /** * @notice Transfers `amount` from msg.sender to `destination` * @dev This function is part of the ERC20 standard * @param to The address that receives the tokens * @param tokenAmount Token amount to transfer * @return {"success": "If the operation completed successfuly"} */ function transfer( address to, uint256 tokenAmount ) public tradable(msg.sender) returns (bool success) { require(tokenAmount > 0); require(tokenAmount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(tokenAmount); balances[to] = balances[to].add(tokenAmount); emit Transfer(msg.sender, to, tokenAmount); return true; } /** * @notice Transfer tokens from an address to another one * through an allowance made before * @dev This function is part of the ERC20 standard * @param from The address that sends the tokens * @param to The address that receives the tokens * @param tokenAmount Token amount to transfer * @return {"success": "If the operation completed successfuly"} */ function transferFrom( address from, address to, uint256 tokenAmount ) public tradable(from) returns (bool success) { require(tokenAmount > 0); require(tokenAmount <= balances[from]); require(tokenAmount <= allowed[from][msg.sender]); balances[from] = balances[from].sub(tokenAmount); allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokenAmount); balances[to] = balances[to].add(tokenAmount); emit Transfer(from, to, tokenAmount); return true; } /** * @notice Approve an address to send `tokenAmount` tokens to `msg.sender` (make an allowance) * @dev This function is part of the ERC20 standard * @param spender The allowed address * @param tokenAmount The maximum amount allowed to spend * @return {"success": "If the operation completed successfuly"} */ function approve( address spender, uint256 tokenAmount ) public returns (bool success) { allowed[msg.sender][spender] = tokenAmount; emit Approval(msg.sender, spender, tokenAmount); return true; } /** * @notice Increase the amount of tokens that an owner allowed to a spender. * To increment allowed value it is better to use this function to avoid double withdrawal attack. * @param spender The address which will spend the funds. * @param tokenAmount The amount of tokens to increase the allowance by. */ function increaseApproval( address spender, uint tokenAmount ) public returns (bool) { allowed[msg.sender][spender] = (allowed[msg.sender][spender].add(tokenAmount)); emit Approval(msg.sender, spender, allowed[msg.sender][spender]); return true; } /** * @notice Decrease the amount of tokens that an owner allowed to a spender. * To decrease the allowed value it is better to use this function to avoid double withdrawal attack. * @param spender The address which will spend the funds. * @param tokenAmount The amount of tokens to decrease the allowance by. */ function decreaseApproval( address spender, uint tokenAmount ) public returns (bool) { uint oldValue = allowed[msg.sender][spender]; if (tokenAmount > oldValue) { allowed[msg.sender][spender] = 0; } else { allowed[msg.sender][spender] = oldValue.sub(tokenAmount); } emit Approval(msg.sender, spender, allowed[msg.sender][spender]); return true; } /** * @notice Get the remaining allowance for a spender on a given address * @dev This function is part of the ERC20 standard * @param tokenOwner The address that owns the tokens * @param spender The spender * @return {"remaining": "The amount of tokens remaining in the allowance"} */ function allowance( address tokenOwner, address spender ) public view returns (uint256 remaining) { return allowed[tokenOwner][spender]; } function burn( uint tokenAmount ) public onlyOwner returns (bool) { require(balances[msg.sender] >= tokenAmount); balances[msg.sender] = balances[msg.sender].sub(tokenAmount); totalSupply = totalSupply.sub(tokenAmount); return true; } /** * @notice Permits to withdraw any ERC20 tokens that have been mistakingly sent to this contract * @param tokenAddress The received ERC20 token address * @param tokenAmount The amount of ERC20 tokens to withdraw from this contract * @return {"success": "If the operation completed successfuly"} */ function withdrawERC20Token( address tokenAddress, uint256 tokenAmount ) public onlyOwner returns (bool success) { return ERC20(tokenAddress).transfer(owner, tokenAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tradingLive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"supply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenAmount","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":"tokenAmount","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"status","type":"bool"}],"name":"setBypassStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockupExpirations","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokenAmount","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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeBypassing","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"status","type":"bool"}],"name":"setTrading","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"withdrawERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"wallet","type":"address"},{"name":"duration","type":"uint256"}],"name":"lockup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"distribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"until","type":"uint256"}],"name":"LockupApplied","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":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","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"}]
Contract Creation Code
608060405234801561001057600080fd5b5060018054600160a060020a0319163317808255640684ee18006007819055600160a060020a039182166000908152600260209081526040808320849055945485519384529451949093169390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a3610e97806100956000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012c578063095ea7b3146101b657806311704f52146101ee57806318160ddd1461020357806323b872dd1461022a578063313ce5671461025457806342966c681461027f5780634fa88720146102975780635312ebba146102bf57806366188463146102e057806370a08231146103045780638c564ebf146103255780638da5cb5b146103465780638f70ccf714610377578063928d81c11461039157806395d89b41146103b5578063a7b86824146103ca578063a9059cbb146103ee578063d73dd62314610412578063dd62ed3e14610436578063f2fde38b1461045d578063fb9321081461047e575b600080fd5b34801561013857600080fd5b506101416104a2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017b578181015183820152602001610163565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c257600080fd5b506101da600160a060020a03600435166024356104d9565b604080519115158252519081900360200190f35b3480156101fa57600080fd5b506101da61053f565b34801561020f57600080fd5b50610218610548565b60408051918252519081900360200190f35b34801561023657600080fd5b506101da600160a060020a036004358116906024351660443561054e565b34801561026057600080fd5b50610269610719565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b506101da60043561071e565b3480156102a357600080fd5b506102bd600160a060020a036004351660243515156107a2565b005b3480156102cb57600080fd5b50610218600160a060020a03600435166107e4565b3480156102ec57600080fd5b506101da600160a060020a03600435166024356107f6565b34801561031057600080fd5b50610218600160a060020a03600435166108e6565b34801561033157600080fd5b506101da600160a060020a0360043516610901565b34801561035257600080fd5b5061035b610916565b60408051600160a060020a039092168252519081900360200190f35b34801561038357600080fd5b506102bd6004351515610925565b34801561039d57600080fd5b506101da600160a060020a036004351660243561094f565b3480156103c157600080fd5b50610141610a0b565b3480156103d657600080fd5b506102bd600160a060020a0360043516602435610a42565b3480156103fa57600080fd5b506101da600160a060020a0360043516602435610ac7565b34801561041e57600080fd5b506101da600160a060020a0360043516602435610bfe565b34801561044257600080fd5b50610218600160a060020a0360043581169060243516610c97565b34801561046957600080fd5b506102bd600160a060020a0360043516610cc2565b34801561048a57600080fd5b506102bd600160a060020a0360043516602435610d57565b60408051808201909152601281527f4661726d324b69746368656e20546f6b656e0000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60065460ff1681565b60075490565b600654600090849060ff168061057c5750600160a060020a03811660009081526004602052604090205460ff165b80156105a05750600160a060020a0381166000908152600560205260409020544210155b15156105ab57600080fd5b600083116105b857600080fd5b600160a060020a0385166000908152600260205260409020548311156105dd57600080fd5b600160a060020a038516600090815260036020908152604080832033845290915290205483111561060d57600080fd5b600160a060020a038516600090815260026020526040902054610636908463ffffffff610e4616565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610673908463ffffffff610e4616565b600160a060020a0380871660009081526003602090815260408083203384528252808320949094559187168152600290915220546106b7908463ffffffff610e5816565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b600281565b600154600090600160a060020a0316331461073857600080fd5b3360009081526002602052604090205482111561075457600080fd5b33600090815260026020526040902054610774908363ffffffff610e4616565b33600090815260026020526040902055600754610797908363ffffffff610e4616565b600755506001919050565b600154600160a060020a031633146107b957600080fd5b600160a060020a03919091166000908152600460205260409020805460ff1916911515919091179055565b60056020526000908152604090205481565b336000908152600360209081526040808320600160a060020a03861684529091528120548083111561084b57336000908152600360209081526040808320600160a060020a0388168452909152812055610880565b61085b818463ffffffff610e4616565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60046020526000908152604090205460ff1681565b600154600160a060020a031681565b600154600160a060020a0316331461093c57600080fd5b6006805460ff1916911515919091179055565b600154600090600160a060020a0316331461096957600080fd5b600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b1580156109d857600080fd5b505af11580156109ec573d6000803e3d6000fd5b505050506040513d6020811015610a0257600080fd5b50519392505050565b60408051808201909152600381527f46324b0000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610a5c57600080fd5b610a6c824263ffffffff610e5816565b600160a060020a0384166000818152600560209081526040918290208490558151848152915193945091927ffc68ae6ba1c8c61f8cdf25d2aa55a31aa76f57de5d34ec1b61eaa803d5c1d8a1929181900390910190a2505050565b600654600090339060ff1680610af55750600160a060020a03811660009081526004602052604090205460ff165b8015610b195750600160a060020a0381166000908152600560205260409020544210155b1515610b2457600080fd5b60008311610b3157600080fd5b33600090815260026020526040902054831115610b4d57600080fd5b33600090815260026020526040902054610b6d908463ffffffff610e4616565b3360009081526002602052604080822092909255600160a060020a03861681522054610b9f908463ffffffff610e5816565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b336000908152600360209081526040808320600160a060020a0386168452909152812054610c32908363ffffffff610e5816565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600154600160a060020a03163314610cd957600080fd5b600160a060020a0381161515610cee57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600154600160a060020a03163314610d6e57600080fd5b60008111610d7b57600080fd5b33600090815260026020526040902054811115610d9757600080fd5b33600090815260026020526040902054610db7908263ffffffff610e4616565b3360009081526002602052604080822092909255600160a060020a03841681522054610de9908263ffffffff610e5816565b600160a060020a03808416600081815260026020908152604091829020949094556001548151868152915192949316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35050565b600082821115610e5257fe5b50900390565b81810182811015610e6557fe5b929150505600a165627a7a7230582078a9d0c807035dfc71acba655128b56f3c6bb97b72ca4369080391f90561e0200029
Deployed Bytecode
0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012c578063095ea7b3146101b657806311704f52146101ee57806318160ddd1461020357806323b872dd1461022a578063313ce5671461025457806342966c681461027f5780634fa88720146102975780635312ebba146102bf57806366188463146102e057806370a08231146103045780638c564ebf146103255780638da5cb5b146103465780638f70ccf714610377578063928d81c11461039157806395d89b41146103b5578063a7b86824146103ca578063a9059cbb146103ee578063d73dd62314610412578063dd62ed3e14610436578063f2fde38b1461045d578063fb9321081461047e575b600080fd5b34801561013857600080fd5b506101416104a2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017b578181015183820152602001610163565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c257600080fd5b506101da600160a060020a03600435166024356104d9565b604080519115158252519081900360200190f35b3480156101fa57600080fd5b506101da61053f565b34801561020f57600080fd5b50610218610548565b60408051918252519081900360200190f35b34801561023657600080fd5b506101da600160a060020a036004358116906024351660443561054e565b34801561026057600080fd5b50610269610719565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b506101da60043561071e565b3480156102a357600080fd5b506102bd600160a060020a036004351660243515156107a2565b005b3480156102cb57600080fd5b50610218600160a060020a03600435166107e4565b3480156102ec57600080fd5b506101da600160a060020a03600435166024356107f6565b34801561031057600080fd5b50610218600160a060020a03600435166108e6565b34801561033157600080fd5b506101da600160a060020a0360043516610901565b34801561035257600080fd5b5061035b610916565b60408051600160a060020a039092168252519081900360200190f35b34801561038357600080fd5b506102bd6004351515610925565b34801561039d57600080fd5b506101da600160a060020a036004351660243561094f565b3480156103c157600080fd5b50610141610a0b565b3480156103d657600080fd5b506102bd600160a060020a0360043516602435610a42565b3480156103fa57600080fd5b506101da600160a060020a0360043516602435610ac7565b34801561041e57600080fd5b506101da600160a060020a0360043516602435610bfe565b34801561044257600080fd5b50610218600160a060020a0360043581169060243516610c97565b34801561046957600080fd5b506102bd600160a060020a0360043516610cc2565b34801561048a57600080fd5b506102bd600160a060020a0360043516602435610d57565b60408051808201909152601281527f4661726d324b69746368656e20546f6b656e0000000000000000000000000000602082015281565b336000818152600360209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60065460ff1681565b60075490565b600654600090849060ff168061057c5750600160a060020a03811660009081526004602052604090205460ff165b80156105a05750600160a060020a0381166000908152600560205260409020544210155b15156105ab57600080fd5b600083116105b857600080fd5b600160a060020a0385166000908152600260205260409020548311156105dd57600080fd5b600160a060020a038516600090815260036020908152604080832033845290915290205483111561060d57600080fd5b600160a060020a038516600090815260026020526040902054610636908463ffffffff610e4616565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610673908463ffffffff610e4616565b600160a060020a0380871660009081526003602090815260408083203384528252808320949094559187168152600290915220546106b7908463ffffffff610e5816565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b600281565b600154600090600160a060020a0316331461073857600080fd5b3360009081526002602052604090205482111561075457600080fd5b33600090815260026020526040902054610774908363ffffffff610e4616565b33600090815260026020526040902055600754610797908363ffffffff610e4616565b600755506001919050565b600154600160a060020a031633146107b957600080fd5b600160a060020a03919091166000908152600460205260409020805460ff1916911515919091179055565b60056020526000908152604090205481565b336000908152600360209081526040808320600160a060020a03861684529091528120548083111561084b57336000908152600360209081526040808320600160a060020a0388168452909152812055610880565b61085b818463ffffffff610e4616565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60046020526000908152604090205460ff1681565b600154600160a060020a031681565b600154600160a060020a0316331461093c57600080fd5b6006805460ff1916911515919091179055565b600154600090600160a060020a0316331461096957600080fd5b600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b1580156109d857600080fd5b505af11580156109ec573d6000803e3d6000fd5b505050506040513d6020811015610a0257600080fd5b50519392505050565b60408051808201909152600381527f46324b0000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610a5c57600080fd5b610a6c824263ffffffff610e5816565b600160a060020a0384166000818152600560209081526040918290208490558151848152915193945091927ffc68ae6ba1c8c61f8cdf25d2aa55a31aa76f57de5d34ec1b61eaa803d5c1d8a1929181900390910190a2505050565b600654600090339060ff1680610af55750600160a060020a03811660009081526004602052604090205460ff165b8015610b195750600160a060020a0381166000908152600560205260409020544210155b1515610b2457600080fd5b60008311610b3157600080fd5b33600090815260026020526040902054831115610b4d57600080fd5b33600090815260026020526040902054610b6d908463ffffffff610e4616565b3360009081526002602052604080822092909255600160a060020a03861681522054610b9f908463ffffffff610e5816565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b336000908152600360209081526040808320600160a060020a0386168452909152812054610c32908363ffffffff610e5816565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600154600160a060020a03163314610cd957600080fd5b600160a060020a0381161515610cee57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600154600160a060020a03163314610d6e57600080fd5b60008111610d7b57600080fd5b33600090815260026020526040902054811115610d9757600080fd5b33600090815260026020526040902054610db7908263ffffffff610e4616565b3360009081526002602052604080822092909255600160a060020a03841681522054610de9908263ffffffff610e5816565b600160a060020a03808416600081815260026020908152604091829020949094556001548151868152915192949316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35050565b600082821115610e5257fe5b50900390565b81810182811015610e6557fe5b929150505600a165627a7a7230582078a9d0c807035dfc71acba655128b56f3c6bb97b72ca4369080391f90561e0200029
Swarm Source
bzzr://78a9d0c807035dfc71acba655128b56f3c6bb97b72ca4369080391f90561e020
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.