ETH Price: $3,385.09 (+1.19%)

Token

Power Fans Token (PFC)
 

Overview

Max Total Supply

94,893,201.882 PFC

Holders

152

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,430 PFC

Value
$0.00
0xb1BFdfb55CC30f5B0535e079aD93c72Dbd9bA0E7
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:
PFC

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.11;

contract ERC20Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}


contract Controlled {
    /// @notice The address of the controller is the only address that can call
    ///  a function with this modifier
    modifier onlyController { if (msg.sender != controller) throw; _; }

    address public controller;

    function Controlled() { controller = msg.sender;}

    /// @notice Changes the controller of the contract
    /// @param _newController The new controller of the contract
    function changeController(address _newController) onlyController {
        controller = _newController;
    }
}

contract StandardToken is ERC20Token ,Controlled{

    bool public showValue=true;

    // Flag that determines if the token is transferable or not.
    bool public transfersEnabled;

    function transfer(address _to, uint256 _value) returns (bool success) {

        if(!transfersEnabled) throw;

        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            Transfer(msg.sender, _to, _value);
            return true;
        } else {
            return false;
        }
    }

    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {

        if(!transfersEnabled) throw;
        if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
            balances[_to] += _value;
            balances[_from] -= _value;
            allowed[_from][msg.sender] -= _value;
            Transfer(_from, _to, _value);
            return true;
        } else {
            return false;
        }
    }

    function balanceOf(address _owner) constant returns (uint256 balance) {
        if(!showValue)
        return 0;
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) returns (bool success) {
        if(!transfersEnabled) throw;
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        if(!transfersEnabled) throw;
        return allowed[_owner][_spender];
    }

    /// @notice Enables token holders to transfer their tokens freely if true
    /// @param _transfersEnabled True if transfers are allowed in the clone
    function enableTransfers(bool _transfersEnabled) onlyController {
        transfersEnabled = _transfersEnabled;
    }
    function enableShowValue(bool _showValue) onlyController {
        showValue = _showValue;
    }

    function generateTokens(address _owner, uint _amount
    ) onlyController returns (bool) {
        uint curTotalSupply = totalSupply;
        if (curTotalSupply + _amount < curTotalSupply) throw; // Check for overflow
        totalSupply=curTotalSupply + _amount;

        balances[_owner]+=_amount;

        Transfer(0, _owner, _amount);
        return true;
    }
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
}

contract MiniMeTokenSimple is StandardToken {

    string public name;                //The Token's name: e.g. DigixDAO Tokens
    uint8 public decimals;             //Number of decimals of the smallest unit
    string public symbol;              //An identifier: e.g. REP
    string public version = 'MMT_0.1'; //An arbitrary versioning scheme


    // `parentToken` is the Token address that was cloned to produce this token;
    //  it will be 0x0 for a token that was not cloned
    address public parentToken;

    // `parentSnapShotBlock` is the block number from the Parent Token that was
    //  used to determine the initial distribution of the Clone Token
    uint public parentSnapShotBlock;

    // `creationBlock` is the block number that the Clone Token was created
    uint public creationBlock;

    // The factory used to create new clone tokens
    address public tokenFactory;

    ////////////////
    // Constructor
    ////////////////

    /// @notice Constructor to create a MiniMeTokenSimple
    /// @param _tokenFactory The address of the MiniMeTokenFactory contract that
    ///  will create the Clone token contracts, the token factory needs to be
    ///  deployed first
    /// @param _parentToken Address of the parent token, set to 0x0 if it is a
    ///  new token
    /// @param _parentSnapShotBlock Block of the parent token that will
    ///  determine the initial distribution of the clone token, set to 0 if it
    ///  is a new token
    /// @param _tokenName Name of the new token
    /// @param _decimalUnits Number of decimals of the new token
    /// @param _tokenSymbol Token Symbol for the new token
    /// @param _transfersEnabled If true, tokens will be able to be transferred
    function MiniMeTokenSimple(
    address _tokenFactory,
    address _parentToken,
    uint _parentSnapShotBlock,
    string _tokenName,
    uint8 _decimalUnits,
    string _tokenSymbol,
    bool _transfersEnabled
    ) {
        tokenFactory = _tokenFactory;
        name = _tokenName;                                 // Set the name
        decimals = _decimalUnits;                          // Set the decimals
        symbol = _tokenSymbol;                             // Set the symbol
        parentToken = _parentToken;
        parentSnapShotBlock = _parentSnapShotBlock;
        transfersEnabled = _transfersEnabled;
        creationBlock = block.number;
    }
    //////////
    // Safety Methods
    //////////

    /// @notice This method can be used by the controller to extract mistakenly
    ///  sent tokens to this contract.
    /// @param _token The address of the token contract that you want to recover
    ///  set to 0 in case you want to extract ether.
    function claimTokens(address _token) onlyController {
        if (_token == 0x0) {
            controller.transfer(this.balance);
            return;
        }

        ERC20Token token = ERC20Token(_token);
        uint balance = token.balanceOf(this);
        token.transfer(controller, balance);
        ClaimedTokens(_token, controller, balance);
    }

    event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount);

}

contract PFC is MiniMeTokenSimple {

    function PFC(address _tokenFactory)
    MiniMeTokenSimple(
    _tokenFactory,
    0x0,                     // no parent token
    0,                       // no snapshot block number from parent
    "Power Fans Token",      // Token name
    18,                      // Decimals
    "PFC",                   // Symbol
    false                    // Enable transfers
    ) {}
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"showValue","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_showValue","type":"bool"}],"name":"enableShowValue","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

606060409081526001805460a060020a60ff02191674010000000000000000000000000000000000000000179055805190810160405260078082527f4d4d545f302e3100000000000000000000000000000000000000000000000000602083015290805162000073929160200190620001de565b5034156200008057600080fd5b60405160208062001122833981016040528080519150505b806000806040805190810160405280601081526020017f506f7765722046616e7320546f6b656e00000000000000000000000000000000815250601260408051908101604052600381527f5046430000000000000000000000000000000000000000000000000000000000602082015260005b5b60018054600160a060020a03191633600160a060020a03161790555b600b8054600160a060020a031916600160a060020a038916179055600484805162000158929160200190620001de565b506005805460ff191660ff851617905560068280516200017d929160200190620001de565b5060088054600160a060020a031916600160a060020a03881617905560098590556001805460a860020a60ff02191675010000000000000000000000000000000000000000008315150217905543600a555b505050505050505b5062000288565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b5b506200026092915062000264565b5090565b6200028591905b808211156200026057600081556001016200026b565b5090565b90565b610e8a80620002986000396000f3006060604052361561010c5763ffffffff60e060020a60003504166306fdde038114610111578063095ea7b31461019c57806317634514146101d257806318160ddd146101f75780631c61bd381461021c57806323b872dd14610243578063313ce5671461027f5780633cebb823146102a857806354fd4d50146102c957806370a082311461035457806380a5400114610385578063827f32c0146103b457806395d89b41146103ea578063a9059cbb14610475578063bef97c87146104ab578063c5bcc4f1146104d2578063d5b42496146104f7578063dd62ed3e14610511578063df8de3e714610548578063e77772fe14610569578063f41e60c514610598578063f77c4791146105b2575b600080fd5b341561011c57600080fd5b6101246105e1565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101615780820151818401525b602001610148565b50505050905090810190601f16801561018e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a757600080fd5b6101be600160a060020a036004351660243561067f565b604051901515815260200160405180910390f35b34156101dd57600080fd5b6101e5610704565b60405190815260200160405180910390f35b341561020257600080fd5b6101e561070a565b60405190815260200160405180910390f35b341561022757600080fd5b6101be610710565b604051901515815260200160405180910390f35b341561024e57600080fd5b6101be600160a060020a0360043581169060243516604435610731565b604051901515815260200160405180910390f35b341561028a57600080fd5b610292610845565b60405160ff909116815260200160405180910390f35b34156102b357600080fd5b6102c7600160a060020a036004351661084e565b005b34156102d457600080fd5b610124610896565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101615780820151818401525b602001610148565b50505050905090810190601f16801561018e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035f57600080fd5b6101e5600160a060020a0360043516610934565b60405190815260200160405180910390f35b341561039057600080fd5b610398610983565b604051600160a060020a03909116815260200160405180910390f35b34156103bf57600080fd5b6101be600160a060020a0360043516602435610992565b604051901515815260200160405180910390f35b34156103f557600080fd5b610124610a2e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101615780820151818401525b602001610148565b50505050905090810190601f16801561018e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048057600080fd5b6101be600160a060020a0360043516602435610acc565b604051901515815260200160405180910390f35b34156104b657600080fd5b6101be610b91565b604051901515815260200160405180910390f35b34156104dd57600080fd5b6101e5610ba1565b60405190815260200160405180910390f35b341561050257600080fd5b6102c76004351515610ba7565b005b341561051c57600080fd5b6101e5600160a060020a0360043581169060243516610c00565b60405190815260200160405180910390f35b341561055357600080fd5b6102c7600160a060020a0360043516610c49565b005b341561057457600080fd5b610398610df7565b604051600160a060020a03909116815260200160405180910390f35b34156105a357600080fd5b6102c76004351515610e06565b005b34156105bd57600080fd5b610398610e4f565b604051600160a060020a03909116815260200160405180910390f35b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b505050505081565b60015460009060a860020a900460ff16151561069a57600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600a5481565b60005481565b60015474010000000000000000000000000000000000000000900460ff1681565b60015460009060a860020a900460ff16151561074c57600080fd5b600160a060020a03841660009081526002602052604090205482901080159061079c5750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156107a85750600082115b1561083957600160a060020a03808416600081815260026020908152604080832080548801905588851680845281842080548990039055600383528184203390961684529490915290819020805486900390559091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600161083d565b5060005b5b9392505050565b60055460ff1681565b60015433600160a060020a0390811691161461086957600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b505050505081565b60015460009074010000000000000000000000000000000000000000900460ff1615156109635750600061097e565b50600160a060020a0381166000908152600260205260409020545b919050565b600854600160a060020a031681565b600154600090819033600160a060020a039081169116146109b257600080fd5b60005490508083820110156109c657600080fd5b8083016000908155600160a060020a038516808252600260205260408083208054870190559091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b5b5092915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b505050505081565b60015460009060a860020a900460ff161515610ae757600080fd5b600160a060020a033316600090815260026020526040902054829010801590610b105750600082115b15610b8257600160a060020a033381166000818152600260205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060016106fe565b5060006106fe565b5b92915050565b60015460a860020a900460ff1681565b60095481565b60015433600160a060020a03908116911614610bc257600080fd5b6001805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000831515021790555b5b50565b60015460009060a860020a900460ff161515610c1b57600080fd5b50600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600154600090819033600160a060020a03908116911614610c6957600080fd5b600160a060020a0383161515610cb757600154600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610cb257600080fd5b610df1565b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610d1157600080fd5b6102c65a03f11515610d2257600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610d9157600080fd5b6102c65a03f11515610da257600080fd5b50505060405180515050600154600160a060020a039081169084167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8360405190815260200160405180910390a35b5b505050565b600b54600160a060020a031681565b60015433600160a060020a03908116911614610e2157600080fd5b6001805475ff000000000000000000000000000000000000000000191660a860020a831515021790555b5b50565b600154600160a060020a0316815600a165627a7a723058209b4d3ae9d02aba0b701b7feea24a661233968aff6ca4faf921dccfcd7d454cb00029000000000000000000000000b793d8996cfb2ab6b336c5136d7aba2256a62166

Deployed Bytecode

0x6060604052361561010c5763ffffffff60e060020a60003504166306fdde038114610111578063095ea7b31461019c57806317634514146101d257806318160ddd146101f75780631c61bd381461021c57806323b872dd14610243578063313ce5671461027f5780633cebb823146102a857806354fd4d50146102c957806370a082311461035457806380a5400114610385578063827f32c0146103b457806395d89b41146103ea578063a9059cbb14610475578063bef97c87146104ab578063c5bcc4f1146104d2578063d5b42496146104f7578063dd62ed3e14610511578063df8de3e714610548578063e77772fe14610569578063f41e60c514610598578063f77c4791146105b2575b600080fd5b341561011c57600080fd5b6101246105e1565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101615780820151818401525b602001610148565b50505050905090810190601f16801561018e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a757600080fd5b6101be600160a060020a036004351660243561067f565b604051901515815260200160405180910390f35b34156101dd57600080fd5b6101e5610704565b60405190815260200160405180910390f35b341561020257600080fd5b6101e561070a565b60405190815260200160405180910390f35b341561022757600080fd5b6101be610710565b604051901515815260200160405180910390f35b341561024e57600080fd5b6101be600160a060020a0360043581169060243516604435610731565b604051901515815260200160405180910390f35b341561028a57600080fd5b610292610845565b60405160ff909116815260200160405180910390f35b34156102b357600080fd5b6102c7600160a060020a036004351661084e565b005b34156102d457600080fd5b610124610896565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101615780820151818401525b602001610148565b50505050905090810190601f16801561018e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035f57600080fd5b6101e5600160a060020a0360043516610934565b60405190815260200160405180910390f35b341561039057600080fd5b610398610983565b604051600160a060020a03909116815260200160405180910390f35b34156103bf57600080fd5b6101be600160a060020a0360043516602435610992565b604051901515815260200160405180910390f35b34156103f557600080fd5b610124610a2e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101615780820151818401525b602001610148565b50505050905090810190601f16801561018e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048057600080fd5b6101be600160a060020a0360043516602435610acc565b604051901515815260200160405180910390f35b34156104b657600080fd5b6101be610b91565b604051901515815260200160405180910390f35b34156104dd57600080fd5b6101e5610ba1565b60405190815260200160405180910390f35b341561050257600080fd5b6102c76004351515610ba7565b005b341561051c57600080fd5b6101e5600160a060020a0360043581169060243516610c00565b60405190815260200160405180910390f35b341561055357600080fd5b6102c7600160a060020a0360043516610c49565b005b341561057457600080fd5b610398610df7565b604051600160a060020a03909116815260200160405180910390f35b34156105a357600080fd5b6102c76004351515610e06565b005b34156105bd57600080fd5b610398610e4f565b604051600160a060020a03909116815260200160405180910390f35b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b505050505081565b60015460009060a860020a900460ff16151561069a57600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600a5481565b60005481565b60015474010000000000000000000000000000000000000000900460ff1681565b60015460009060a860020a900460ff16151561074c57600080fd5b600160a060020a03841660009081526002602052604090205482901080159061079c5750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156107a85750600082115b1561083957600160a060020a03808416600081815260026020908152604080832080548801905588851680845281842080548990039055600383528184203390961684529490915290819020805486900390559091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600161083d565b5060005b5b9392505050565b60055460ff1681565b60015433600160a060020a0390811691161461086957600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b505050505081565b60015460009074010000000000000000000000000000000000000000900460ff1615156109635750600061097e565b50600160a060020a0381166000908152600260205260409020545b919050565b600854600160a060020a031681565b600154600090819033600160a060020a039081169116146109b257600080fd5b60005490508083820110156109c657600080fd5b8083016000908155600160a060020a038516808252600260205260408083208054870190559091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b5b5092915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b505050505081565b60015460009060a860020a900460ff161515610ae757600080fd5b600160a060020a033316600090815260026020526040902054829010801590610b105750600082115b15610b8257600160a060020a033381166000818152600260205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060016106fe565b5060006106fe565b5b92915050565b60015460a860020a900460ff1681565b60095481565b60015433600160a060020a03908116911614610bc257600080fd5b6001805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000831515021790555b5b50565b60015460009060a860020a900460ff161515610c1b57600080fd5b50600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600154600090819033600160a060020a03908116911614610c6957600080fd5b600160a060020a0383161515610cb757600154600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610cb257600080fd5b610df1565b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610d1157600080fd5b6102c65a03f11515610d2257600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610d9157600080fd5b6102c65a03f11515610da257600080fd5b50505060405180515050600154600160a060020a039081169084167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8360405190815260200160405180910390a35b5b505050565b600b54600160a060020a031681565b60015433600160a060020a03908116911614610e2157600080fd5b6001805475ff000000000000000000000000000000000000000000191660a860020a831515021790555b5b50565b600154600160a060020a0316815600a165627a7a723058209b4d3ae9d02aba0b701b7feea24a661233968aff6ca4faf921dccfcd7d454cb00029

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

000000000000000000000000b793d8996cfb2ab6b336c5136d7aba2256a62166

-----Decoded View---------------
Arg [0] : _tokenFactory (address): 0xb793d8996cFB2aB6b336C5136d7AbA2256A62166

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b793d8996cfb2ab6b336c5136d7aba2256a62166


Swarm Source

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