ETH Price: $3,181.39 (-4.70%)
Gas: 4.7 Gwei
 

Overview

Max Total Supply

54,685,593.449400952655501468 VLB

Holders

283

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.4 VLB

Value
$0.00
0xfc0fea2dfb66e2312f861fbdbc81c373a99a2b3d
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:
VLBToken

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.11;


/**
 * @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.
     */
    function Ownable() {
        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));
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}



/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;

    function balanceOf(address who) public constant returns (uint256);

    function transfer(address to, uint256 value) public returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
}








/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);

    function transferFrom(address from, address to, uint256 value) public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}









/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping (address => uint256) balances;

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public constant returns (uint256 balance) {
        return balances[_owner];
    }

}








/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) allowed;


    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));

        uint256 _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // require (_value <= _allowance);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);
        Transfer(_from, _to, _value);
        return true;
    }

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

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /**
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     */
    function increaseApproval(address _spender, uint _addedValue)
    returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint _subtractedValue)
    returns (bool success) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        }
        else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

}





/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a * b;
        if (a != 0 && c / a != b) revert();
        return c;
    }

    function div(uint256 a, uint256 b) internal constant returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    function sub(uint256 a, uint256 b) internal constant returns (uint256) {
        if (b > a) revert();
        return a - b;
    }

    function add(uint256 a, uint256 b) internal constant returns (uint256) {
        uint256 c = a + b;
        if (c < a) revert();
        return c;
    }
}


/**
 * @title VLBTokens
 * @dev VLB Token contract based on Zeppelin StandardToken contract
 */
contract VLBToken is StandardToken, Ownable {
    using SafeMath for uint256;

    /**
     * @dev ERC20 descriptor variables
     */
    string public constant name = "VLB Tokens";
    string public constant symbol = "VLB";
    uint8 public decimals = 18;

    /**
     * @dev 220 millions is the initial Tokensale supply
     */
    uint256 public constant publicTokens = 220 * 10 ** 24;

    /**
     * @dev 20 millions for the team
     */
    uint256 public constant teamTokens = 20 * 10 ** 24;

    /**
     * @dev 10 millions as a bounty reward
     */
    uint256 public constant bountyTokens = 10 * 10 ** 24;

    /**
     * @dev 2.5 millions as an initial wings.ai reward reserv
     */
    uint256 public constant wingsTokensReserv = 25 * 10 ** 23;
    
    /**
     * @dev wings.ai reward calculated on tokensale finalization
     */
    uint256 public wingsTokensReward = 0;

    // TODO: TestRPC addresses, replace to real
    address public constant teamTokensWallet = 0x6a6AcA744caDB8C56aEC51A8ce86EFCaD59989CF;
    address public constant bountyTokensWallet = 0x91A7DE4ce8e8da6889d790B7911246B71B4c82ca;
    address public constant crowdsaleTokensWallet = 0x5e671ceD703f3dDcE79B13F82Eb73F25bad9340e;
    
    /**
     * @dev wings.ai wallet for reward collecting
     */
    address public constant wingsWallet = 0xcbF567D39A737653C569A8B7dFAb617E327a7aBD;


    /**
     * @dev Address of Crowdsale contract which will be compared
     *       against in the appropriate modifier check
     */
    address public crowdsaleContractAddress;

    /**
     * @dev variable that holds flag of ended tokensake 
     */
    bool isFinished = false;

    /**
     * @dev Modifier that allow only the Crowdsale contract to be sender
     */
    modifier onlyCrowdsaleContract() {
        require(msg.sender == crowdsaleContractAddress);
        _;
    }

    /**
     * @dev event for the burnt tokens after crowdsale logging
     * @param tokens amount of tokens available for crowdsale
     */
    event TokensBurnt(uint256 tokens);

    /**
     * @dev event for the tokens contract move to the active state logging
     * @param supply amount of tokens left after all the unsold was burned
     */
    event Live(uint256 supply);

    /**
     * @dev event for bounty tone transfer logging
     * @param from the address of bounty tokens wallet
     * @param to the address of beneficiary tokens wallet
     * @param value amount of tokens
     */
    event BountyTransfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Contract constructor
     */
    function VLBToken() {
        // Issue team tokens
        balances[teamTokensWallet] = balanceOf(teamTokensWallet).add(teamTokens);
        Transfer(address(0), teamTokensWallet, teamTokens);

        // Issue bounty tokens
        balances[bountyTokensWallet] = balanceOf(bountyTokensWallet).add(bountyTokens);
        Transfer(address(0), bountyTokensWallet, bountyTokens);

        // Issue crowdsale tokens minus initial wings reward.
        // see endTokensale for more details about final wings.ai reward
        uint256 crowdsaleTokens = publicTokens.sub(wingsTokensReserv);
        balances[crowdsaleTokensWallet] = balanceOf(crowdsaleTokensWallet).add(crowdsaleTokens);
        Transfer(address(0), crowdsaleTokensWallet, crowdsaleTokens);

        // 250 millions tokens overall
        totalSupply = publicTokens.add(bountyTokens).add(teamTokens);
    }

    /**
     * @dev back link VLBToken contract with VLBCrowdsale one
     * @param _crowdsaleAddress non zero address of VLBCrowdsale contract
     */
    function setCrowdsaleAddress(address _crowdsaleAddress) onlyOwner external {
        require(_crowdsaleAddress != address(0));
        crowdsaleContractAddress = _crowdsaleAddress;

        // Allow crowdsale contract 
        uint256 balance = balanceOf(crowdsaleTokensWallet);
        allowed[crowdsaleTokensWallet][crowdsaleContractAddress] = balance;
        Approval(crowdsaleTokensWallet, crowdsaleContractAddress, balance);
    }

    /**
     * @dev called only by linked VLBCrowdsale contract to end crowdsale.
     *      all the unsold tokens will be burned and totalSupply updated
     *      but wings.ai reward will be secured in advance
     */
    function endTokensale() onlyCrowdsaleContract external {
        require(!isFinished);
        uint256 crowdsaleLeftovers = balanceOf(crowdsaleTokensWallet);
        
        if (crowdsaleLeftovers > 0) {
            totalSupply = totalSupply.sub(crowdsaleLeftovers).sub(wingsTokensReserv);
            wingsTokensReward = totalSupply.div(100);
            totalSupply = totalSupply.add(wingsTokensReward);

            balances[crowdsaleTokensWallet] = 0;
            Transfer(crowdsaleTokensWallet, address(0), crowdsaleLeftovers);
            TokensBurnt(crowdsaleLeftovers);
        } else {
            wingsTokensReward = wingsTokensReserv;
        }
        
        balances[wingsWallet] = balanceOf(wingsWallet).add(wingsTokensReward);
        Transfer(crowdsaleTokensWallet, wingsWallet, wingsTokensReward);

        isFinished = true;

        Live(totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"bountyTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_crowdsaleAddress","type":"address"}],"name":"setCrowdsaleAddress","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"endTokensale","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wingsTokensReward","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wingsTokensReserv","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"teamTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wingsWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"teamTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"publicTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokens","type":"uint256"}],"name":"TokensBurnt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"supply","type":"uint256"}],"name":"Live","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"BountyTransfer","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":"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"}]

6060604052600380547412000000000000000000000000000000000000000060a060020a60ff021991821617909155600060045560058054909116905534156200004857600080fd5b5b60005b60038054600160a060020a03191633600160a060020a03161790555b620000ba6a108b2a2c28029094000000620000a5736a6aca744cadb8c56aec51a8ce86efcad59989cf64010000000062000ce56200033082021704565b9064010000000062000ff76200034f82021704565b736a6aca744cadb8c56aec51a8ce86efcad59989cf600081815260016020527f503ab54315f47499647a8787bc585d5c1d95e60c0b35ed2ab5c655797985e0bf9290925590600080516020620014348339815191526a108b2a2c2802909400000060405190815260200160405180910390a36200017e6a084595161401484a000000620000a57391a7de4ce8e8da6889d790b7911246b71b4c82ca64010000000062000ce56200033082021704565b9064010000000062000ff76200034f82021704565b7391a7de4ce8e8da6889d790b7911246b71b4c82ca600081815260016020527fd80c79c3c667b0b48194172346a943d766d33f78b71c42c9cdc109f45c052c9e9290925590600080516020620014348339815191526a084595161401484a00000060405190815260200160405180910390a3620002206ab5facfe5b81c365c0000006a021165458500521280000064010000000062000fdd6200036d82021704565b90506200026981620000a5735e671ced703f3ddce79b13f82eb73f25bad9340e64010000000062000ce56200033082021704565b9064010000000062000ff76200034f82021704565b735e671ced703f3ddce79b13f82eb73f25bad9340e600081815260016020527f024f1bd101d70e6419f746341666e8d18ddbe2e1a0ed9257f25c0d78e4fe68db9290925590600080516020620014348339815191528360405190815260200160405180910390a3620003256a108b2a2c28029094000000620000a56ab5facfe5b81c365c0000006a084595161401484a00000064010000000062000ff76200034f82021704565b9064010000000062000ff76200034f82021704565b6000555b5062000388565b600160a060020a0381166000908152600160205260409020545b919050565b6000828201838110156200036257600080fd5b8091505b5092915050565b6000828211156200037d57600080fd5b508082035b92915050565b61109c80620003986000396000f300606060405236156101465763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014b578063095ea7b3146101d657806318160ddd1461020c5780631a9bf9cf146102315780631f35bc401461025657806323b872dd1461027757806328e8bc61146102b3578063313ce567146102c85780633aef157b146102f15780636283440b14610316578063661884631461033b5780636c9d99da1461037157806370a08231146103a05780638da5cb5b146103d157806395d89b411461040057806395e396f91461048b57806399cd211d146104ba5780639c481c9e146104e9578063a9059cbb14610518578063b2c601321461054e578063c3e3c7bc1461057d578063d73dd623146105a2578063dd62ed3e146105d8578063f2fde38b1461060f578063f577a5d014610630575b600080fd5b341561015657600080fd5b61015e610655565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e157600080fd5b6101f8600160a060020a036004351660243561068c565b604051901515815260200160405180910390f35b341561021757600080fd5b61021f6106e7565b60405190815260200160405180910390f35b341561023c57600080fd5b61021f6106ed565b60405190815260200160405180910390f35b341561026157600080fd5b610275600160a060020a03600435166106fc565b005b341561028257600080fd5b6101f8600160a060020a03600435811690602435166044356107fc565b604051901515815260200160405180910390f35b34156102be57600080fd5b610275610916565b005b34156102d357600080fd5b6102db610bad565b60405160ff909116815260200160405180910390f35b34156102fc57600080fd5b61021f610bce565b60405190815260200160405180910390f35b341561032157600080fd5b61021f610bd4565b60405190815260200160405180910390f35b341561034657600080fd5b6101f8600160a060020a0360043516602435610be3565b604051901515815260200160405180910390f35b341561037c57600080fd5b610384610ccd565b604051600160a060020a03909116815260200160405180910390f35b34156103ab57600080fd5b61021f600160a060020a0360043516610ce5565b60405190815260200160405180910390f35b34156103dc57600080fd5b610384610d04565b604051600160a060020a03909116815260200160405180910390f35b341561040b57600080fd5b61015e610d13565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561049657600080fd5b610384610d4a565b604051600160a060020a03909116815260200160405180910390f35b34156104c557600080fd5b610384610d62565b604051600160a060020a03909116815260200160405180910390f35b34156104f457600080fd5b610384610d7a565b604051600160a060020a03909116815260200160405180910390f35b341561052357600080fd5b6101f8600160a060020a0360043516602435610d89565b604051901515815260200160405180910390f35b341561055957600080fd5b610384610e4e565b604051600160a060020a03909116815260200160405180910390f35b341561058857600080fd5b61021f610e66565b60405190815260200160405180910390f35b34156105ad57600080fd5b6101f8600160a060020a0360043516602435610e75565b604051901515815260200160405180910390f35b34156105e357600080fd5b61021f600160a060020a0360043581169060243516610f08565b60405190815260200160405180910390f35b341561061a57600080fd5b610275600160a060020a0360043516610f35565b005b341561063b57600080fd5b61021f610fce565b60405190815260200160405180910390f35b60408051908101604052600a81527f564c4220546f6b656e7300000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291906000805160206110518339815191529085905190815260200160405180910390a35060015b92915050565b60005481565b6a084595161401484a00000081565b60035460009033600160a060020a0390811691161461071a57600080fd5b600160a060020a038216151561072f57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416179055610774735e671ced703f3ddce79b13f82eb73f25bad9340e610ce5565b60058054600160a060020a0390811660009081527f90cf27b11a39545dad68f01d104d169a32e70e530af1c4a4dbb656dac1d4e8fe60205260409081902084905591549293509190911690735e671ced703f3ddce79b13f82eb73f25bad9340e906000805160206110518339815191529084905190815260200160405180910390a35b5b5050565b600080600160a060020a038416151561081457600080fd5b50600160a060020a0380851660008181526002602090815260408083203390951683529381528382205492825260019052919091205461085a908463ffffffff610fdd16565b600160a060020a03808716600090815260016020526040808220939093559086168152205461088f908463ffffffff610ff716565b600160a060020a0385166000908152600160205260409020556108b8818463ffffffff610fdd16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206110318339815191529086905190815260200160405180910390a3600191505b509392505050565b60055460009033600160a060020a0390811691161461093457600080fd5b60055474010000000000000000000000000000000000000000900460ff161561095c57600080fd5b610979735e671ced703f3ddce79b13f82eb73f25bad9340e610ce5565b90506000811115610a80576109b46a02116545850052128000006109a883600054610fdd90919063ffffffff16565b9063ffffffff610fdd16565b60008190556109ca90606463ffffffff61101416565b60048190556000546109e19163ffffffff610ff716565b6000908155735e671ced703f3ddce79b13f82eb73f25bad9340e80825260016020527f024f1bd101d70e6419f746341666e8d18ddbe2e1a0ed9257f25c0d78e4fe68db8290556000805160206110318339815191528360405190815260200160405180910390a37f3db896db0b7a2f53b4a4550f52efed13d6733eb1b099bbd99c3b74c3b90e97478160405190815260200160405180910390a1610a90565b6a02116545850052128000006004555b610abf600454610ab373cbf567d39a737653c569a8b7dfab617e327a7abd610ce5565b9063ffffffff610ff716565b73cbf567d39a737653c569a8b7dfab617e327a7abd600081905260016020527fe8198357f151be196d9d991cd83aa99cd328862192d9ffb5aefa3e0ab8409e9591909155600454735e671ced703f3ddce79b13f82eb73f25bad9340e906000805160206110318339815191529060405190815260200160405180910390a36005805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556000547f6b00bc0a71d2071ceffc66d2746ca7c3b550c2d5115a690a8761f81f04e2cf809060405190815260200160405180910390a15b5b50565b60035474010000000000000000000000000000000000000000900460ff1681565b60045481565b6a021165458500521280000081565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610c4057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610c77565b610c50818463ffffffff610fdd16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a033381166000818152600260209081526040808320948916808452949091529081902054600080516020611051833981519152915190815260200160405180910390a3600191505b5092915050565b736a6aca744cadb8c56aec51a8ce86efcad59989cf81565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b60408051908101604052600381527f564c420000000000000000000000000000000000000000000000000000000000602082015281565b735e671ced703f3ddce79b13f82eb73f25bad9340e81565b7391a7de4ce8e8da6889d790b7911246b71b4c82ca81565b600554600160a060020a031681565b6000600160a060020a0383161515610da057600080fd5b600160a060020a033316600090815260016020526040902054610dc9908363ffffffff610fdd16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610dfe908363ffffffff610ff716565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206110318339815191529085905190815260200160405180910390a35060015b92915050565b73cbf567d39a737653c569a8b7dfab617e327a7abd81565b6a108b2a2c2802909400000081565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ead908363ffffffff610ff716565b600160a060020a03338116600081815260026020908152604080832094891680845294909152908190208490559192909160008051602061105183398151915291905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610f5057600080fd5b600160a060020a0381161515610f6557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6ab5facfe5b81c365c00000081565b600082821115610fec57600080fd5b508082035b92915050565b60008282018381101561100957600080fd5b8091505b5092915050565b600080828481151561102257fe5b0490508091505b50929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a7230582034c6b11c494943d519896e86abfa578297894063c35bfa35070fa33b33aa768c0029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x606060405236156101465763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014b578063095ea7b3146101d657806318160ddd1461020c5780631a9bf9cf146102315780631f35bc401461025657806323b872dd1461027757806328e8bc61146102b3578063313ce567146102c85780633aef157b146102f15780636283440b14610316578063661884631461033b5780636c9d99da1461037157806370a08231146103a05780638da5cb5b146103d157806395d89b411461040057806395e396f91461048b57806399cd211d146104ba5780639c481c9e146104e9578063a9059cbb14610518578063b2c601321461054e578063c3e3c7bc1461057d578063d73dd623146105a2578063dd62ed3e146105d8578063f2fde38b1461060f578063f577a5d014610630575b600080fd5b341561015657600080fd5b61015e610655565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e157600080fd5b6101f8600160a060020a036004351660243561068c565b604051901515815260200160405180910390f35b341561021757600080fd5b61021f6106e7565b60405190815260200160405180910390f35b341561023c57600080fd5b61021f6106ed565b60405190815260200160405180910390f35b341561026157600080fd5b610275600160a060020a03600435166106fc565b005b341561028257600080fd5b6101f8600160a060020a03600435811690602435166044356107fc565b604051901515815260200160405180910390f35b34156102be57600080fd5b610275610916565b005b34156102d357600080fd5b6102db610bad565b60405160ff909116815260200160405180910390f35b34156102fc57600080fd5b61021f610bce565b60405190815260200160405180910390f35b341561032157600080fd5b61021f610bd4565b60405190815260200160405180910390f35b341561034657600080fd5b6101f8600160a060020a0360043516602435610be3565b604051901515815260200160405180910390f35b341561037c57600080fd5b610384610ccd565b604051600160a060020a03909116815260200160405180910390f35b34156103ab57600080fd5b61021f600160a060020a0360043516610ce5565b60405190815260200160405180910390f35b34156103dc57600080fd5b610384610d04565b604051600160a060020a03909116815260200160405180910390f35b341561040b57600080fd5b61015e610d13565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561049657600080fd5b610384610d4a565b604051600160a060020a03909116815260200160405180910390f35b34156104c557600080fd5b610384610d62565b604051600160a060020a03909116815260200160405180910390f35b34156104f457600080fd5b610384610d7a565b604051600160a060020a03909116815260200160405180910390f35b341561052357600080fd5b6101f8600160a060020a0360043516602435610d89565b604051901515815260200160405180910390f35b341561055957600080fd5b610384610e4e565b604051600160a060020a03909116815260200160405180910390f35b341561058857600080fd5b61021f610e66565b60405190815260200160405180910390f35b34156105ad57600080fd5b6101f8600160a060020a0360043516602435610e75565b604051901515815260200160405180910390f35b34156105e357600080fd5b61021f600160a060020a0360043581169060243516610f08565b60405190815260200160405180910390f35b341561061a57600080fd5b610275600160a060020a0360043516610f35565b005b341561063b57600080fd5b61021f610fce565b60405190815260200160405180910390f35b60408051908101604052600a81527f564c4220546f6b656e7300000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291906000805160206110518339815191529085905190815260200160405180910390a35060015b92915050565b60005481565b6a084595161401484a00000081565b60035460009033600160a060020a0390811691161461071a57600080fd5b600160a060020a038216151561072f57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416179055610774735e671ced703f3ddce79b13f82eb73f25bad9340e610ce5565b60058054600160a060020a0390811660009081527f90cf27b11a39545dad68f01d104d169a32e70e530af1c4a4dbb656dac1d4e8fe60205260409081902084905591549293509190911690735e671ced703f3ddce79b13f82eb73f25bad9340e906000805160206110518339815191529084905190815260200160405180910390a35b5b5050565b600080600160a060020a038416151561081457600080fd5b50600160a060020a0380851660008181526002602090815260408083203390951683529381528382205492825260019052919091205461085a908463ffffffff610fdd16565b600160a060020a03808716600090815260016020526040808220939093559086168152205461088f908463ffffffff610ff716565b600160a060020a0385166000908152600160205260409020556108b8818463ffffffff610fdd16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206110318339815191529086905190815260200160405180910390a3600191505b509392505050565b60055460009033600160a060020a0390811691161461093457600080fd5b60055474010000000000000000000000000000000000000000900460ff161561095c57600080fd5b610979735e671ced703f3ddce79b13f82eb73f25bad9340e610ce5565b90506000811115610a80576109b46a02116545850052128000006109a883600054610fdd90919063ffffffff16565b9063ffffffff610fdd16565b60008190556109ca90606463ffffffff61101416565b60048190556000546109e19163ffffffff610ff716565b6000908155735e671ced703f3ddce79b13f82eb73f25bad9340e80825260016020527f024f1bd101d70e6419f746341666e8d18ddbe2e1a0ed9257f25c0d78e4fe68db8290556000805160206110318339815191528360405190815260200160405180910390a37f3db896db0b7a2f53b4a4550f52efed13d6733eb1b099bbd99c3b74c3b90e97478160405190815260200160405180910390a1610a90565b6a02116545850052128000006004555b610abf600454610ab373cbf567d39a737653c569a8b7dfab617e327a7abd610ce5565b9063ffffffff610ff716565b73cbf567d39a737653c569a8b7dfab617e327a7abd600081905260016020527fe8198357f151be196d9d991cd83aa99cd328862192d9ffb5aefa3e0ab8409e9591909155600454735e671ced703f3ddce79b13f82eb73f25bad9340e906000805160206110318339815191529060405190815260200160405180910390a36005805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556000547f6b00bc0a71d2071ceffc66d2746ca7c3b550c2d5115a690a8761f81f04e2cf809060405190815260200160405180910390a15b5b50565b60035474010000000000000000000000000000000000000000900460ff1681565b60045481565b6a021165458500521280000081565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610c4057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610c77565b610c50818463ffffffff610fdd16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a033381166000818152600260209081526040808320948916808452949091529081902054600080516020611051833981519152915190815260200160405180910390a3600191505b5092915050565b736a6aca744cadb8c56aec51a8ce86efcad59989cf81565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b60408051908101604052600381527f564c420000000000000000000000000000000000000000000000000000000000602082015281565b735e671ced703f3ddce79b13f82eb73f25bad9340e81565b7391a7de4ce8e8da6889d790b7911246b71b4c82ca81565b600554600160a060020a031681565b6000600160a060020a0383161515610da057600080fd5b600160a060020a033316600090815260016020526040902054610dc9908363ffffffff610fdd16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610dfe908363ffffffff610ff716565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206110318339815191529085905190815260200160405180910390a35060015b92915050565b73cbf567d39a737653c569a8b7dfab617e327a7abd81565b6a108b2a2c2802909400000081565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ead908363ffffffff610ff716565b600160a060020a03338116600081815260026020908152604080832094891680845294909152908190208490559192909160008051602061105183398151915291905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610f5057600080fd5b600160a060020a0381161515610f6557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6ab5facfe5b81c365c00000081565b600082821115610fec57600080fd5b508082035b92915050565b60008282018381101561100957600080fd5b8091505b5092915050565b600080828481151561102257fe5b0490508091505b50929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a7230582034c6b11c494943d519896e86abfa578297894063c35bfa35070fa33b33aa768c0029

Swarm Source

bzzr://34c6b11c494943d519896e86abfa578297894063c35bfa35070fa33b33aa768c
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.