ETH Price: $2,642.36 (+1.37%)

Token

COA (COA)
 

Overview

Max Total Supply

68,000,000,000 COA

Holders

2,052

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
26,048 COA

Value
$0.00
0x791febf1d3719bb6b970aa5b913d749c6f309534
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:
Token

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-09-07
*/

pragma solidity ^0.4.16;

contract owned {
    address public owner;

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

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

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

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

contract TokenERC20 {
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    uint256 public totalSupply;

    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Burn(address indexed from, uint256 value);

    constructor(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);
        balanceOf[msg.sender] = totalSupply;
        name = tokenName;
        symbol = tokenSymbol;
    }

    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
    returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
    public
    returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        emit Burn(_from, _value);
        return true;
    }
}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract Token is owned, TokenERC20 {

    /* Initializes contract with initial supply tokens to the creator of the contract */
    constructor(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        emit Transfer(_from, _to, _value);
    }

    /// @notice Create `mintedAmount` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param mintedAmount the amount of tokens it will receive
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
}

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":"success","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":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

60806040526003805460ff1916601217905534801561001d57600080fd5b50604051610b48380380610b4883398101604090815281516020808401518385015160008054600160a060020a03191633908117825560035460ff16600a0a86026004819055908252600585529590209490945584018051929490930191849184918491610090916001918501906100b0565b5080516100a49060029060208401906100b0565b5050505050505061014b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100f157805160ff191683800117855561011e565b8280016001018555821561011e579182015b8281111561011e578251825591602001919060010190610103565b5061012a92915061012e565b5090565b61014891905b8082111561012a5760008155600101610134565b90565b6109ee8061015a6000396000f3006080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f257806342966c681461021d57806370a082311461023557806379c650681461025657806379cc67901461027c5780638da5cb5b146102a057806395d89b41146102d1578063a9059cbb146102e6578063cae9ca511461030a578063dd62ed3e14610373578063f2fde38b1461039a575b600080fd5b3480156100eb57600080fd5b506100f46103bb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a0360043516602435610448565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610475565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a036004358116906024351660443561047b565b3480156101fe57600080fd5b506102076104ea565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b5061018d6004356104f3565b34801561024157600080fd5b506101b6600160a060020a036004351661056b565b34801561026257600080fd5b5061027a600160a060020a036004351660243561057d565b005b34801561028857600080fd5b5061018d600160a060020a0360043516602435610633565b3480156102ac57600080fd5b506102b5610704565b60408051600160a060020a039092168252519081900360200190f35b3480156102dd57600080fd5b506100f4610713565b3480156102f257600080fd5b5061027a600160a060020a036004351660243561076b565b34801561031657600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261018d948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061077a9650505050505050565b34801561037f57600080fd5b506101b6600160a060020a0360043581169060243516610893565b3480156103a657600080fd5b5061027a600160a060020a03600435166108b0565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156104ab57600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020805483900390556104e08484846108f6565b5060019392505050565b60035460ff1681565b3360009081526005602052604081205482111561050f57600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60056020526000908152604090205481565b600054600160a060020a0316331461059457600080fd5b600160a060020a03821660009081526005602090815260408083208054850190556004805485019055805184815290513093927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a3604080518281529051600160a060020a0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a03821660009081526005602052604081205482111561065857600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561068857600080fd5b600160a060020a0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104405780601f1061041557610100808354040283529160200191610440565b6107763383836108f6565b5050565b6000836107878185610448565b1561088b576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b8381101561081f578181015183820152602001610807565b50505050905090810190601f16801561084c5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561086e57600080fd5b505af1158015610882573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a031633146108c757600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561090b57600080fd5b600160a060020a03831660009081526005602052604090205481111561093057600080fd5b600160a060020a0382166000908152600560205260409020548181011161095657600080fd5b600160a060020a03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050505600a165627a7a72305820d57c53a6a9ba42f89097a2fd72acc991353cd9962c7e75b7307357e375a6519000290000000000000000000000000000000000000000000000000000000fd51da800000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000003434f4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434f410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f257806342966c681461021d57806370a082311461023557806379c650681461025657806379cc67901461027c5780638da5cb5b146102a057806395d89b41146102d1578063a9059cbb146102e6578063cae9ca511461030a578063dd62ed3e14610373578063f2fde38b1461039a575b600080fd5b3480156100eb57600080fd5b506100f46103bb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a0360043516602435610448565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610475565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a036004358116906024351660443561047b565b3480156101fe57600080fd5b506102076104ea565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b5061018d6004356104f3565b34801561024157600080fd5b506101b6600160a060020a036004351661056b565b34801561026257600080fd5b5061027a600160a060020a036004351660243561057d565b005b34801561028857600080fd5b5061018d600160a060020a0360043516602435610633565b3480156102ac57600080fd5b506102b5610704565b60408051600160a060020a039092168252519081900360200190f35b3480156102dd57600080fd5b506100f4610713565b3480156102f257600080fd5b5061027a600160a060020a036004351660243561076b565b34801561031657600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261018d948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061077a9650505050505050565b34801561037f57600080fd5b506101b6600160a060020a0360043581169060243516610893565b3480156103a657600080fd5b5061027a600160a060020a03600435166108b0565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b505050505081565b336000908152600660209081526040808320600160a060020a039590951683529390529190912055600190565b60045481565b600160a060020a03831660009081526006602090815260408083203384529091528120548211156104ab57600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020805483900390556104e08484846108f6565b5060019392505050565b60035460ff1681565b3360009081526005602052604081205482111561050f57600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60056020526000908152604090205481565b600054600160a060020a0316331461059457600080fd5b600160a060020a03821660009081526005602090815260408083208054850190556004805485019055805184815290513093927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a3604080518281529051600160a060020a0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a03821660009081526005602052604081205482111561065857600080fd5b600160a060020a038316600090815260066020908152604080832033845290915290205482111561068857600080fd5b600160a060020a0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104405780601f1061041557610100808354040283529160200191610440565b6107763383836108f6565b5050565b6000836107878185610448565b1561088b576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b8381101561081f578181015183820152602001610807565b50505050905090810190601f16801561084c5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561086e57600080fd5b505af1158015610882573d6000803e3d6000fd5b50505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b600054600160a060020a031633146108c757600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561090b57600080fd5b600160a060020a03831660009081526005602052604090205481111561093057600080fd5b600160a060020a0382166000908152600560205260409020548181011161095657600080fd5b600160a060020a03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050505600a165627a7a72305820d57c53a6a9ba42f89097a2fd72acc991353cd9962c7e75b7307357e375a651900029

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

0000000000000000000000000000000000000000000000000000000fd51da800000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000003434f4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434f410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 68000000000
Arg [1] : tokenName (string): COA
Arg [2] : tokenSymbol (string): COA

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000fd51da800
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 434f410000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 434f410000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

5653:1437:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;494:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;494:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3178:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3178:167:0;-1:-1:-1;;;;;3178:167:0;;;;;;;;;;;;;;;;;;;;;;;;;579:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;579:26:0;;;;;;;;;;;;;;;;;;;;2613:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2613:296:0;-1:-1:-1;;;;;2613:296:0;;;;;;;;;;;;546:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;546:26:0;;;;;;;;;;;;;;;;;;;;;;;4258:374;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4258:374:0;;;;;614:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;614:45:0;-1:-1:-1;;;;;614:45:0;;;;;6824:263;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6824:263:0;-1:-1:-1;;;;;6824:263:0;;;;;;;;;4895:611;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4895:611:0;-1:-1:-1;;;;;4895:611:0;;;;;;;50:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50:20:0;;;;;;;;-1:-1:-1;;;;;50:20:0;;;;;;;;;;;;;;519;;8:9:-1;5:2;;;30:1;27;20:12;5:2;519:20:0;;;;2226:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2226:107:0;-1:-1:-1;;;;;2226:107:0;;;;;;;3744:339;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3744:339:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3744:339:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3744:339:0;;-1:-1:-1;3744:339:0;;-1:-1:-1;;;;;;;3744:339:0;666:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;666:66:0;-1:-1:-1;;;;;666:66:0;;;;;;;;;;231:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;231:97:0;-1:-1:-1;;;;;231:97:0;;;;;494:18;;;;;;;;;;;;;;;-1:-1:-1;;494:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3178:167::-;3285:10;3250:12;3275:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3275:31:0;;;;;;;;;;;;;:40;3333:4;;3178:167::o;579:26::-;;;;:::o;2613:296::-;-1:-1:-1;;;;;2738:16:0;;2695:12;2738:16;;;:9;:16;;;;;;;;2755:10;2738:28;;;;;;;;2728:38;;;2720:47;;;;;;-1:-1:-1;;;;;2801:16:0;;;;;;:9;:16;;;;;;;;2818:10;2801:28;;;;;;;:38;;;;;;;2850:29;2811:5;2867:3;2833:6;2850:9;:29::i;:::-;-1:-1:-1;2897:4:0;2613:296;;;;;:::o;546:26::-;;;;;;:::o;4258:374::-;4347:10;4304:12;4337:21;;;:9;:21;;;;;;:31;-1:-1:-1;4337:31:0;4329:40;;;;;;4426:10;4416:21;;;;:9;:21;;;;;;;;;:31;;;;;;;4497:11;:21;;;;;;;4578:24;;;;;;;;;;;;;;;;;-1:-1:-1;4620:4:0;4258:374;;;:::o;614:45::-;;;;;;;;;;;;;:::o;6824:263::-;197:5;;-1:-1:-1;;;;;197:5:0;183:10;:19;175:28;;;;;;-1:-1:-1;;;;;6909:17:0;;;;;;:9;:17;;;;;;;;:33;;;;;;6953:11;:27;;;;;;6996:31;;;;;;;7008:4;;6909:17;6996:31;;;;;;;;7043:36;;;;;;;;-1:-1:-1;;;;;7043:36:0;;;7052:4;;7043:36;;;;;;;;;6824:263;;:::o;4895:611::-;-1:-1:-1;;;;;4993:16:0;;4960:12;4993:16;;;:9;:16;;;;;;:26;-1:-1:-1;4993:26:0;4985:35;;;;;;-1:-1:-1;;;;;5107:16:0;;;;;;:9;:16;;;;;;;;5124:10;5107:28;;;;;;;;5097:38;;;5089:47;;;;;;-1:-1:-1;;;;;5169:16:0;;;;;;:9;:16;;;;;;;;:26;;;;;;;5268:9;:16;;;;;5285:10;5268:28;;;;;;;;:38;;;;;;;5369:11;:21;;;;;;;5457:19;;;;;;;;;;;;;;;;;-1:-1:-1;5494:4:0;4895:611;;;;:::o;50:20::-;;;-1:-1:-1;;;;;50:20:0;;:::o;519:::-;;;;;;;;;;;;;;-1:-1:-1;;519:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2226:107;2291:34;2301:10;2313:3;2318:6;2291:9;:34::i;:::-;2226:107;;:::o;3744:339::-;3846:12;3911:8;3935:25;3911:8;3953:6;3935:7;:25::i;:::-;3931:145;;;3977:61;;;;;4001:10;3977:61;;;;;;;;;;;;4021:4;3977:61;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3977:23:0;;;;;4001:10;4013:6;;4021:4;4027:10;;3977:61;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3977:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3977:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3977:61:0;;;;4060:4;4053:11;;3931:145;3744:339;;;;;;:::o;666:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;231:97::-;197:5;;-1:-1:-1;;;;;197:5:0;183:10;:19;175:28;;;;;;304:5;:16;;-1:-1:-1;;304:16:0;-1:-1:-1;;;;;304:16:0;;;;;;;;;;231:97::o;6028:599::-;-1:-1:-1;;;;;6117:10:0;;;;6108:20;;;;;;-1:-1:-1;;;;;6233:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;6233:26:0;6224:36;;;;;;-1:-1:-1;;;;;6354:14:0;;;;;;:9;:14;;;;;;6328:23;;;:40;6319:50;;;;;;-1:-1:-1;;;;;6403:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;6492:14;;;;;;;;;;:24;;;;;;6591:28;;;;;;;6492:14;;6591:28;;;;;;;;;;;6028:599;;;:::o

Swarm Source

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