ETH Price: $3,110.48 (+1.40%)
Gas: 21 Gwei

Token

Lucky Bucks (LBT)
 

Overview

Max Total Supply

1,336,820,269 LBT

Holders

11,825

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,026.03139999999 LBT

Value
$0.00
0xC115E45a08909041000cd77971963392b511966F
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LuckyBlock is an online lottery based on blockchain technology with one of the largest prize pool - $1,000,000,000.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LuckyBucks

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-12-20
*/

pragma solidity 0.5.1;


contract Ownable {
    address public owner;
    address public pendingOwner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Modifier throws if called by any account other than the pendingOwner.
     */
    modifier onlyPendingOwner() {
        require(msg.sender == pendingOwner);
        _;
    }

    constructor() public {
        owner = msg.sender;
    }

    /**
     * @dev Allows the current owner to set the pendingOwner address.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) onlyOwner public {
        pendingOwner = newOwner;
    }

    /**
     * @dev Allows the pendingOwner address to finalize the transfer.
     */
    function claimOwnership() onlyPendingOwner public {
        emit OwnershipTransferred(owner, pendingOwner);
        owner = pendingOwner;
        pendingOwner = address(0);
    }
}


contract Manageable is Ownable {
    mapping(address => bool) public listOfManagers;

    modifier onlyManager() {
        require(listOfManagers[msg.sender], "");
        _;
    }

    function addManager(address _manager) public onlyOwner returns (bool success) {
        if (!listOfManagers[_manager]) {
            require(_manager != address(0), "");
            listOfManagers[_manager] = true;
            success = true;
        }
    }

    function removeManager(address _manager) public onlyOwner returns (bool success) {
        if (listOfManagers[_manager]) {
            listOfManagers[_manager] = false;
            success = true;
        }
    }

    function getInfo(address _manager) public view returns (bool) {
        return listOfManagers[_manager];
    }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address who) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);
    function transfer(address to, uint256 value) external returns (bool);
    function approve(address spender, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


contract LuckyBucks is IERC20, Manageable {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor() public {
        _name = "Lucky Bucks";
        _symbol = "LBT";
        _decimals = 18;
        _totalSupply = 1000000000 * (uint(10) ** _decimals);

        _balances[0x3C5459BCDE2D5c1eDc4Cc6C6547d6cb360Ce5aE9] = _totalSupply;
        emit Transfer(address(0), 0x3C5459BCDE2D5c1eDc4Cc6C6547d6cb360Ce5aE9, _totalSupply);
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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 view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
    * @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) {
        _transfer(msg.sender, 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) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a 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 LuckyBucks.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO LuckyBucks.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyManager returns (bool) {
        _mint(to, value);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Reclaim all ERC20Basic compatible tokens
     * @param _token ERC20B The address of the token contract
     */
    function reclaimToken(IERC20 _token) external onlyOwner {
        uint256 balance = _token.balanceOf(address(this));
        _token.transfer(owner, balance);
    }
}


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"reclaimToken","outputs":[],"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_manager","type":"address"}],"name":"addManager","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"listOfManagers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_manager","type":"address"}],"name":"removeManager","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_manager","type":"address"}],"name":"getInfo","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b5060008054600160a060020a0319163317905560408051808201909152600b8082527f4c75636b79204275636b7300000000000000000000000000000000000000000060209092019182526100679160069161014f565b506040805180820190915260038082527f4c4254000000000000000000000000000000000000000000000000000000000060209092019182526100ac9160079161014f565b5060088054601260ff19909116179081905560ff16600a0a633b9aca00026005819055733c5459bcde2d5c1edc4cc6c6547d6cb360ce5ae96000818152600360209081527fba3fc78e3930372fc6c5bf4ede134b3a0a3abdcb39c601efe840911f58632fac8490556040805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36101ea565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019057805160ff19168380011785556101bd565b828001600101855582156101bd579182015b828111156101bd5782518255916020019190600101906101a2565b506101c99291506101cd565b5090565b6101e791905b808211156101c957600081556001016101d3565b90565b610ed380620001fa6000396000f3fe608060405260043610610116577c0100000000000000000000000000000000000000000000000000000000600035046306fdde03811461011b578063095ea7b3146101a557806317ffc320146101f257806318160ddd1461022757806323b872dd1461024e5780632d06177a14610291578063313ce567146102c457806339509351146102ef57806340c10f19146103285780634e71e0c81461036157806370a082311461037657806382384e9a146103a95780638da5cb5b146103dc57806395d89b411461040d578063a457c2d714610422578063a9059cbb1461045b578063ac18de4314610494578063dd62ed3e146104c7578063e30c397814610502578063f2fde38b14610517578063ffdd5cf11461054a575b600080fd5b34801561012757600080fd5b5061013061057d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016a578181015183820152602001610152565b50505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b157600080fd5b506101de600480360360408110156101c857600080fd5b50600160a060020a038135169060200135610613565b604080519115158252519081900360200190f35b3480156101fe57600080fd5b506102256004803603602081101561021557600080fd5b5035600160a060020a0316610691565b005b34801561023357600080fd5b5061023c6107db565b60408051918252519081900360200190f35b34801561025a57600080fd5b506101de6004803603606081101561027157600080fd5b50600160a060020a038135811691602081013590911690604001356107e1565b34801561029d57600080fd5b506101de600480360360208110156102b457600080fd5b5035600160a060020a03166108aa565b3480156102d057600080fd5b506102d9610962565b6040805160ff9092168252519081900360200190f35b3480156102fb57600080fd5b506101de6004803603604081101561031257600080fd5b50600160a060020a03813516906020013561096b565b34801561033457600080fd5b506101de6004803603604081101561034b57600080fd5b50600160a060020a038135169060200135610a1b565b34801561036d57600080fd5b50610225610a88565b34801561038257600080fd5b5061023c6004803603602081101561039957600080fd5b5035600160a060020a0316610b10565b3480156103b557600080fd5b506101de600480360360208110156103cc57600080fd5b5035600160a060020a0316610b2b565b3480156103e857600080fd5b506103f1610b40565b60408051600160a060020a039092168252519081900360200190f35b34801561041957600080fd5b50610130610b4f565b34801561042e57600080fd5b506101de6004803603604081101561044557600080fd5b50600160a060020a038135169060200135610bb0565b34801561046757600080fd5b506101de6004803603604081101561047e57600080fd5b50600160a060020a038135169060200135610bfb565b3480156104a057600080fd5b506101de600480360360208110156104b757600080fd5b5035600160a060020a0316610c08565b3480156104d357600080fd5b5061023c600480360360408110156104ea57600080fd5b50600160a060020a0381358116916020013516610c66565b34801561050e57600080fd5b506103f1610c91565b34801561052357600080fd5b506102256004803603602081101561053a57600080fd5b5035600160a060020a0316610ca0565b34801561055657600080fd5b506101de6004803603602081101561056d57600080fd5b5035600160a060020a0316610ce6565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106095780601f106105de57610100808354040283529160200191610609565b820191906000526020600020905b8154815290600101906020018083116105ec57829003601f168201915b5050505050905090565b6000600160a060020a038316151561062a57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600054600160a060020a031633146106a857600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600091600160a060020a038416916370a0823191602480820192602092909190829003018186803b15801561070b57600080fd5b505afa15801561071f573d6000803e3d6000fd5b505050506040513d602081101561073557600080fd5b505160008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519394509085169263a9059cbb92604480840193602093929083900390910190829087803b1580156107ab57600080fd5b505af11580156107bf573d6000803e3d6000fd5b505050506040513d60208110156107d557600080fd5b50505050565b60055490565b600160a060020a0383166000908152600460209081526040808320338452909152812054610815908363ffffffff610d0416565b600160a060020a0385166000908152600460209081526040808320338452909152902055610844848484610d16565b600160a060020a0384166000818152600460209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008054600160a060020a031633146108c257600080fd5b600160a060020a03821660009081526002602052604090205460ff16151561095d57600160a060020a038216151561093557604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526000602482015290519081900360640190fd5b50600160a060020a0381166000908152600260205260409020805460ff191660019081179091555b919050565b60085460ff1690565b6000600160a060020a038316151561098257600080fd5b336000908152600460209081526040808320600160a060020a03871684529091529020546109b6908363ffffffff610de516565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b3360009081526002602052604081205460ff161515610a7557604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526000602482015290519081900360640190fd5b610a7f8383610dfb565b50600192915050565b600154600160a060020a03163314610a9f57600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600160a060020a031660009081526003602052604090205490565b60026020526000908152604090205460ff1681565b600054600160a060020a031681565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106095780601f106105de57610100808354040283529160200191610609565b6000600160a060020a0383161515610bc757600080fd5b336000908152600460209081526040808320600160a060020a03871684529091529020546109b6908363ffffffff610d0416565b6000610a7f338484610d16565b60008054600160a060020a03163314610c2057600080fd5b600160a060020a03821660009081526002602052604090205460ff161561095d5750600160a060020a03166000908152600260205260409020805460ff19169055600190565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600160a060020a031681565b600054600160a060020a03163314610cb757600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526002602052604090205460ff1690565b600082821115610d1057fe5b50900390565b600160a060020a0382161515610d2b57600080fd5b600160a060020a038316600090815260036020526040902054610d54908263ffffffff610d0416565b600160a060020a038085166000908152600360205260408082209390935590841681522054610d89908263ffffffff610de516565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610df457fe5b9392505050565b600160a060020a0382161515610e1057600080fd5b600554610e23908263ffffffff610de516565b600555600160a060020a038216600090815260036020526040902054610e4f908263ffffffff610de516565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fea165627a7a72305820de6864ee8b493d12837cc722876e1a9c1f5260df0defd1ac974491703300da7b0029

Deployed Bytecode

0x608060405260043610610116577c0100000000000000000000000000000000000000000000000000000000600035046306fdde03811461011b578063095ea7b3146101a557806317ffc320146101f257806318160ddd1461022757806323b872dd1461024e5780632d06177a14610291578063313ce567146102c457806339509351146102ef57806340c10f19146103285780634e71e0c81461036157806370a082311461037657806382384e9a146103a95780638da5cb5b146103dc57806395d89b411461040d578063a457c2d714610422578063a9059cbb1461045b578063ac18de4314610494578063dd62ed3e146104c7578063e30c397814610502578063f2fde38b14610517578063ffdd5cf11461054a575b600080fd5b34801561012757600080fd5b5061013061057d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016a578181015183820152602001610152565b50505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b157600080fd5b506101de600480360360408110156101c857600080fd5b50600160a060020a038135169060200135610613565b604080519115158252519081900360200190f35b3480156101fe57600080fd5b506102256004803603602081101561021557600080fd5b5035600160a060020a0316610691565b005b34801561023357600080fd5b5061023c6107db565b60408051918252519081900360200190f35b34801561025a57600080fd5b506101de6004803603606081101561027157600080fd5b50600160a060020a038135811691602081013590911690604001356107e1565b34801561029d57600080fd5b506101de600480360360208110156102b457600080fd5b5035600160a060020a03166108aa565b3480156102d057600080fd5b506102d9610962565b6040805160ff9092168252519081900360200190f35b3480156102fb57600080fd5b506101de6004803603604081101561031257600080fd5b50600160a060020a03813516906020013561096b565b34801561033457600080fd5b506101de6004803603604081101561034b57600080fd5b50600160a060020a038135169060200135610a1b565b34801561036d57600080fd5b50610225610a88565b34801561038257600080fd5b5061023c6004803603602081101561039957600080fd5b5035600160a060020a0316610b10565b3480156103b557600080fd5b506101de600480360360208110156103cc57600080fd5b5035600160a060020a0316610b2b565b3480156103e857600080fd5b506103f1610b40565b60408051600160a060020a039092168252519081900360200190f35b34801561041957600080fd5b50610130610b4f565b34801561042e57600080fd5b506101de6004803603604081101561044557600080fd5b50600160a060020a038135169060200135610bb0565b34801561046757600080fd5b506101de6004803603604081101561047e57600080fd5b50600160a060020a038135169060200135610bfb565b3480156104a057600080fd5b506101de600480360360208110156104b757600080fd5b5035600160a060020a0316610c08565b3480156104d357600080fd5b5061023c600480360360408110156104ea57600080fd5b50600160a060020a0381358116916020013516610c66565b34801561050e57600080fd5b506103f1610c91565b34801561052357600080fd5b506102256004803603602081101561053a57600080fd5b5035600160a060020a0316610ca0565b34801561055657600080fd5b506101de6004803603602081101561056d57600080fd5b5035600160a060020a0316610ce6565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106095780601f106105de57610100808354040283529160200191610609565b820191906000526020600020905b8154815290600101906020018083116105ec57829003601f168201915b5050505050905090565b6000600160a060020a038316151561062a57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600054600160a060020a031633146106a857600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600091600160a060020a038416916370a0823191602480820192602092909190829003018186803b15801561070b57600080fd5b505afa15801561071f573d6000803e3d6000fd5b505050506040513d602081101561073557600080fd5b505160008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519394509085169263a9059cbb92604480840193602093929083900390910190829087803b1580156107ab57600080fd5b505af11580156107bf573d6000803e3d6000fd5b505050506040513d60208110156107d557600080fd5b50505050565b60055490565b600160a060020a0383166000908152600460209081526040808320338452909152812054610815908363ffffffff610d0416565b600160a060020a0385166000908152600460209081526040808320338452909152902055610844848484610d16565b600160a060020a0384166000818152600460209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008054600160a060020a031633146108c257600080fd5b600160a060020a03821660009081526002602052604090205460ff16151561095d57600160a060020a038216151561093557604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526000602482015290519081900360640190fd5b50600160a060020a0381166000908152600260205260409020805460ff191660019081179091555b919050565b60085460ff1690565b6000600160a060020a038316151561098257600080fd5b336000908152600460209081526040808320600160a060020a03871684529091529020546109b6908363ffffffff610de516565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b3360009081526002602052604081205460ff161515610a7557604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526000602482015290519081900360640190fd5b610a7f8383610dfb565b50600192915050565b600154600160a060020a03163314610a9f57600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600160a060020a031660009081526003602052604090205490565b60026020526000908152604090205460ff1681565b600054600160a060020a031681565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106095780601f106105de57610100808354040283529160200191610609565b6000600160a060020a0383161515610bc757600080fd5b336000908152600460209081526040808320600160a060020a03871684529091529020546109b6908363ffffffff610d0416565b6000610a7f338484610d16565b60008054600160a060020a03163314610c2057600080fd5b600160a060020a03821660009081526002602052604090205460ff161561095d5750600160a060020a03166000908152600260205260409020805460ff19169055600190565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600160a060020a031681565b600054600160a060020a03163314610cb757600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526002602052604090205460ff1690565b600082821115610d1057fe5b50900390565b600160a060020a0382161515610d2b57600080fd5b600160a060020a038316600090815260036020526040902054610d54908263ffffffff610d0416565b600160a060020a038085166000908152600360205260408082209390935590841681522054610d89908263ffffffff610de516565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610df457fe5b9392505050565b600160a060020a0382161515610e1057600080fd5b600554610e23908263ffffffff610de516565b600555600160a060020a038216600090815260036020526040902054610e4f908263ffffffff610de516565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fea165627a7a72305820de6864ee8b493d12837cc722876e1a9c1f5260df0defd1ac974491703300da7b0029

Swarm Source

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