ETH Price: $3,021.12 (+4.51%)
Gas: 10 Gwei

Token

fck.com FCK (fck.com FCK)
 

Overview

Max Total Supply

9,999,990,000 fck.com FCK

Holders

9,868

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000 fck.com FCK

Value
$0.00
0x16a51077e0548cb265b223d180844beafb76e03b
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:
FckAirdrop

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-09-25
*/

pragma solidity ^0.4.25;

contract ERC20 {
    function totalSupply() public view returns (uint256);

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

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

    function allowance(address owner, address spender) public view 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);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public {
        owner = msg.sender;
    }
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

/**
 * @title ERC827 interface, an extension of ERC20 token standard
 *
 * @dev Interface of a ERC827 token, following the ERC20 standard with extra
 * @dev methods to transfer value and data and execute calls in transfers and
 * @dev approvals.
 */
contract ERC827 is ERC20 {
    function approveAndCall(address _spender, uint256 _value, bytes _data) public payable returns (bool);

    function transferAndCall(address _to, uint256 _value, bytes _data) public payable returns (bool);

    function transferFromAndCall(address _from, address _to, uint256 _value, bytes _data) public payable returns (bool);
}

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

/**
 * @title Standard ERC20 token
 *
 */
contract ERC20Token is ERC20 {
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) internal allowed;
    mapping(address => uint256) balances;
    uint256 totalSupply_;
    /**
     * @dev total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }
    /**
     * @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));
        require(_value <= balances[msg.sender]);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit 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 view returns (uint256) {
        return balances[_owner];
    }
    /**
     * @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));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }
    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit 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 view returns (uint256) {
        return allowed[_owner][_spender];
    }
    /**
     * @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 Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        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 Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

/**
 * @title ERC827, an extension of ERC20 token standard
 *
 * @dev Implementation the ERC827, following the ERC20 standard with extra
 * @dev methods to transfer value and data and execute calls in transfers and
 * @dev approvals.
 *
 * @dev Uses OpenZeppelin StandardToken.
 */
contract ERC827Token is ERC827, ERC20Token {
    /**
     * @dev Addition to ERC20 token methods. It allows to
     * @dev approve the transfer of value and execute a call with the sent data.
     *
     * @dev Beware that changing an allowance with this method brings the risk that
     * @dev someone may use both the old and the new allowance by unfortunate
     * @dev transaction ordering. One possible solution to mitigate this race condition
     * @dev is to first reduce the spender's allowance to 0 and set the desired value
     * @dev afterwards:
     * @dev https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * @param _spender The address that will spend the funds.
     * @param _value The amount of tokens to be spent.
     * @param _data ABI-encoded contract call to call `_to` address.
     *
     * @return true if the call function was executed successfully
     */
    function approveAndCall(address _spender, uint256 _value, bytes _data) public payable returns (bool) {
        require(_spender != address(this));
        super.approve(_spender, _value);
        // solium-disable-next-line security/no-call-value
        require(_spender.call.value(msg.value)(_data));
        return true;
    }
    /**
     * @dev Addition to ERC20 token methods. Transfer tokens to a specified
     * @dev address and execute a call with the sent data on the same transaction
     *
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amout of tokens to be transfered
     * @param _data ABI-encoded contract call to call `_to` address.
     *
     * @return true if the call function was executed successfully
     */
    function transferAndCall(address _to, uint256 _value, bytes _data) public payable returns (bool) {
        require(_to != address(this));
        super.transfer(_to, _value);
        require(_to.call.value(msg.value)(_data));
        return true;
    }
    /**
     * @dev Addition to ERC20 token methods. Transfer tokens from one address to
     * @dev another and make a contract call on the same transaction
     *
     * @param _from The address which you want to send tokens from
     * @param _to The address which you want to transfer to
     * @param _value The amout of tokens to be transferred
     * @param _data ABI-encoded contract call to call `_to` address.
     *
     * @return true if the call function was executed successfully
     */
    function transferFromAndCall(address _from, address _to, uint256 _value, bytes _data) public payable returns (bool) {
        require(_to != address(this));
        super.transferFrom(_from, _to, _value);
        require(_to.call.value(msg.value)(_data));
        return true;
    }
    /**
     * @dev Addition to StandardToken methods. Increase the amount of tokens that
     * @dev an owner allowed to a spender and execute a call with the sent data.
     *
     * @dev approve should be called when allowed[_spender] == 0. To increment
     * @dev allowed value is better to use this function to avoid 2 calls (and wait until
     * @dev the first transaction is mined)
     * @dev From MonolithDAO Token.sol
     *
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     * @param _data ABI-encoded contract call to call `_spender` address.
     */
    function increaseApprovalAndCall(address _spender, uint _addedValue, bytes _data) public payable returns (bool) {
        require(_spender != address(this));
        super.increaseApproval(_spender, _addedValue);
        require(_spender.call.value(msg.value)(_data));
        return true;
    }
    /**
     * @dev Addition to StandardToken methods. Decrease the amount of tokens that
     * @dev an owner allowed to a spender and execute a call with the sent data.
     *
     * @dev approve should be called when allowed[_spender] == 0. To decrement
     * @dev allowed value is better to use this function to avoid 2 calls (and wait until
     * @dev the first transaction is mined)
     * @dev From MonolithDAO Token.sol
     *
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     * @param _data ABI-encoded contract call to call `_spender` address.
     */
    function decreaseApprovalAndCall(address _spender, uint _subtractedValue, bytes _data) public payable returns (bool) {
        require(_spender != address(this));
        super.decreaseApproval(_spender, _subtractedValue);
        require(_spender.call.value(msg.value)(_data));
        return true;
    }
}

/**
 * @title  Burnable and Pause Token
 * @dev    StandardToken modified with pausable transfers.
 */
contract PauseBurnableERC827Token is ERC827Token, Ownable {
    using SafeMath for uint256;
    event Pause();
    event Unpause();
    event PauseOperatorTransferred(address indexed previousOperator, address indexed newOperator);
    event Burn(address indexed burner, uint256 value);

    bool public paused = false;
    address public pauseOperator;
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyPauseOperator() {
        require(msg.sender == pauseOperator || msg.sender == owner);
        _;
    }
    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }
    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused);
        _;
    }
    /**
     * @dev The constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() public {
        pauseOperator = msg.sender;
    }
    /**
     * @dev called by the operator to set the new operator to pause the token
     */
    function transferPauseOperator(address newPauseOperator) onlyPauseOperator public {
        require(newPauseOperator != address(0));
        emit PauseOperatorTransferred(pauseOperator, newPauseOperator);
        pauseOperator = newPauseOperator;
    }
    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() onlyPauseOperator whenNotPaused public {
        paused = true;
        emit Pause();
    }
    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() onlyPauseOperator whenPaused public {
        paused = false;
        emit Unpause();
    }

    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }

    function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
        return super.approve(_spender, _value);
    }

    function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
        return super.increaseApproval(_spender, _addedValue);
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseApproval(_spender, _subtractedValue);
    }
    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public whenNotPaused {
        _burn(msg.sender, _value);
    }

    function _burn(address _who, uint256 _value) internal {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure
        balances[_who] = balances[_who].sub(_value);
        // Subtract from the sender
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }
    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param _from address The address which you want to send tokens from
     * @param _value uint256 The amount of token to be burned
     */
    function burnFrom(address _from, uint256 _value) public whenNotPaused {
        require(_value <= allowed[_from][msg.sender]);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        _burn(_from, _value);
    }
}

contract FckAirdrop is PauseBurnableERC827Token {
    string  public constant name = "fck.com FCK";
    string  public constant symbol = "fck.com FCK";
    uint8   public constant decimals = 18;
    uint256 public constant INITIAL_SUPPLY = 10000000000 * (10 ** uint256(decimals));
    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor() public {
        totalSupply_ = INITIAL_SUPPLY;
        balances[msg.sender] = INITIAL_SUPPLY;
        emit Transfer(0x0, msg.sender, INITIAL_SUPPLY);
    }
    function batchTransfer(address[] _tos, uint256 _value) public whenNotPaused returns (bool) {
        uint256 all = _value.mul(_tos.length);
        require(balances[msg.sender] >= all);
        for (uint i = 0; i < _tos.length; i++) {
            require(_tos[i] != address(0));
            require(_tos[i] != msg.sender);
            balances[_tos[i]] = balances[_tos[i]].add(_value);
            emit Transfer(msg.sender, _tos[i], _value);
        }
        balances[msg.sender] = balances[msg.sender].sub(all);
        return true;
    }

    function multiTransfer(address[] _tos, uint256[] _values) public whenNotPaused returns (bool) {
        require(_tos.length == _values.length);
        uint256 all = 0;
        for (uint i = 0; i < _tos.length; i++) {
            require(_tos[i] != address(0));
            require(_tos[i] != msg.sender);
            all = all.add(_values[i]);
            balances[_tos[i]] = balances[_tos[i]].add(_values[i]);
            emit Transfer(msg.sender, _tos[i], _values[i]);
        }
        balances[msg.sender] = balances[msg.sender].sub(all);
        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":"","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":"_tos","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"multiTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"INITIAL_SUPPLY","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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pauseOperator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tos","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"increaseApprovalAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","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":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"decreaseApprovalAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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":false,"inputs":[{"name":"newPauseOperator","type":"address"}],"name":"transferPauseOperator","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"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOperator","type":"address"},{"indexed":true,"name":"newOperator","type":"address"}],"name":"PauseOperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b506003805433600160a060020a0319918216811790925560048054909116821790556b204fce5e3e250261100000006002819055600082815260016020908152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36116a8806100aa6000396000f3006080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f857806318160ddd146102305780631e89d5451461025757806323b872dd146102e55780632ff2e9dc1461030f578063313ce567146103245780633f4ba83a1461034f5780634000aea01461036657806342966c68146103c25780634afdcbde146103da5780635c975abb1461040b578063661884631461042057806370a082311461044457806379cc67901461046557806383f12fec146104895780638456cb59146104e05780638da5cb5b146104f557806390db623f1461050a57806395d89b411461016e578063a9059cbb14610566578063c1d34b891461058a578063cae9ca51146105ec578063cb3993be14610648578063d73dd623146106a4578063dd62ed3e146106c8578063de223f63146106ef578063f2fde38b14610710575b600080fd5b34801561017a57600080fd5b50610183610731565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a0360043516602435610768565b604080519115158252519081900360200190f35b34801561023c57600080fd5b50610245610795565b60408051918252519081900360200190f35b34801561026357600080fd5b506040805160206004803580820135838102808601850190965280855261021c95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975061079b9650505050505050565b3480156102f157600080fd5b5061021c600160a060020a036004358116906024351660443561099d565b34801561031b57600080fd5b506102456109ca565b34801561033057600080fd5b506103396109da565b6040805160ff9092168252519081900360200190f35b34801561035b57600080fd5b506103646109df565b005b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a6e9650505050505050565b3480156103ce57600080fd5b50610364600435610b1e565b3480156103e657600080fd5b506103ef610b42565b60408051600160a060020a039092168252519081900360200190f35b34801561041757600080fd5b5061021c610b51565b34801561042c57600080fd5b5061021c600160a060020a0360043516602435610b61565b34801561045057600080fd5b50610245600160a060020a0360043516610b85565b34801561047157600080fd5b50610364600160a060020a0360043516602435610ba0565b34801561049557600080fd5b506040805160206004803580820135838102808601850190965280855261021c953695939460249493850192918291850190849080828437509497505093359450610c479350505050565b3480156104ec57600080fd5b50610364610da4565b34801561050157600080fd5b506103ef610e38565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e479650505050505050565b34801561057257600080fd5b5061021c600160a060020a0360043516602435610e69565b604080516020601f60643560048181013592830184900484028501840190955281845261021c94600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610e8d9650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610f3f9650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610f619650505050505050565b3480156106b057600080fd5b5061021c600160a060020a0360043516602435610f83565b3480156106d457600080fd5b50610245600160a060020a0360043581169060243516610fa7565b3480156106fb57600080fd5b50610364600160a060020a0360043516610fd0565b34801561071c57600080fd5b50610364600160a060020a036004351661107c565b60408051808201909152600b81527f66636b2e636f6d2046434b000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561078257600080fd5b61078c8383611111565b90505b92915050565b60025490565b6003546000908190819060a060020a900460ff16156107b957600080fd5b83518551146107c757600080fd5b5060009050805b845181101561095e5784516000908690839081106107e857fe5b60209081029091010151600160a060020a0316141561080657600080fd5b8451339086908390811061081657fe5b60209081029091010151600160a060020a0316141561083457600080fd5b61085c848281518110151561084557fe5b60209081029091010151839063ffffffff61117516565b91506108ba848281518110151561086f57fe5b9060200190602002015160016000888581518110151561088b57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61117516565b6001600087848151811015156108cc57fe5b6020908102909101810151600160a060020a031682528101919091526040016000205584518590829081106108fd57fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061165d833981519152868481518110151561093757fe5b906020019060200201516040518082815260200191505060405180910390a36001016107ce565b3360009081526001602052604090205461097e908363ffffffff61118216565b3360009081526001602081905260409091209190915595945050505050565b60035460009060a060020a900460ff16156109b757600080fd5b6109c2848484611194565b949350505050565b6b204fce5e3e2502611000000081565b601281565b600454600160a060020a0316331480610a025750600354600160a060020a031633145b1515610a0d57600080fd5b60035460a060020a900460ff161515610a2557600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600160a060020a038416301415610a8657600080fd5b610a9084846112f6565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610ac7578181015183820152602001610aaf565b50505050905090810190601f168015610af45780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610b1457600080fd5b5060019392505050565b60035460a060020a900460ff1615610b3557600080fd5b610b3f33826113c7565b50565b600454600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610b7b57600080fd5b61078c83836114b6565b600160a060020a031660009081526001602052604090205490565b60035460a060020a900460ff1615610bb757600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054811115610be557600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054610c17908263ffffffff61118216565b600160a060020a038316600090815260208181526040808320338452909152902055610c4382826113c7565b5050565b6003546000908190819060a060020a900460ff1615610c6557600080fd5b8451610c7890859063ffffffff61159e16565b33600090815260016020526040902054909250821115610c9757600080fd5b5060005b845181101561095e578451600090869083908110610cb557fe5b60209081029091010151600160a060020a03161415610cd357600080fd5b84513390869083908110610ce357fe5b60209081029091010151600160a060020a03161415610d0157600080fd5b610d178460016000888581518110151561088b57fe5b600160008784815181101515610d2957fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110610d5a57fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061165d833981519152866040518082815260200191505060405180910390a3600101610c9b565b600454600160a060020a0316331480610dc75750600354600160a060020a031633145b1515610dd257600080fd5b60035460a060020a900460ff1615610de957600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6000600160a060020a038416301415610e5f57600080fd5b610a9084846115c7565b60035460009060a060020a900460ff1615610e8357600080fd5b61078c83836112f6565b6000600160a060020a038416301415610ea557600080fd5b610eb0858585611194565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610ee7578181015183820152602001610ecf565b50505050905090810190601f168015610f145780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610f3457600080fd5b506001949350505050565b6000600160a060020a038416301415610f5757600080fd5b610a908484611111565b6000600160a060020a038416301415610f7957600080fd5b610a9084846114b6565b60035460009060a060020a900460ff1615610f9d57600080fd5b61078c83836115c7565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600454600160a060020a0316331480610ff35750600354600160a060020a031633145b1515610ffe57600080fd5b600160a060020a038116151561101357600080fd5b600454604051600160a060020a038084169216907f5705a19d157bea12552e53720dc7b75b73ea8b883da95f4af3b3b3bfbeab9b2790600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600160a060020a0316331461109357600080fd5b600160a060020a03811615156110a857600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b33600081815260208181526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b8181018281101561078f57fe5b60008282111561118e57fe5b50900390565b6000600160a060020a03831615156111ab57600080fd5b600160a060020a0384166000908152600160205260409020548211156111d057600080fd5b600160a060020a0384166000908152602081815260408083203384529091529020548211156111fe57600080fd5b600160a060020a038416600090815260016020526040902054611227908363ffffffff61118216565b600160a060020a03808616600090815260016020526040808220939093559085168152205461125c908363ffffffff61117516565b600160a060020a038085166000908152600160209081526040808320949094559187168152808252828120338252909152205461129f908363ffffffff61118216565b600160a060020a03808616600081815260208181526040808320338452825291829020949094558051868152905192871693919260008051602061165d833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561130d57600080fd5b3360009081526001602052604090205482111561132957600080fd5b33600090815260016020526040902054611349908363ffffffff61118216565b3360009081526001602052604080822092909255600160a060020a0385168152205461137b908363ffffffff61117516565b600160a060020a03841660008181526001602090815260409182902093909355805185815290519192339260008051602061165d8339815191529281900390910190a350600192915050565b600160a060020a0382166000908152600160205260409020548111156113ec57600080fd5b600160a060020a038216600090815260016020526040902054611415908263ffffffff61118216565b600160a060020a038316600090815260016020526040902055600254611441908263ffffffff61118216565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061165d8339815191529181900360200190a35050565b33600090815260208181526040808320600160a060020a0386168452909152812054808311156115075733600090815260208181526040808320600160a060020a038816845290915281205561153a565b611517818463ffffffff61118216565b33600090815260208181526040808320600160a060020a03891684529091529020555b33600081815260208181526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008215156115af5750600061078f565b508181028183828115156115bf57fe5b041461078f57fe5b33600090815260208181526040808320600160a060020a03861684529091528120546115f9908363ffffffff61117516565b33600081815260208181526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209c36205a1cc826cefe4d30c7f09cabf95fdc20be040dad3fcdbf7a6058e6aa710029

Deployed Bytecode

0x6080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f857806318160ddd146102305780631e89d5451461025757806323b872dd146102e55780632ff2e9dc1461030f578063313ce567146103245780633f4ba83a1461034f5780634000aea01461036657806342966c68146103c25780634afdcbde146103da5780635c975abb1461040b578063661884631461042057806370a082311461044457806379cc67901461046557806383f12fec146104895780638456cb59146104e05780638da5cb5b146104f557806390db623f1461050a57806395d89b411461016e578063a9059cbb14610566578063c1d34b891461058a578063cae9ca51146105ec578063cb3993be14610648578063d73dd623146106a4578063dd62ed3e146106c8578063de223f63146106ef578063f2fde38b14610710575b600080fd5b34801561017a57600080fd5b50610183610731565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a0360043516602435610768565b604080519115158252519081900360200190f35b34801561023c57600080fd5b50610245610795565b60408051918252519081900360200190f35b34801561026357600080fd5b506040805160206004803580820135838102808601850190965280855261021c95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975061079b9650505050505050565b3480156102f157600080fd5b5061021c600160a060020a036004358116906024351660443561099d565b34801561031b57600080fd5b506102456109ca565b34801561033057600080fd5b506103396109da565b6040805160ff9092168252519081900360200190f35b34801561035b57600080fd5b506103646109df565b005b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a6e9650505050505050565b3480156103ce57600080fd5b50610364600435610b1e565b3480156103e657600080fd5b506103ef610b42565b60408051600160a060020a039092168252519081900360200190f35b34801561041757600080fd5b5061021c610b51565b34801561042c57600080fd5b5061021c600160a060020a0360043516602435610b61565b34801561045057600080fd5b50610245600160a060020a0360043516610b85565b34801561047157600080fd5b50610364600160a060020a0360043516602435610ba0565b34801561049557600080fd5b506040805160206004803580820135838102808601850190965280855261021c953695939460249493850192918291850190849080828437509497505093359450610c479350505050565b3480156104ec57600080fd5b50610364610da4565b34801561050157600080fd5b506103ef610e38565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e479650505050505050565b34801561057257600080fd5b5061021c600160a060020a0360043516602435610e69565b604080516020601f60643560048181013592830184900484028501840190955281845261021c94600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610e8d9650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610f3f9650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610f619650505050505050565b3480156106b057600080fd5b5061021c600160a060020a0360043516602435610f83565b3480156106d457600080fd5b50610245600160a060020a0360043581169060243516610fa7565b3480156106fb57600080fd5b50610364600160a060020a0360043516610fd0565b34801561071c57600080fd5b50610364600160a060020a036004351661107c565b60408051808201909152600b81527f66636b2e636f6d2046434b000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561078257600080fd5b61078c8383611111565b90505b92915050565b60025490565b6003546000908190819060a060020a900460ff16156107b957600080fd5b83518551146107c757600080fd5b5060009050805b845181101561095e5784516000908690839081106107e857fe5b60209081029091010151600160a060020a0316141561080657600080fd5b8451339086908390811061081657fe5b60209081029091010151600160a060020a0316141561083457600080fd5b61085c848281518110151561084557fe5b60209081029091010151839063ffffffff61117516565b91506108ba848281518110151561086f57fe5b9060200190602002015160016000888581518110151561088b57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61117516565b6001600087848151811015156108cc57fe5b6020908102909101810151600160a060020a031682528101919091526040016000205584518590829081106108fd57fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061165d833981519152868481518110151561093757fe5b906020019060200201516040518082815260200191505060405180910390a36001016107ce565b3360009081526001602052604090205461097e908363ffffffff61118216565b3360009081526001602081905260409091209190915595945050505050565b60035460009060a060020a900460ff16156109b757600080fd5b6109c2848484611194565b949350505050565b6b204fce5e3e2502611000000081565b601281565b600454600160a060020a0316331480610a025750600354600160a060020a031633145b1515610a0d57600080fd5b60035460a060020a900460ff161515610a2557600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600160a060020a038416301415610a8657600080fd5b610a9084846112f6565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610ac7578181015183820152602001610aaf565b50505050905090810190601f168015610af45780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610b1457600080fd5b5060019392505050565b60035460a060020a900460ff1615610b3557600080fd5b610b3f33826113c7565b50565b600454600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610b7b57600080fd5b61078c83836114b6565b600160a060020a031660009081526001602052604090205490565b60035460a060020a900460ff1615610bb757600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054811115610be557600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054610c17908263ffffffff61118216565b600160a060020a038316600090815260208181526040808320338452909152902055610c4382826113c7565b5050565b6003546000908190819060a060020a900460ff1615610c6557600080fd5b8451610c7890859063ffffffff61159e16565b33600090815260016020526040902054909250821115610c9757600080fd5b5060005b845181101561095e578451600090869083908110610cb557fe5b60209081029091010151600160a060020a03161415610cd357600080fd5b84513390869083908110610ce357fe5b60209081029091010151600160a060020a03161415610d0157600080fd5b610d178460016000888581518110151561088b57fe5b600160008784815181101515610d2957fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110610d5a57fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061165d833981519152866040518082815260200191505060405180910390a3600101610c9b565b600454600160a060020a0316331480610dc75750600354600160a060020a031633145b1515610dd257600080fd5b60035460a060020a900460ff1615610de957600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6000600160a060020a038416301415610e5f57600080fd5b610a9084846115c7565b60035460009060a060020a900460ff1615610e8357600080fd5b61078c83836112f6565b6000600160a060020a038416301415610ea557600080fd5b610eb0858585611194565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610ee7578181015183820152602001610ecf565b50505050905090810190601f168015610f145780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610f3457600080fd5b506001949350505050565b6000600160a060020a038416301415610f5757600080fd5b610a908484611111565b6000600160a060020a038416301415610f7957600080fd5b610a9084846114b6565b60035460009060a060020a900460ff1615610f9d57600080fd5b61078c83836115c7565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600454600160a060020a0316331480610ff35750600354600160a060020a031633145b1515610ffe57600080fd5b600160a060020a038116151561101357600080fd5b600454604051600160a060020a038084169216907f5705a19d157bea12552e53720dc7b75b73ea8b883da95f4af3b3b3bfbeab9b2790600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600160a060020a0316331461109357600080fd5b600160a060020a03811615156110a857600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b33600081815260208181526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b8181018281101561078f57fe5b60008282111561118e57fe5b50900390565b6000600160a060020a03831615156111ab57600080fd5b600160a060020a0384166000908152600160205260409020548211156111d057600080fd5b600160a060020a0384166000908152602081815260408083203384529091529020548211156111fe57600080fd5b600160a060020a038416600090815260016020526040902054611227908363ffffffff61118216565b600160a060020a03808616600090815260016020526040808220939093559085168152205461125c908363ffffffff61117516565b600160a060020a038085166000908152600160209081526040808320949094559187168152808252828120338252909152205461129f908363ffffffff61118216565b600160a060020a03808616600081815260208181526040808320338452825291829020949094558051868152905192871693919260008051602061165d833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561130d57600080fd5b3360009081526001602052604090205482111561132957600080fd5b33600090815260016020526040902054611349908363ffffffff61118216565b3360009081526001602052604080822092909255600160a060020a0385168152205461137b908363ffffffff61117516565b600160a060020a03841660008181526001602090815260409182902093909355805185815290519192339260008051602061165d8339815191529281900390910190a350600192915050565b600160a060020a0382166000908152600160205260409020548111156113ec57600080fd5b600160a060020a038216600090815260016020526040902054611415908263ffffffff61118216565b600160a060020a038316600090815260016020526040902055600254611441908263ffffffff61118216565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061165d8339815191529181900360200190a35050565b33600090815260208181526040808320600160a060020a0386168452909152812054808311156115075733600090815260208181526040808320600160a060020a038816845290915281205561153a565b611517818463ffffffff61118216565b33600090815260208181526040808320600160a060020a03891684529091529020555b33600081815260208181526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008215156115af5750600061078f565b508181028183828115156115bf57fe5b041461078f57fe5b33600090815260208181526040808320600160a060020a03861684529091528120546115f9908363ffffffff61117516565b33600081815260208181526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209c36205a1cc826cefe4d30c7f09cabf95fdc20be040dad3fcdbf7a6058e6aa710029

Swarm Source

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