ETH Price: $2,717.18 (-2.79%)

Token

Airline & Life Networking (ALLN)
 

Overview

Max Total Supply

3,500,000,000 ALLN

Holders

405

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 4 Decimals)

Balance
0 ALLN

Value
$0.00
0x25bc8826506583a46aba47a20ffefb6b00ce0cd3
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:
ALLN

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-03-27
*/

pragma solidity 0.4.21;
// sol token
// 
// Professor Rui-Shan Lu Team
// Lursun <[email protected]>
// reference https://ethereum.org/token

contract owned {
    address public owner;

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

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

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

contract TokenERC20 is owned {
    address public deployer;
    // Public variables of the token
    string public name ="Airline & Life Networking";
    string public symbol = "ALLN";
    uint8 public decimals = 4;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    event Approval(address indexed owner, address indexed spender, uint value);

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

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20() public {
        deployer = 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]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

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

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(allowance[_from][msg.sender] >= _value);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * 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;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) onlyOwner 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
        emit Burn(msg.sender, _value);
        return true;
    }

}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract MyAdvancedToken is TokenERC20 {
    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function MyAdvancedToken() TokenERC20() public {}

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require(_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require(balanceOf[_from] >= _value);               // Check if the sender has enough
        require(balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
        require(!frozenAccount[_from]);                     // Check if sender is frozen
        require(!frozenAccount[_to]);                       // Check if recipient is frozen
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(_from, _to, _value);
    }

    /// @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 {
        uint tempSupply = totalSupply;
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        require(totalSupply >= tempSupply);
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

    /// @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;
        emit FrozenFunds(target, freeze);
    }

    function () payable public {
        require(false);
    }

}

contract ALLN is MyAdvancedToken {
    mapping(address => uint) public lockdate;
    mapping(address => uint) public lockTokenBalance;

    event LockToken(address account, uint amount, uint unixtime);

    function ALLN() MyAdvancedToken() public {}
    function getLockBalance(address account) internal returns(uint) {
        if(now >= lockdate[account]) {
            lockdate[account] = 0;
            lockTokenBalance[account] = 0;
        }
        return lockTokenBalance[account];
    }

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        uint usableBalance = balanceOf[_from] - getLockBalance(_from);
        require(balanceOf[_from] >= usableBalance);
        require(_to != 0x0);                                // Prevent transfer to 0x0 address. Use burn() instead
        require(usableBalance >= _value);                   // Check if the sender has enough
        require(balanceOf[_to] + _value > balanceOf[_to]);  // Check for overflows
        require(!frozenAccount[_from]);                     // Check if sender is frozen
        require(!frozenAccount[_to]);                       // Check if recipient is frozen
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        emit Transfer(_from, _to, _value);
    }


    function lockTokenToDate(address account, uint amount, uint unixtime) onlyOwner public {
        require(unixtime >= lockdate[account]);
        require(unixtime >= now);
        if(balanceOf[account] >= amount) {
            lockdate[account] = unixtime;
            lockTokenBalance[account] = amount;
            emit LockToken(account, amount, unixtime);
        }
    }

    function lockTokenDays(address account, uint amount, uint _days) public {
        uint unixtime = _days * 1 days + now;
        lockTokenToDate(account, amount, unixtime);
    }

     /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) onlyOwner public returns (bool success) {
        uint usableBalance = balanceOf[msg.sender] - getLockBalance(msg.sender);
        require(balanceOf[msg.sender] >= usableBalance);
        require(usableBalance >= _value);           // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockdate","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":"","type":"address"}],"name":"lockTokenBalance","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":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":"account","type":"address"},{"name":"amount","type":"uint256"},{"name":"unixtime","type":"uint256"}],"name":"lockTokenToDate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deployer","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"},{"name":"_days","type":"uint256"}],"name":"lockTokenDays","outputs":[],"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":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"name":"account","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"unixtime","type":"uint256"}],"name":"LockToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405260408051908101604052601981527f4169726c696e652026204c696665204e6574776f726b696e67000000000000006020820152600290805161004b9291602001906100db565b5060408051908101604052600481527f414c4c4e00000000000000000000000000000000000000000000000000000000602082015260039080516100939291602001906100db565b506004805460ff19168117905534156100ab57600080fd5b60008054600160a060020a033316600160a060020a03199182168117909255600180549091169091179055610176565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011c57805160ff1916838001178555610149565b82800160010185558215610149579182015b8281111561014957825182559160200191906001019061012e565b50610155929150610159565b5090565b61017391905b80821115610155576000815560010161015f565b90565b610c0b806101856000396000f3006060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610118578063095ea7b3146101a257806318160ddd146101d857806323b872dd146101fd57806324ab83d314610225578063313ce5671461024457806342966c681461026d5780634aafef501461028357806370a08231146102a257806379c65068146102c15780638da5cb5b146102e357806395d89b4114610312578063a9059cbb14610325578063b414d4b614610347578063d472fa2614610366578063d5f394881461038b578063d95405f21461039e578063dd62ed3e146103c3578063e724529c146103e8578063f2fde38b1461040c575b600080fd5b005b341561012357600080fd5b61012b61042b565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016757808201518382015260200161014f565b50505050905090810190601f1680156101945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ad57600080fd5b6101c4600160a060020a03600435166024356104c9565b604051901515815260200160405180910390f35b34156101e357600080fd5b6101eb610535565b60405190815260200160405180910390f35b341561020857600080fd5b6101c4600160a060020a036004358116906024351660443561053b565b341561023057600080fd5b6101eb600160a060020a03600435166105b3565b341561024f57600080fd5b6102576105c5565b60405160ff909116815260200160405180910390f35b341561027857600080fd5b6101c46004356105ce565b341561028e57600080fd5b6101eb600160a060020a0360043516610693565b34156102ad57600080fd5b6101eb600160a060020a03600435166106a5565b34156102cc57600080fd5b610116600160a060020a03600435166024356106b7565b34156102ee57600080fd5b6102f6610797565b604051600160a060020a03909116815260200160405180910390f35b341561031d57600080fd5b61012b6107a6565b341561033057600080fd5b610116600160a060020a0360043516602435610811565b341561035257600080fd5b6101c4600160a060020a0360043516610820565b341561037157600080fd5b610116600160a060020a0360043516602435604435610835565b341561039657600080fd5b6102f661092d565b34156103a957600080fd5b610116600160a060020a036004351660243560443561093c565b34156103ce57600080fd5b6101eb600160a060020a0360043581169060243516610955565b34156103f357600080fd5b610116600160a060020a03600435166024351515610972565b341561041757600080fd5b610116600160a060020a03600435166109fe565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b505050505081565b600160a060020a03338116600081815260076020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a038084166000908152600760209081526040808320339094168352929052908120548290101561057157600080fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220805483900390556105a9848484610a48565b5060019392505050565b60096020526000908152604090205481565b60045460ff1681565b60008054819033600160a060020a039081169116146105ec57600080fd5b6105f533610b7d565b600160a060020a03331660009081526006602052604090205490810391508190101561062057600080fd5b8281101561062d57600080fd5b600160a060020a03331660008181526006602052604090819020805486900390556005805486900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59085905190815260200160405180910390a250600192915050565b600a6020526000908152604090205481565b60066020526000908152604090205481565b6000805433600160a060020a039081169116146106d357600080fd5b5060058054600160a060020a03841660009081526006602052604090208054840190558154830191829055908190101561070c57600080fd5b30600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a382600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3505050565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104c15780601f10610496576101008083540402835291602001916104c1565b61081c338383610a48565b5050565b60086020526000908152604090205460ff1681565b60005433600160a060020a0390811691161461085057600080fd5b600160a060020a03831660009081526009602052604090205481101561087557600080fd5b4281101561088257600080fd5b600160a060020a03831660009081526006602052604090205482901061092857600160a060020a0383166000908152600960209081526040808320849055600a909152908190208390557f2d814308d70a2c356e04b9495a463b35b22563f541e00d2dad99471d2849661290849084908490518084600160a060020a0316600160a060020a03168152602001838152602001828152602001935050505060405180910390a15b505050565b600154600160a060020a031681565b620151808102420161094f848483610835565b50505050565b600760209081526000928352604080842090915290825290205481565b60005433600160a060020a0390811691161461098d57600080fd5b600160a060020a03821660009081526008602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610a1957600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000610a5384610b7d565b600160a060020a038516600090815260066020526040902054908103915081901015610a7e57600080fd5b600160a060020a0383161515610a9357600080fd5b81811015610aa057600080fd5b600160a060020a03831660009081526006602052604090205482810111610ac657600080fd5b600160a060020a03841660009081526008602052604090205460ff1615610aec57600080fd5b600160a060020a03831660009081526008602052604090205460ff1615610b1257600080fd5b600160a060020a038085166000818152600660205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350505050565b600160a060020a0381166000908152600960205260408120544210610bc357600160a060020a0382166000908152600960209081526040808320839055600a9091528120555b50600160a060020a03166000908152600a6020526040902054905600a165627a7a723058209e68436625f4a462c40a9705cb109c6050d71b3d6a3891d2ea8f73719eebf1850029

Deployed Bytecode

0x6060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610118578063095ea7b3146101a257806318160ddd146101d857806323b872dd146101fd57806324ab83d314610225578063313ce5671461024457806342966c681461026d5780634aafef501461028357806370a08231146102a257806379c65068146102c15780638da5cb5b146102e357806395d89b4114610312578063a9059cbb14610325578063b414d4b614610347578063d472fa2614610366578063d5f394881461038b578063d95405f21461039e578063dd62ed3e146103c3578063e724529c146103e8578063f2fde38b1461040c575b600080fd5b005b341561012357600080fd5b61012b61042b565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016757808201518382015260200161014f565b50505050905090810190601f1680156101945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ad57600080fd5b6101c4600160a060020a03600435166024356104c9565b604051901515815260200160405180910390f35b34156101e357600080fd5b6101eb610535565b60405190815260200160405180910390f35b341561020857600080fd5b6101c4600160a060020a036004358116906024351660443561053b565b341561023057600080fd5b6101eb600160a060020a03600435166105b3565b341561024f57600080fd5b6102576105c5565b60405160ff909116815260200160405180910390f35b341561027857600080fd5b6101c46004356105ce565b341561028e57600080fd5b6101eb600160a060020a0360043516610693565b34156102ad57600080fd5b6101eb600160a060020a03600435166106a5565b34156102cc57600080fd5b610116600160a060020a03600435166024356106b7565b34156102ee57600080fd5b6102f6610797565b604051600160a060020a03909116815260200160405180910390f35b341561031d57600080fd5b61012b6107a6565b341561033057600080fd5b610116600160a060020a0360043516602435610811565b341561035257600080fd5b6101c4600160a060020a0360043516610820565b341561037157600080fd5b610116600160a060020a0360043516602435604435610835565b341561039657600080fd5b6102f661092d565b34156103a957600080fd5b610116600160a060020a036004351660243560443561093c565b34156103ce57600080fd5b6101eb600160a060020a0360043581169060243516610955565b34156103f357600080fd5b610116600160a060020a03600435166024351515610972565b341561041757600080fd5b610116600160a060020a03600435166109fe565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b505050505081565b600160a060020a03338116600081815260076020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a038084166000908152600760209081526040808320339094168352929052908120548290101561057157600080fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220805483900390556105a9848484610a48565b5060019392505050565b60096020526000908152604090205481565b60045460ff1681565b60008054819033600160a060020a039081169116146105ec57600080fd5b6105f533610b7d565b600160a060020a03331660009081526006602052604090205490810391508190101561062057600080fd5b8281101561062d57600080fd5b600160a060020a03331660008181526006602052604090819020805486900390556005805486900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59085905190815260200160405180910390a250600192915050565b600a6020526000908152604090205481565b60066020526000908152604090205481565b6000805433600160a060020a039081169116146106d357600080fd5b5060058054600160a060020a03841660009081526006602052604090208054840190558154830191829055908190101561070c57600080fd5b30600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a382600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a3505050565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104c15780601f10610496576101008083540402835291602001916104c1565b61081c338383610a48565b5050565b60086020526000908152604090205460ff1681565b60005433600160a060020a0390811691161461085057600080fd5b600160a060020a03831660009081526009602052604090205481101561087557600080fd5b4281101561088257600080fd5b600160a060020a03831660009081526006602052604090205482901061092857600160a060020a0383166000908152600960209081526040808320849055600a909152908190208390557f2d814308d70a2c356e04b9495a463b35b22563f541e00d2dad99471d2849661290849084908490518084600160a060020a0316600160a060020a03168152602001838152602001828152602001935050505060405180910390a15b505050565b600154600160a060020a031681565b620151808102420161094f848483610835565b50505050565b600760209081526000928352604080842090915290825290205481565b60005433600160a060020a0390811691161461098d57600080fd5b600160a060020a03821660009081526008602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610a1957600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000610a5384610b7d565b600160a060020a038516600090815260066020526040902054908103915081901015610a7e57600080fd5b600160a060020a0383161515610a9357600080fd5b81811015610aa057600080fd5b600160a060020a03831660009081526006602052604090205482810111610ac657600080fd5b600160a060020a03841660009081526008602052604090205460ff1615610aec57600080fd5b600160a060020a03831660009081526008602052604090205460ff1615610b1257600080fd5b600160a060020a038085166000818152600660205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350505050565b600160a060020a0381166000908152600960205260408120544210610bc357600160a060020a0382166000908152600960209081526040808320839055600a9091528120555b50600160a060020a03166000908152600a6020526040902054905600a165627a7a723058209e68436625f4a462c40a9705cb109c6050d71b3d6a3891d2ea8f73719eebf1850029

Swarm Source

bzzr://9e68436625f4a462c40a9705cb109c6050d71b3d6a3891d2ea8f73719eebf185
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.