ETH Price: $2,376.70 (+0.79%)

Token

CPCC (CPCC)
 

Overview

Max Total Supply

2,000,000,000 CPCC

Holders

442

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1 CPCC

Value
$0.00
0xac96de3ed547c42b9cbacd35b254cc34a44e8dff
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:
XCoin

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-29
*/

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 revert on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

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

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

        return c;
    }

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

        return c;
    }

    /**
    * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}


/**
 * @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 XCoin is PauseBurnableERC827Token {
    string  public  name;
    string  public  symbol;
    uint8   public constant decimals = 18;

    constructor(string _name, string _symbol, uint256 _totalSupply, address _owner) public {
        if (_owner != address(0x0)) {
            pauseOperator = _owner;
            owner = _owner;
        }
        totalSupply_ = _totalSupply;
        name = _name;
        symbol = _symbol;
        balances[owner] = _totalSupply;
        emit Transfer(0x0, owner, _totalSupply);
    }
    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":"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":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_totalSupply","type":"uint256"},{"name":"_owner","type":"address"}],"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"}]

60806040526003805460a060020a60ff02191690553480156200002157600080fd5b506040516200195338038062001953833981016040908152815160208301519183015160608401516003805433600160a060020a0319918216811790925560048054909116909117905591840193929092019190600160a060020a03811615620000b15760048054600160a060020a038316600160a060020a031991821681179092556003805490911690911790555b60028290558351620000cb90600590602087019062000147565b508251620000e190600690602086019062000147565b5060038054600160a060020a03908116600090815260016020908152604080832087905593548451878152945193169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350505050620001ec565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b50620001c8929150620001cc565b5090565b620001e991905b80821115620001c85760008155600101620001d3565b90565b61175780620001fc6000396000f30060806040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610163578063095ea7b3146101ed57806318160ddd146102255780631e89d5451461024c57806323b872dd146102da578063313ce567146103045780633f4ba83a1461032f5780634000aea01461034657806342966c68146103a25780634afdcbde146103ba5780635c975abb146103eb578063661884631461040057806370a082311461042457806379cc67901461044557806383f12fec146104695780638456cb59146104c05780638da5cb5b146104d557806390db623f146104ea57806395d89b4114610546578063a9059cbb1461055b578063c1d34b891461057f578063cae9ca51146105e1578063cb3993be1461063d578063d73dd62314610699578063dd62ed3e146106bd578063de223f63146106e4578063f2fde38b14610705575b600080fd5b34801561016f57600080fd5b50610178610726565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b257818101518382015260200161019a565b50505050905090810190601f1680156101df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f957600080fd5b50610211600160a060020a03600435166024356107b4565b604080519115158252519081900360200190f35b34801561023157600080fd5b5061023a6107df565b60408051918252519081900360200190f35b34801561025857600080fd5b506040805160206004803580820135838102808601850190965280855261021195369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506107e59650505050505050565b3480156102e657600080fd5b50610211600160a060020a03600435811690602435166044356109e7565b34801561031057600080fd5b50610319610a14565b6040805160ff9092168252519081900360200190f35b34801561033b57600080fd5b50610344610a19565b005b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610aa89650505050505050565b3480156103ae57600080fd5b50610344600435610b58565b3480156103c657600080fd5b506103cf610b7c565b60408051600160a060020a039092168252519081900360200190f35b3480156103f757600080fd5b50610211610b8b565b34801561040c57600080fd5b50610211600160a060020a0360043516602435610b9b565b34801561043057600080fd5b5061023a600160a060020a0360043516610bbf565b34801561045157600080fd5b50610344600160a060020a0360043516602435610bda565b34801561047557600080fd5b5060408051602060048035808201358381028086018501909652808552610211953695939460249493850192918291850190849080828437509497505093359450610c819350505050565b3480156104cc57600080fd5b50610344610dde565b3480156104e157600080fd5b506103cf610e72565b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e819650505050505050565b34801561055257600080fd5b50610178610ea3565b34801561056757600080fd5b50610211600160a060020a0360043516602435610efe565b604080516020601f60643560048181013592830184900484028501840190955281845261021194600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610f229650505050505050565b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610fd49650505050505050565b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610ff69650505050505050565b3480156106a557600080fd5b50610211600160a060020a0360043516602435611018565b3480156106c957600080fd5b5061023a600160a060020a036004358116906024351661103c565b3480156106f057600080fd5b50610344600160a060020a0360043516611065565b34801561071157600080fd5b50610344600160a060020a0360043516611111565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b505050505081565b60035460009060a060020a900460ff16156107ce57600080fd5b6107d883836111a6565b9392505050565b60025490565b6003546000908190819060a060020a900460ff161561080357600080fd5b835185511461081157600080fd5b5060009050805b84518110156109a857845160009086908390811061083257fe5b60209081029091010151600160a060020a0316141561085057600080fd5b8451339086908390811061086057fe5b60209081029091010151600160a060020a0316141561087e57600080fd5b6108a6848281518110151561088f57fe5b60209081029091010151839063ffffffff61120a16565b915061090484828151811015156108b957fe5b906020019060200201516001600088858151811015156108d557fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61120a16565b60016000878481518110151561091657fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055845185908290811061094757fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061170c833981519152868481518110151561098157fe5b906020019060200201516040518082815260200191505060405180910390a3600101610818565b336000908152600160205260409020546109c8908363ffffffff61122716565b3360009081526001602081905260409091209190915595945050505050565b60035460009060a060020a900460ff1615610a0157600080fd5b610a0c84848461123e565b949350505050565b601281565b600454600160a060020a0316331480610a3c5750600354600160a060020a031633145b1515610a4757600080fd5b60035460a060020a900460ff161515610a5f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600160a060020a038416301415610ac057600080fd5b610aca84846113a0565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610b01578181015183820152602001610ae9565b50505050905090810190601f168015610b2e5780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610b4e57600080fd5b5060019392505050565b60035460a060020a900460ff1615610b6f57600080fd5b610b793382611471565b50565b600454600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610bb557600080fd5b6107d88383611560565b600160a060020a031660009081526001602052604090205490565b60035460a060020a900460ff1615610bf157600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054811115610c1f57600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054610c51908263ffffffff61122716565b600160a060020a038316600090815260208181526040808320338452909152902055610c7d8282611471565b5050565b6003546000908190819060a060020a900460ff1615610c9f57600080fd5b8451610cb290859063ffffffff61164816565b33600090815260016020526040902054909250821115610cd157600080fd5b5060005b84518110156109a8578451600090869083908110610cef57fe5b60209081029091010151600160a060020a03161415610d0d57600080fd5b84513390869083908110610d1d57fe5b60209081029091010151600160a060020a03161415610d3b57600080fd5b610d51846001600088858151811015156108d557fe5b600160008784815181101515610d6357fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110610d9457fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061170c833981519152866040518082815260200191505060405180910390a3600101610cd5565b600454600160a060020a0316331480610e015750600354600160a060020a031633145b1515610e0c57600080fd5b60035460a060020a900460ff1615610e2357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6000600160a060020a038416301415610e9957600080fd5b610aca8484611676565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ac5780601f10610781576101008083540402835291602001916107ac565b60035460009060a060020a900460ff1615610f1857600080fd5b6107d883836113a0565b6000600160a060020a038416301415610f3a57600080fd5b610f4585858561123e565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610f7c578181015183820152602001610f64565b50505050905090810190601f168015610fa95780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610fc957600080fd5b506001949350505050565b6000600160a060020a038416301415610fec57600080fd5b610aca84846111a6565b6000600160a060020a03841630141561100e57600080fd5b610aca8484611560565b60035460009060a060020a900460ff161561103257600080fd5b6107d88383611676565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600454600160a060020a03163314806110885750600354600160a060020a031633145b151561109357600080fd5b600160a060020a03811615156110a857600080fd5b600454604051600160a060020a038084169216907f5705a19d157bea12552e53720dc7b75b73ea8b883da95f4af3b3b3bfbeab9b2790600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600160a060020a0316331461112857600080fd5b600160a060020a038116151561113d57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b33600081815260208181526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60008282018381101561121c57600080fd5b8091505b5092915050565b6000808383111561123757600080fd5b5050900390565b6000600160a060020a038316151561125557600080fd5b600160a060020a03841660009081526001602052604090205482111561127a57600080fd5b600160a060020a0384166000908152602081815260408083203384529091529020548211156112a857600080fd5b600160a060020a0384166000908152600160205260409020546112d1908363ffffffff61122716565b600160a060020a038086166000908152600160205260408082209390935590851681522054611306908363ffffffff61120a16565b600160a060020a0380851660009081526001602090815260408083209490945591871681528082528281203382529091522054611349908363ffffffff61122716565b600160a060020a03808616600081815260208181526040808320338452825291829020949094558051868152905192871693919260008051602061170c833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156113b757600080fd5b336000908152600160205260409020548211156113d357600080fd5b336000908152600160205260409020546113f3908363ffffffff61122716565b3360009081526001602052604080822092909255600160a060020a03851681522054611425908363ffffffff61120a16565b600160a060020a03841660008181526001602090815260409182902093909355805185815290519192339260008051602061170c8339815191529281900390910190a350600192915050565b600160a060020a03821660009081526001602052604090205481111561149657600080fd5b600160a060020a0382166000908152600160205260409020546114bf908263ffffffff61122716565b600160a060020a0383166000908152600160205260409020556002546114eb908263ffffffff61122716565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061170c8339815191529181900360200190a35050565b33600090815260208181526040808320600160a060020a0386168452909152812054808311156115b15733600090815260208181526040808320600160a060020a03881684529091528120556115e4565b6115c1818463ffffffff61122716565b33600090815260208181526040808320600160a060020a03891684529091529020555b33600081815260208181526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008083151561165b5760009150611220565b5082820282848281151561166b57fe5b041461121c57600080fd5b33600090815260208181526040808320600160a060020a03861684529091528120546116a8908363ffffffff61120a16565b33600081815260208181526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058205bdc6cee58fc2d7e727dbb15554397c05964a9fd905b3b820683ef59628ddadd0029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000006765c793fa10079d00000000000000000000000000000007bf70a1bc2cbd666978290a316fd455ab0bbc5730000000000000000000000000000000000000000000000000000000000000004435043430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044350434300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610163578063095ea7b3146101ed57806318160ddd146102255780631e89d5451461024c57806323b872dd146102da578063313ce567146103045780633f4ba83a1461032f5780634000aea01461034657806342966c68146103a25780634afdcbde146103ba5780635c975abb146103eb578063661884631461040057806370a082311461042457806379cc67901461044557806383f12fec146104695780638456cb59146104c05780638da5cb5b146104d557806390db623f146104ea57806395d89b4114610546578063a9059cbb1461055b578063c1d34b891461057f578063cae9ca51146105e1578063cb3993be1461063d578063d73dd62314610699578063dd62ed3e146106bd578063de223f63146106e4578063f2fde38b14610705575b600080fd5b34801561016f57600080fd5b50610178610726565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b257818101518382015260200161019a565b50505050905090810190601f1680156101df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f957600080fd5b50610211600160a060020a03600435166024356107b4565b604080519115158252519081900360200190f35b34801561023157600080fd5b5061023a6107df565b60408051918252519081900360200190f35b34801561025857600080fd5b506040805160206004803580820135838102808601850190965280855261021195369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506107e59650505050505050565b3480156102e657600080fd5b50610211600160a060020a03600435811690602435166044356109e7565b34801561031057600080fd5b50610319610a14565b6040805160ff9092168252519081900360200190f35b34801561033b57600080fd5b50610344610a19565b005b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610aa89650505050505050565b3480156103ae57600080fd5b50610344600435610b58565b3480156103c657600080fd5b506103cf610b7c565b60408051600160a060020a039092168252519081900360200190f35b3480156103f757600080fd5b50610211610b8b565b34801561040c57600080fd5b50610211600160a060020a0360043516602435610b9b565b34801561043057600080fd5b5061023a600160a060020a0360043516610bbf565b34801561045157600080fd5b50610344600160a060020a0360043516602435610bda565b34801561047557600080fd5b5060408051602060048035808201358381028086018501909652808552610211953695939460249493850192918291850190849080828437509497505093359450610c819350505050565b3480156104cc57600080fd5b50610344610dde565b3480156104e157600080fd5b506103cf610e72565b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e819650505050505050565b34801561055257600080fd5b50610178610ea3565b34801561056757600080fd5b50610211600160a060020a0360043516602435610efe565b604080516020601f60643560048181013592830184900484028501840190955281845261021194600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610f229650505050505050565b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610fd49650505050505050565b604080516020600460443581810135601f8101849004840285018401909552848452610211948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610ff69650505050505050565b3480156106a557600080fd5b50610211600160a060020a0360043516602435611018565b3480156106c957600080fd5b5061023a600160a060020a036004358116906024351661103c565b3480156106f057600080fd5b50610344600160a060020a0360043516611065565b34801561071157600080fd5b50610344600160a060020a0360043516611111565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b505050505081565b60035460009060a060020a900460ff16156107ce57600080fd5b6107d883836111a6565b9392505050565b60025490565b6003546000908190819060a060020a900460ff161561080357600080fd5b835185511461081157600080fd5b5060009050805b84518110156109a857845160009086908390811061083257fe5b60209081029091010151600160a060020a0316141561085057600080fd5b8451339086908390811061086057fe5b60209081029091010151600160a060020a0316141561087e57600080fd5b6108a6848281518110151561088f57fe5b60209081029091010151839063ffffffff61120a16565b915061090484828151811015156108b957fe5b906020019060200201516001600088858151811015156108d557fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61120a16565b60016000878481518110151561091657fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055845185908290811061094757fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061170c833981519152868481518110151561098157fe5b906020019060200201516040518082815260200191505060405180910390a3600101610818565b336000908152600160205260409020546109c8908363ffffffff61122716565b3360009081526001602081905260409091209190915595945050505050565b60035460009060a060020a900460ff1615610a0157600080fd5b610a0c84848461123e565b949350505050565b601281565b600454600160a060020a0316331480610a3c5750600354600160a060020a031633145b1515610a4757600080fd5b60035460a060020a900460ff161515610a5f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600160a060020a038416301415610ac057600080fd5b610aca84846113a0565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610b01578181015183820152602001610ae9565b50505050905090810190601f168015610b2e5780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610b4e57600080fd5b5060019392505050565b60035460a060020a900460ff1615610b6f57600080fd5b610b793382611471565b50565b600454600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610bb557600080fd5b6107d88383611560565b600160a060020a031660009081526001602052604090205490565b60035460a060020a900460ff1615610bf157600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054811115610c1f57600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054610c51908263ffffffff61122716565b600160a060020a038316600090815260208181526040808320338452909152902055610c7d8282611471565b5050565b6003546000908190819060a060020a900460ff1615610c9f57600080fd5b8451610cb290859063ffffffff61164816565b33600090815260016020526040902054909250821115610cd157600080fd5b5060005b84518110156109a8578451600090869083908110610cef57fe5b60209081029091010151600160a060020a03161415610d0d57600080fd5b84513390869083908110610d1d57fe5b60209081029091010151600160a060020a03161415610d3b57600080fd5b610d51846001600088858151811015156108d557fe5b600160008784815181101515610d6357fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110610d9457fe5b90602001906020020151600160a060020a031633600160a060020a031660008051602061170c833981519152866040518082815260200191505060405180910390a3600101610cd5565b600454600160a060020a0316331480610e015750600354600160a060020a031633145b1515610e0c57600080fd5b60035460a060020a900460ff1615610e2357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6000600160a060020a038416301415610e9957600080fd5b610aca8484611676565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107ac5780601f10610781576101008083540402835291602001916107ac565b60035460009060a060020a900460ff1615610f1857600080fd5b6107d883836113a0565b6000600160a060020a038416301415610f3a57600080fd5b610f4585858561123e565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610f7c578181015183820152602001610f64565b50505050905090810190601f168015610fa95780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610fc957600080fd5b506001949350505050565b6000600160a060020a038416301415610fec57600080fd5b610aca84846111a6565b6000600160a060020a03841630141561100e57600080fd5b610aca8484611560565b60035460009060a060020a900460ff161561103257600080fd5b6107d88383611676565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600454600160a060020a03163314806110885750600354600160a060020a031633145b151561109357600080fd5b600160a060020a03811615156110a857600080fd5b600454604051600160a060020a038084169216907f5705a19d157bea12552e53720dc7b75b73ea8b883da95f4af3b3b3bfbeab9b2790600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600160a060020a0316331461112857600080fd5b600160a060020a038116151561113d57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b33600081815260208181526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60008282018381101561121c57600080fd5b8091505b5092915050565b6000808383111561123757600080fd5b5050900390565b6000600160a060020a038316151561125557600080fd5b600160a060020a03841660009081526001602052604090205482111561127a57600080fd5b600160a060020a0384166000908152602081815260408083203384529091529020548211156112a857600080fd5b600160a060020a0384166000908152600160205260409020546112d1908363ffffffff61122716565b600160a060020a038086166000908152600160205260408082209390935590851681522054611306908363ffffffff61120a16565b600160a060020a0380851660009081526001602090815260408083209490945591871681528082528281203382529091522054611349908363ffffffff61122716565b600160a060020a03808616600081815260208181526040808320338452825291829020949094558051868152905192871693919260008051602061170c833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156113b757600080fd5b336000908152600160205260409020548211156113d357600080fd5b336000908152600160205260409020546113f3908363ffffffff61122716565b3360009081526001602052604080822092909255600160a060020a03851681522054611425908363ffffffff61120a16565b600160a060020a03841660008181526001602090815260409182902093909355805185815290519192339260008051602061170c8339815191529281900390910190a350600192915050565b600160a060020a03821660009081526001602052604090205481111561149657600080fd5b600160a060020a0382166000908152600160205260409020546114bf908263ffffffff61122716565b600160a060020a0383166000908152600160205260409020556002546114eb908263ffffffff61122716565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061170c8339815191529181900360200190a35050565b33600090815260208181526040808320600160a060020a0386168452909152812054808311156115b15733600090815260208181526040808320600160a060020a03881684529091528120556115e4565b6115c1818463ffffffff61122716565b33600090815260208181526040808320600160a060020a03891684529091529020555b33600081815260208181526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008083151561165b5760009150611220565b5082820282848281151561166b57fe5b041461121c57600080fd5b33600090815260208181526040808320600160a060020a03861684529091528120546116a8908363ffffffff61120a16565b33600081815260208181526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058205bdc6cee58fc2d7e727dbb15554397c05964a9fd905b3b820683ef59628ddadd0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000006765c793fa10079d00000000000000000000000000000007bf70a1bc2cbd666978290a316fd455ab0bbc5730000000000000000000000000000000000000000000000000000000000000004435043430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044350434300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CPCC
Arg [1] : _symbol (string): CPCC
Arg [2] : _totalSupply (uint256): 2000000000000000000000000000
Arg [3] : _owner (address): 0x7bF70a1bc2CBD666978290a316FD455Ab0bbc573

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000006765c793fa10079d0000000
Arg [3] : 0000000000000000000000007bf70a1bc2cbd666978290a316fd455ab0bbc573
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4350434300000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4350434300000000000000000000000000000000000000000000000000000000


Swarm Source

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