ETH Price: $2,382.88 (+1.05%)

Token

FaceCoin (FC)
 

Overview

Max Total Supply

20,000,000 FC

Holders

487

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Balance
500 FC

Value
$0.00
0x948ffc7015bca0a029de7bdbe7238c064d8ec2c7
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:
MyAdvancedToken

Compiler Version
v0.4.14-nightly.2017.7.24+commit.cfb11ff7

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.2;
contract owned {
    address public owner;

    function owned() {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner {
        owner = newOwner;
    }
}

contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }

contract token {
    /* Public variables of the token */
    string public standard = 'Token 0.1';
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;

    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function token(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
        ) {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        totalSupply = initialSupply;                        // Update total supply
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        decimals = decimalUnits;                            // Amount of decimals for display purposes
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        require(balanceOf[msg.sender] >= _value);            // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]);  // Check for overflows
        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value)
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        returns (bool success) {    
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(balanceOf[_from] >= _value);                 // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]);  // Check for overflows
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        balanceOf[_from] -= _value;                          // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        allowance[_from][msg.sender] -= _value;
        Transfer(_from, _to, _value);
        return true;
    }

    /* This unnamed function is called whenever someone tries to send ether to it */
    function () {
        assert(false);     // Prevents accidental sending of ether
    }
}

contract MyAdvancedToken is owned, token {

    uint256 public sellPrice;
    uint256 public buyPrice;

    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function MyAdvancedToken(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
    ) token (initialSupply, tokenName, decimalUnits, tokenSymbol) {}

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        require(balanceOf[msg.sender] >= _value);            // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]);  // Check for overflows
        require(!frozenAccount[msg.sender]);                 // Check if frozen
        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }


    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        require(!frozenAccount[_from]);                      // Check if frozen            
        require(balanceOf[_from] >= _value);                 // Check if the sender has enough
        require(balanceOf[_to] + _value >= balanceOf[_to]);  // Check for overflows
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        balanceOf[_from] -= _value;                          // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
        allowance[_from][msg.sender] -= _value;
        Transfer(_from, _to, _value);
        return true;
    }

    function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

    function freezeAccount(address target, bool freeze) onlyOwner {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }

    function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner {
        sellPrice = newSellPrice;
        buyPrice = newBuyPrice;
    }

    function buy() payable {
        uint amount = msg.value / buyPrice;                // calculates the amount
        require(balanceOf[this] >= amount);                // checks if it has enough to sell
        balanceOf[msg.sender] += amount;                   // adds the amount to buyer's balance
        balanceOf[this] -= amount;                         // subtracts amount from seller's balance
        Transfer(this, msg.sender, amount);                // execute an event reflecting the change
    }

    function sell(uint256 amount) {
        require(balanceOf[msg.sender] >= amount);          // checks if the sender has enough to sell
        balanceOf[this] += amount;                         // adds the amount to owner's balance
        balanceOf[msg.sender] -= amount;                   // subtracts the amount from seller's balance
        if (!msg.sender.send(amount * sellPrice)) {        // sends ether to the seller. It's important
            assert(false);                                 // to do this last to avoid recursion attacks
        } else {
            Transfer(msg.sender, this, amount);            // executes an event reflecting on the change
        }               
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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"}]

606060405260408051908101604052600981527f546f6b656e20302e310000000000000000000000000000000000000000000000602082015260019080516200004d9291602001906200011c565b5034156200005a57600080fd5b604051620010a0380380620010a083398101604052808051919060200180518201919060200180519190602001805190910190505b838383835b5b60008054600160a060020a03191633600160a060020a03161790555b600160a060020a033316600090815260066020526040902084905560058490556002838051620000e69291602001906200011c565b506003818051620000fc9291602001906200011c565b506004805460ff191660ff84161790555b505050505b50505050620001c6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b5b506200019e929150620001a2565b5090565b620001c391905b808211156200019e5760008155600101620001a9565b5090565b90565b610eca80620001d66000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461013057806306fdde031461014b578063095ea7b3146101d657806318160ddd1461020c57806323b872dd14610231578063313ce5671461026d5780634b750334146102965780635a3b7e42146102bb57806370a082311461034657806379c65068146103775780638620410b1461039b5780638da5cb5b146103c057806395d89b41146103ef578063a6f2ae3a1461047a578063a9059cbb14610484578063b414d4b6146104a8578063cae9ca51146104db578063dd62ed3e14610554578063e4849b321461058b578063e724529c146105a3578063f2fde38b146105c9575b341561012557600080fd5b61012e5bfe5b5b565b005b341561013b57600080fd5b61012e6004356024356105ea565b005b341561015657600080fd5b61015e610615565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e157600080fd5b6101f8600160a060020a03600435166024356106b3565b604051901515815260200160405180910390f35b341561021757600080fd5b61021f6106e4565b60405190815260200160405180910390f35b341561023c57600080fd5b6101f8600160a060020a03600435811690602435166044356106ea565b604051901515815260200160405180910390f35b341561027857600080fd5b61028061080d565b60405160ff909116815260200160405180910390f35b34156102a157600080fd5b61021f610816565b60405190815260200160405180910390f35b34156102c657600080fd5b61015e61081c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035157600080fd5b61021f600160a060020a03600435166108ba565b60405190815260200160405180910390f35b341561038257600080fd5b61012e600160a060020a03600435166024356108cc565b005b34156103a657600080fd5b61021f610970565b60405190815260200160405180910390f35b34156103cb57600080fd5b6103d3610976565b604051600160a060020a03909116815260200160405180910390f35b34156103fa57600080fd5b61015e610985565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61012e610a23565b005b341561048f57600080fd5b61012e600160a060020a0360043516602435610ab6565b005b34156104b357600080fd5b6101f8600160a060020a0360043516610b81565b604051901515815260200160405180910390f35b34156104e657600080fd5b6101f860048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b9695505050505050565b604051901515815260200160405180910390f35b341561055f57600080fd5b61021f600160a060020a0360043581169060243516610cca565b60405190815260200160405180910390f35b341561059657600080fd5b61012e600435610ce7565b005b34156105ae57600080fd5b61012e600160a060020a03600435166024351515610da8565b005b34156105d457600080fd5b61012e600160a060020a0360043516610e36565b005b60005433600160a060020a0390811691161461060557600080fd5b600882905560098190555b5b5050565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b505050505081565b600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60055481565b600160a060020a0383166000908152600a602052604081205460ff161561071057600080fd5b600160a060020a0384166000908152600660205260409020548290101561073657600080fd5b600160a060020a038316600090815260066020526040902054828101101561075d57600080fd5b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561079057600080fd5b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452949091529081902080548690039055600080516020610e7f8339815191529085905190815260200160405180910390a35060015b9392505050565b60045460ff1681565b60085481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146108e757600080fd5b600160a060020a0380831660009081526006602052604080822080548501905560058054850190553090921691600080516020610e7f8339815191529084905190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020610e7f8339815191528360405190815260200160405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b505050505081565b600060095434811515610a3257fe5b600160a060020a033016600090815260066020526040902054919004915081901015610a5d57600080fd5b600160a060020a033381166000818152600660205260408082208054860190553090931680825290839020805485900390559091600080516020610e7f8339815191529084905190815260200160405180910390a35b50565b600160a060020a03331660009081526006602052604090205481901015610adc57600080fd5b600160a060020a0382166000908152600660205260409020548181011015610b0357600080fd5b600160a060020a0333166000908152600a602052604090205460ff1615610b2957600080fd5b600160a060020a03338116600081815260066020526040808220805486900390559285168082529083902080548501905591600080516020610e7f8339815191529084905190815260200160405180910390a35b5050565b600a6020526000908152604090205460ff1681565b600083610ba381856106b3565b15610cc15780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c5a5780820151818401525b602001610c41565b50505050905090810190601f168015610c875780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ca857600080fd5b6102c65a03f11515610cb957600080fd5b505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610d0d57600080fd5b600160a060020a03308116600090815260066020526040808220805485019055339092168082529082902080548490039055600854909190830280156108fc029151600060405180830381858888f193505050501515610d6e57fe5b610ab3565b30600160a060020a031633600160a060020a0316600080516020610e7f8339815191528360405190815260200160405180910390a35b5b50565b60005433600160a060020a03908116911614610dc357600080fd5b600160a060020a0382166000908152600a602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60005433600160a060020a03908116911614610e5157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820a3eb27180bf69a21e7086471c844f1b9d16795c97e585c6b3eebaddb7e59704600290000000000000000000000000000000000000000000000000000000001312d000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000846616365436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024643000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461013057806306fdde031461014b578063095ea7b3146101d657806318160ddd1461020c57806323b872dd14610231578063313ce5671461026d5780634b750334146102965780635a3b7e42146102bb57806370a082311461034657806379c65068146103775780638620410b1461039b5780638da5cb5b146103c057806395d89b41146103ef578063a6f2ae3a1461047a578063a9059cbb14610484578063b414d4b6146104a8578063cae9ca51146104db578063dd62ed3e14610554578063e4849b321461058b578063e724529c146105a3578063f2fde38b146105c9575b341561012557600080fd5b61012e5bfe5b5b565b005b341561013b57600080fd5b61012e6004356024356105ea565b005b341561015657600080fd5b61015e610615565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e157600080fd5b6101f8600160a060020a03600435166024356106b3565b604051901515815260200160405180910390f35b341561021757600080fd5b61021f6106e4565b60405190815260200160405180910390f35b341561023c57600080fd5b6101f8600160a060020a03600435811690602435166044356106ea565b604051901515815260200160405180910390f35b341561027857600080fd5b61028061080d565b60405160ff909116815260200160405180910390f35b34156102a157600080fd5b61021f610816565b60405190815260200160405180910390f35b34156102c657600080fd5b61015e61081c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035157600080fd5b61021f600160a060020a03600435166108ba565b60405190815260200160405180910390f35b341561038257600080fd5b61012e600160a060020a03600435166024356108cc565b005b34156103a657600080fd5b61021f610970565b60405190815260200160405180910390f35b34156103cb57600080fd5b6103d3610976565b604051600160a060020a03909116815260200160405180910390f35b34156103fa57600080fd5b61015e610985565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019b5780820151818401525b602001610182565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61012e610a23565b005b341561048f57600080fd5b61012e600160a060020a0360043516602435610ab6565b005b34156104b357600080fd5b6101f8600160a060020a0360043516610b81565b604051901515815260200160405180910390f35b34156104e657600080fd5b6101f860048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b9695505050505050565b604051901515815260200160405180910390f35b341561055f57600080fd5b61021f600160a060020a0360043581169060243516610cca565b60405190815260200160405180910390f35b341561059657600080fd5b61012e600435610ce7565b005b34156105ae57600080fd5b61012e600160a060020a03600435166024351515610da8565b005b34156105d457600080fd5b61012e600160a060020a0360043516610e36565b005b60005433600160a060020a0390811691161461060557600080fd5b600882905560098190555b5b5050565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b505050505081565b600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60055481565b600160a060020a0383166000908152600a602052604081205460ff161561071057600080fd5b600160a060020a0384166000908152600660205260409020548290101561073657600080fd5b600160a060020a038316600090815260066020526040902054828101101561075d57600080fd5b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561079057600080fd5b600160a060020a0380851660008181526006602090815260408083208054889003905587851680845281842080548901905584845260078352818420339096168452949091529081902080548690039055600080516020610e7f8339815191529085905190815260200160405180910390a35060015b9392505050565b60045460ff1681565b60085481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b505050505081565b60066020526000908152604090205481565b60005433600160a060020a039081169116146108e757600080fd5b600160a060020a0380831660009081526006602052604080822080548501905560058054850190553090921691600080516020610e7f8339815191529084905190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020610e7f8339815191528360405190815260200160405180910390a35b5b5050565b60095481565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b505050505081565b600060095434811515610a3257fe5b600160a060020a033016600090815260066020526040902054919004915081901015610a5d57600080fd5b600160a060020a033381166000818152600660205260408082208054860190553090931680825290839020805485900390559091600080516020610e7f8339815191529084905190815260200160405180910390a35b50565b600160a060020a03331660009081526006602052604090205481901015610adc57600080fd5b600160a060020a0382166000908152600660205260409020548181011015610b0357600080fd5b600160a060020a0333166000908152600a602052604090205460ff1615610b2957600080fd5b600160a060020a03338116600081815260066020526040808220805486900390559285168082529083902080548501905591600080516020610e7f8339815191529084905190815260200160405180910390a35b5050565b600a6020526000908152604090205460ff1681565b600083610ba381856106b3565b15610cc15780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c5a5780820151818401525b602001610c41565b50505050905090810190601f168015610c875780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ca857600080fd5b6102c65a03f11515610cb957600080fd5b505050600191505b5b509392505050565b600760209081526000928352604080842090915290825290205481565b600160a060020a03331660009081526006602052604090205481901015610d0d57600080fd5b600160a060020a03308116600090815260066020526040808220805485019055339092168082529082902080548490039055600854909190830280156108fc029151600060405180830381858888f193505050501515610d6e57fe5b610ab3565b30600160a060020a031633600160a060020a0316600080516020610e7f8339815191528360405190815260200160405180910390a35b5b50565b60005433600160a060020a03908116911614610dc357600080fd5b600160a060020a0382166000908152600a602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60005433600160a060020a03908116911614610e5157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820a3eb27180bf69a21e7086471c844f1b9d16795c97e585c6b3eebaddb7e5970460029

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

0000000000000000000000000000000000000000000000000000000001312d000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000846616365436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024643000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 20000000
Arg [1] : tokenName (string): FaceCoin
Arg [2] : decimalUnits (uint8): 2
Arg [3] : tokenSymbol (string): FC

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000001312d00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 46616365436f696e000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4643000000000000000000000000000000000000000000000000000000000000


Swarm Source

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