ETH Price: $2,416.99 (+2.60%)

Token

LFD Network (LFDN)
 

Overview

Max Total Supply

1,000,000,000 LFDN

Holders

245

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,000,000 LFDN

Value
$0.00
0xa89f4fa461f23edfe6b39750fcd86cff5c87ce23
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:
LFDNetwork

Compiler Version
v0.4.24-nightly.2018.4.27+commit.1604a996

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-01-25
*/

pragma solidity ^0.4.16;
/*-------------------------------------------------------------------------*/
 /*
  * Website: https://fltd.io/Affiliate
  * Email: info(a)fltd.io
 */
/*-------------------------------------------------------------------------*/
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
/*-------------------------------------------------------------------------*/
contract owned {
    address public owner;
 
    function owned() {
        owner = msg.sender;
    }
 
    modifier onlyOwner {
        if (msg.sender != owner) throw;
        _;
    }
 
    function transferOwnership(address newOwner) onlyOwner {
        if (newOwner == 0x0) throw;
        owner = newOwner;
    }
}
/*-------------------------------------------------------------------------*/
/**
 * Overflow aware uint math functions.
 */
contract SafeMath {
  //internals
 
  function safeMul(uint a, uint b) internal returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }
 
  function safeSub(uint a, uint b) internal returns (uint) {
    assert(b <= a);
    return a - b;
  }
 
  function safeAdd(uint a, uint b) internal returns (uint) {
    uint c = a + b;
    assert(c>=a && c>=b);
    return c;
  }
 
  function assert(bool assertion) internal {
    if (!assertion) throw;
  }
}
/*-------------------------------------------------------------------------*/
contract LFDNetwork is owned, SafeMath {
 
string public LFDNetworkWebsite= "https://fltd.io/Affiliate";
address public LFDNetworkAddress = this;
address public creator = msg.sender;
    string public name = "LFD Network";
    string public symbol = " LFDN";
    uint8 public decimals = 18;    
    uint256 public totalSupply = 1000000000000000000000000000;
    uint256 public buyPrice = 11500;
uint256 public sellPrice = 11500;
   
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;
mapping (address => bool) public frozenAccount;
 
    event Transfer(address indexed from, address indexed to, uint256 value);
    event FundTransfer(address backer, uint amount, bool isContribution);
     // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);
event FrozenFunds(address target, bool frozen);
    
    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function LFDNetwork() public {
        balanceOf[msg.sender] = totalSupply;    
creator = msg.sender;
    }
    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value >= balanceOf[_to]);
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
    }
 
    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }
    
    /// @notice Buy tokens from contract by sending ether
    function () payable internal {
        uint amount = msg.value * buyPrice ; 
uint amountRaised;
uint bonus = 0;
 
bonus = getBonus(amount);
amount = amount +  bonus;
 
//amount = now ;
 
        require(balanceOf[creator] >= amount);              
        require(msg.value > 0);
amountRaised = safeAdd(amountRaised, msg.value);                    
balanceOf[msg.sender] = safeAdd(balanceOf[msg.sender], amount);     
        balanceOf[creator] = safeSub(balanceOf[creator], amount);           
        Transfer(creator, msg.sender, amount);              
        creator.transfer(amountRaised);
    }
 
/// @notice Create `mintedAmount` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param mintedAmount the amount of tokens it will receive
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
 
 
/**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }
 
    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }
 
    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }
 
    /// @notice Allow users to buy tokens for `newBuyPrice` eth and sell tokens for `newSellPrice` eth
    /// @param newSellPrice Price the users can sell to the contract
    /// @param newBuyPrice Price users can buy from the contract
    function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public {
        sellPrice = newSellPrice;
        buyPrice = newBuyPrice;
    }
 
 
/**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }
 
/**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
 
function getBonus(uint _amount) constant private returns (uint256) {
        
if(now >= 99999996 && now <= 184999996) { 
            return _amount * 50 / 100;
        }
 
if(now >= 404999997 && now <= 434999997) { 
            return _amount * 40 / 100;
        }
 
if(now >= 434999998 && now <= 464999998) { 
            return _amount * 30 / 100;
        }
 
if(now >= 464999999 && now <= 494999999) { 
            return _amount * 20 / 100;
        }
 
if(now >= 495000000 && now <= 525000000) { 
            return _amount * 10 / 100;
        }
 
        return 0;
    }
 
/// @notice Sell `amount` tokens to contract
    /// @param amount amount of tokens to be sold
    function sell(uint256 amount) public {
        require(this.balance >= amount * sellPrice);      // checks if the contract has enough ether to buy
        _transfer(msg.sender, this, amount);              // makes the transfers
        msg.sender.transfer(amount * sellPrice);          // sends ether to the seller. It's important to do this last to avoid recursion attacks
    }
 
 }
/*-------------------------------------------------------------------------*/

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"LFDNetworkAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"LFDNetworkWebsite","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","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":[{"indexed":false,"name":"backer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"isContribution","type":"bool"}],"name":"FundTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"}]

60c0604052601960808190527f68747470733a2f2f666c74642e696f2f416666696c696174650000000000000060a09081526200004091600191906200015e565b5060028054600160a060020a03199081163017909155600380549091163317905560408051808201909152600b8082527f4c4644204e6574776f726b0000000000000000000000000000000000000000006020909201918252620000a7916004916200015e565b506040805180820190915260058082527f204c46444e0000000000000000000000000000000000000000000000000000006020909201918252620000ec91816200015e565b506006805460ff191660121790556b033b2e3c9fd0803ce8000000600755612cec60088190556009553480156200012257600080fd5b506000805433600160a060020a031991821681178355600754818452600a60205260409093209290925560038054909116909117905562000203565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a157805160ff1916838001178555620001d1565b82800160010185558215620001d1579182015b82811115620001d1578251825591602001919060010190620001b4565b50620001df929150620001e3565b5090565b6200020091905b80821115620001df5760008155600101620001ea565b90565b610e5f80620002136000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d05d3f811461026157806305fefda71461029257806306fdde03146102af578063095ea7b31461033957806313417a2b1461037157806318160ddd14610386578063313ce567146103ad57806342966c68146103d85780634b750334146103f057806370a082311461040557806379c650681461042657806379cc67901461044a5780638620410b1461046e5780638da5cb5b1461048357806395d89b4114610498578063a9059cbb146104ad578063b414d4b6146104d1578063cae9ca51146104f2578063dd62ed3e1461055b578063e4849b3214610582578063e724529c1461059a578063eab788ed146105c0578063f2fde38b146105d5575b6008543402600080610143836105f6565b600354600160a060020a03166000908152600a60205260409020549381019390915083111561017157600080fd5b6000341161017e57600080fd5b61018882346106cd565b336000908152600a60205260409020549092506101a590846106cd565b336000908152600a602052604080822092909255600354600160a060020a0316815220546101d390846106f1565b60038054600160a060020a039081166000908152600a60209081526040918290209490945591548251878152925133949190921692600080516020610e14833981519152929081900390910190a3600354604051600160a060020a039091169083156108fc029084906000818181858888f1935050505015801561025b573d6000803e3d6000fd5b50505050005b34801561026d57600080fd5b50610276610705565b60408051600160a060020a039092168252519081900360200190f35b34801561029e57600080fd5b506102ad600435602435610714565b005b3480156102bb57600080fd5b506102c4610736565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fe5781810151838201526020016102e6565b50505050905090810190601f16801561032b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034557600080fd5b5061035d600160a060020a03600435166024356107c4565b604080519115158252519081900360200190f35b34801561037d57600080fd5b506102766107f1565b34801561039257600080fd5b5061039b610800565b60408051918252519081900360200190f35b3480156103b957600080fd5b506103c2610806565b6040805160ff9092168252519081900360200190f35b3480156103e457600080fd5b5061035d60043561080f565b3480156103fc57600080fd5b5061039b610887565b34801561041157600080fd5b5061039b600160a060020a036004351661088d565b34801561043257600080fd5b506102ad600160a060020a036004351660243561089f565b34801561045657600080fd5b5061035d600160a060020a0360043516602435610931565b34801561047a57600080fd5b5061039b610a02565b34801561048f57600080fd5b50610276610a08565b3480156104a457600080fd5b506102c4610a17565b3480156104b957600080fd5b506102ad600160a060020a0360043516602435610a72565b3480156104dd57600080fd5b5061035d600160a060020a0360043516610a81565b3480156104fe57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261035d948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a969650505050505050565b34801561056757600080fd5b5061039b600160a060020a0360043581169060243516610baf565b34801561058e57600080fd5b506102ad600435610bcc565b3480156105a657600080fd5b506102ad600160a060020a03600435166024351515610c19565b3480156105cc57600080fd5b506102c4610c94565b3480156105e157600080fd5b506102ad600160a060020a0360043516610cee565b60006305f5e0fc42101580156106105750630b06e03c4211155b15610624576064603283025b0490506106c8565b631823cf3d421015801561063c57506319ed92bd4211155b1561064c5760646028830261061c565b6319ed92be42101580156106645750631bb7563e4211155b15610674576064601e830261061c565b631bb7563f421015801561068c5750631d8119bf4211155b1561069c5760646014830261061c565b631d8119c042101580156106b45750631f4add404211155b156106c4576064600a830261061c565b5060005b919050565b60008282016106ea8482108015906106e55750838210155b610d49565b9392505050565b60006106ff83831115610d49565b50900390565b600354600160a060020a031681565b600054600160a060020a0316331461072b57600080fd5b600991909155600855565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b505050505081565b336000908152600b60209081526040808320600160a060020a039590951683529390529190912055600190565b600254600160a060020a031681565b60075481565b60065460ff1681565b336000908152600a602052604081205482111561082b57600080fd5b336000818152600a602090815260409182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60095481565b600a6020526000908152604090205481565b600054600160a060020a031633146108b657600080fd5b600160a060020a0382166000908152600a60209081526040808320805485019055600780548501905580518481529051309392600080516020610e14833981519152928290030190a3604080518281529051600160a060020a038416913091600080516020610e148339815191529181900360200190a35050565b600160a060020a0382166000908152600a602052604081205482111561095657600080fd5b600160a060020a0383166000908152600b6020908152604080832033845290915290205482111561098657600080fd5b600160a060020a0383166000818152600a6020908152604080832080548790039055600b825280832033845282529182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60085481565b600054600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b610a7d338383610d58565b5050565b600c6020526000908152604090205460ff1681565b600083610aa381856107c4565b15610ba7576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610b3b578181015183820152602001610b23565b50505050905090810190601f168015610b685780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610b8a57600080fd5b505af1158015610b9e573d6000803e3d6000fd5b50505050600191505b509392505050565b600b60209081526000928352604080842090915290825290205481565b600954810230311015610bde57600080fd5b610be9333083610d58565b6009546040513391830280156108fc02916000818181858888f19350505050158015610a7d573d6000803e3d6000fd5b600054600160a060020a03163314610c3057600080fd5b600160a060020a0382166000818152600c6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b600054600160a060020a03163314610d0557600080fd5b600160a060020a0381161515610d1a57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b801515610d5557600080fd5b50565b600160a060020a0382161515610d6d57600080fd5b600160a060020a0383166000908152600a6020526040902054811115610d9257600080fd5b600160a060020a0382166000908152600a60205260409020548181011015610db957600080fd5b600160a060020a038084166000818152600a602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610e14833981519152929081900390910190a35050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582088058ab3a2d64099964d987e67db85a7f3ed68fd2fb52fdf8debf5c05aad454d0029

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d05d3f811461026157806305fefda71461029257806306fdde03146102af578063095ea7b31461033957806313417a2b1461037157806318160ddd14610386578063313ce567146103ad57806342966c68146103d85780634b750334146103f057806370a082311461040557806379c650681461042657806379cc67901461044a5780638620410b1461046e5780638da5cb5b1461048357806395d89b4114610498578063a9059cbb146104ad578063b414d4b6146104d1578063cae9ca51146104f2578063dd62ed3e1461055b578063e4849b3214610582578063e724529c1461059a578063eab788ed146105c0578063f2fde38b146105d5575b6008543402600080610143836105f6565b600354600160a060020a03166000908152600a60205260409020549381019390915083111561017157600080fd5b6000341161017e57600080fd5b61018882346106cd565b336000908152600a60205260409020549092506101a590846106cd565b336000908152600a602052604080822092909255600354600160a060020a0316815220546101d390846106f1565b60038054600160a060020a039081166000908152600a60209081526040918290209490945591548251878152925133949190921692600080516020610e14833981519152929081900390910190a3600354604051600160a060020a039091169083156108fc029084906000818181858888f1935050505015801561025b573d6000803e3d6000fd5b50505050005b34801561026d57600080fd5b50610276610705565b60408051600160a060020a039092168252519081900360200190f35b34801561029e57600080fd5b506102ad600435602435610714565b005b3480156102bb57600080fd5b506102c4610736565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fe5781810151838201526020016102e6565b50505050905090810190601f16801561032b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034557600080fd5b5061035d600160a060020a03600435166024356107c4565b604080519115158252519081900360200190f35b34801561037d57600080fd5b506102766107f1565b34801561039257600080fd5b5061039b610800565b60408051918252519081900360200190f35b3480156103b957600080fd5b506103c2610806565b6040805160ff9092168252519081900360200190f35b3480156103e457600080fd5b5061035d60043561080f565b3480156103fc57600080fd5b5061039b610887565b34801561041157600080fd5b5061039b600160a060020a036004351661088d565b34801561043257600080fd5b506102ad600160a060020a036004351660243561089f565b34801561045657600080fd5b5061035d600160a060020a0360043516602435610931565b34801561047a57600080fd5b5061039b610a02565b34801561048f57600080fd5b50610276610a08565b3480156104a457600080fd5b506102c4610a17565b3480156104b957600080fd5b506102ad600160a060020a0360043516602435610a72565b3480156104dd57600080fd5b5061035d600160a060020a0360043516610a81565b3480156104fe57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261035d948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a969650505050505050565b34801561056757600080fd5b5061039b600160a060020a0360043581169060243516610baf565b34801561058e57600080fd5b506102ad600435610bcc565b3480156105a657600080fd5b506102ad600160a060020a03600435166024351515610c19565b3480156105cc57600080fd5b506102c4610c94565b3480156105e157600080fd5b506102ad600160a060020a0360043516610cee565b60006305f5e0fc42101580156106105750630b06e03c4211155b15610624576064603283025b0490506106c8565b631823cf3d421015801561063c57506319ed92bd4211155b1561064c5760646028830261061c565b6319ed92be42101580156106645750631bb7563e4211155b15610674576064601e830261061c565b631bb7563f421015801561068c5750631d8119bf4211155b1561069c5760646014830261061c565b631d8119c042101580156106b45750631f4add404211155b156106c4576064600a830261061c565b5060005b919050565b60008282016106ea8482108015906106e55750838210155b610d49565b9392505050565b60006106ff83831115610d49565b50900390565b600354600160a060020a031681565b600054600160a060020a0316331461072b57600080fd5b600991909155600855565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b505050505081565b336000908152600b60209081526040808320600160a060020a039590951683529390529190912055600190565b600254600160a060020a031681565b60075481565b60065460ff1681565b336000908152600a602052604081205482111561082b57600080fd5b336000818152600a602090815260409182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60095481565b600a6020526000908152604090205481565b600054600160a060020a031633146108b657600080fd5b600160a060020a0382166000908152600a60209081526040808320805485019055600780548501905580518481529051309392600080516020610e14833981519152928290030190a3604080518281529051600160a060020a038416913091600080516020610e148339815191529181900360200190a35050565b600160a060020a0382166000908152600a602052604081205482111561095657600080fd5b600160a060020a0383166000908152600b6020908152604080832033845290915290205482111561098657600080fd5b600160a060020a0383166000818152600a6020908152604080832080548790039055600b825280832033845282529182902080548690039055600780548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60085481565b600054600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b610a7d338383610d58565b5050565b600c6020526000908152604090205460ff1681565b600083610aa381856107c4565b15610ba7576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610b3b578181015183820152602001610b23565b50505050905090810190601f168015610b685780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610b8a57600080fd5b505af1158015610b9e573d6000803e3d6000fd5b50505050600191505b509392505050565b600b60209081526000928352604080842090915290825290205481565b600954810230311015610bde57600080fd5b610be9333083610d58565b6009546040513391830280156108fc02916000818181858888f19350505050158015610a7d573d6000803e3d6000fd5b600054600160a060020a03163314610c3057600080fd5b600160a060020a0382166000818152600c6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b600054600160a060020a03163314610d0557600080fd5b600160a060020a0381161515610d1a57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b801515610d5557600080fd5b50565b600160a060020a0382161515610d6d57600080fd5b600160a060020a0383166000908152600a6020526040902054811115610d9257600080fd5b600160a060020a0382166000908152600a60205260409020548181011015610db957600080fd5b600160a060020a038084166000818152600a602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610e14833981519152929081900390910190a35050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582088058ab3a2d64099964d987e67db85a7f3ed68fd2fb52fdf8debf5c05aad454d0029

Swarm Source

bzzr://88058ab3a2d64099964d987e67db85a7f3ed68fd2fb52fdf8debf5c05aad454d
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.