ETH Price: $3,439.64 (-2.74%)
Gas: 3 Gwei

Token

BASIC (BASIC)
 

Overview

Max Total Supply

1,000,000,000 BASIC

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
37,060,427.587916701 BASIC

Value
$0.00
0x69de5e18113ee6ea8a69cb46cabda371d5e581d6
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:
BASIC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-07-31
*/

/**
tg @basicerc
*/
// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint256) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

}





pragma solidity ^0.8.0;




contract BASIC is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162001b3e38038062001b3e8339818101604052810190620000299190620002f8565b858584868584600490805190602001906200004692919062000191565b5083600590805190602001906200005f92919062000191565b5081600a6200006f9190620004b0565b836200007c9190620005ed565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001309190620003d1565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000184573d6000803e3d6000fd5b50505050505050620007f4565b8280546200019f90620006d6565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b600062000258620002528462000422565b620003ee565b9050828152602081018484840111156200027157600080fd5b6200027e848285620006a0565b509392505050565b6000815190506200029781620007a6565b92915050565b600081519050620002ae81620007c0565b92915050565b600082601f830112620002c657600080fd5b8151620002d884826020860162000241565b91505092915050565b600081519050620002f281620007da565b92915050565b60008060008060008060c087890312156200031257600080fd5b600087015167ffffffffffffffff8111156200032d57600080fd5b6200033b89828a01620002b4565b965050602087015167ffffffffffffffff8111156200035957600080fd5b6200036789828a01620002b4565b95505060406200037a89828a01620002e1565b94505060606200038d89828a01620002e1565b9350506080620003a089828a0162000286565b92505060a0620003b389828a016200029d565b9150509295509295509295565b620003cb8162000696565b82525050565b6000602082019050620003e86000830184620003c0565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200041857620004176200076a565b5b8060405250919050565b600067ffffffffffffffff82111562000440576200043f6200076a565b5b601f19601f8301169050602081019050919050565b6000808291508390505b6001851115620004a7578086048111156200047f576200047e6200070c565b5b60018516156200048f5780820291505b80810290506200049f8562000799565b94506200045f565b94509492505050565b6000620004bd8262000696565b9150620004ca8362000696565b9250620004f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000501565b905092915050565b600082620005135760019050620005e6565b81620005235760009050620005e6565b81600181146200053c576002811462000547576200057d565b6001915050620005e6565b60ff8411156200055c576200055b6200070c565b5b8360020a9150848211156200057657620005756200070c565b5b50620005e6565b5060208310610133831016604e8410600b8410161715620005b75782820a905083811115620005b157620005b06200070c565b5b620005e6565b620005c6848484600162000455565b92509050818404811115620005e057620005df6200070c565b5b81810290505b9392505050565b6000620005fa8262000696565b9150620006078362000696565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200064357620006426200070c565b5b828202905092915050565b60006200065b8262000676565b9050919050565b60006200066f8262000676565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006c0578082015181840152602081019050620006a3565b83811115620006d0576000848401525b50505050565b60006002820490506001821680620006ef57607f821691505b602082108114156200070657620007056200073b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620007b1816200064e565b8114620007bd57600080fd5b50565b620007cb8162000662565b8114620007d757600080fd5b50565b620007e58162000696565b8114620007f157600080fd5b50565b61133a80620008046000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea26469706673582212208cdecc20b7452d79cfb4af3abe9655ddaa2a2a91f3e09e32df8fbff09b614b8464736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000b6b4444c283f746eb30a204f84d96e7bf1ada9bd000000000000000000000000b6b4444c283f746eb30a204f84d96e7bf1ada9bd0000000000000000000000000000000000000000000000000000000000000005424153494300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054241534943000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea26469706673582212208cdecc20b7452d79cfb4af3abe9655ddaa2a2a91f3e09e32df8fbff09b614b8464736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000b6b4444c283f746eb30a204f84d96e7bf1ada9bd000000000000000000000000b6b4444c283f746eb30a204f84d96e7bf1ada9bd0000000000000000000000000000000000000000000000000000000000000005424153494300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054241534943000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): BASIC
Arg [1] : symbol_ (string): BASIC
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 1000000000
Arg [4] : tokenOwner_ (address): 0xB6B4444c283f746Eb30a204f84d96E7bf1adA9Bd
Arg [5] : feeReceiver_ (address): 0xB6B4444c283f746Eb30a204f84d96E7bf1adA9Bd

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 000000000000000000000000b6b4444c283f746eb30a204f84d96e7bf1ada9bd
Arg [5] : 000000000000000000000000b6b4444c283f746eb30a204f84d96e7bf1ada9bd
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4241534943000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4241534943000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10808:374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5091:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7267:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6220:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7918:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6053:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8749:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6391:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5310:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9467:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6731:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6969:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5091:100;5145:13;5178:5;5171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5091:100;:::o;7267:169::-;7350:4;7367:39;7376:12;:10;:12::i;:::-;7390:7;7399:6;7367:8;:39::i;:::-;7424:4;7417:11;;7267:169;;;;:::o;6220:108::-;6281:7;6308:12;;6301:19;;6220:108;:::o;7918:422::-;8024:4;8041:36;8051:6;8059:9;8070:6;8041:9;:36::i;:::-;8090:24;8117:11;:19;8129:6;8117:19;;;;;;;;;;;;;;;:33;8137:12;:10;:12::i;:::-;8117:33;;;;;;;;;;;;;;;;8090:60;;8189:6;8169:16;:26;;8161:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8251:57;8260:6;8268:12;:10;:12::i;:::-;8301:6;8282:16;:25;;;;:::i;:::-;8251:8;:57::i;:::-;8328:4;8321:11;;;7918:422;;;;;:::o;6053:102::-;6111:7;6138:9;;6131:16;;6053:102;:::o;8749:215::-;8837:4;8854:80;8863:12;:10;:12::i;:::-;8877:7;8923:10;8886:11;:25;8898:12;:10;:12::i;:::-;8886:25;;;;;;;;;;;;;;;:34;8912:7;8886:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8854:8;:80::i;:::-;8952:4;8945:11;;8749:215;;;;:::o;6391:127::-;6465:7;6492:9;:18;6502:7;6492:18;;;;;;;;;;;;;;;;6485:25;;6391:127;;;:::o;5310:104::-;5366:13;5399:7;5392:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5310:104;:::o;9467:377::-;9560:4;9577:24;9604:11;:25;9616:12;:10;:12::i;:::-;9604:25;;;;;;;;;;;;;;;:34;9630:7;9604:34;;;;;;;;;;;;;;;;9577:61;;9677:15;9657:16;:35;;9649:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9745:67;9754:12;:10;:12::i;:::-;9768:7;9796:15;9777:16;:34;;;;:::i;:::-;9745:8;:67::i;:::-;9832:4;9825:11;;;9467:377;;;;:::o;6731:175::-;6817:4;6834:42;6844:12;:10;:12::i;:::-;6858:9;6869:6;6834:9;:42::i;:::-;6894:4;6887:11;;6731:175;;;;:::o;6969:151::-;7058:7;7085:11;:18;7097:5;7085:18;;;;;;;;;;;;;;;:27;7104:7;7085:27;;;;;;;;;;;;;;;;7078:34;;6969:151;;;;:::o;3579:98::-;3632:7;3659:10;3652:17;;3579:98;:::o;10412:346::-;10531:1;10514:19;;:5;:19;;;;10506:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10612:1;10593:21;;:7;:21;;;;10585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10696:6;10666:11;:18;10678:5;10666:18;;;;;;;;;;;;;;;:27;10685:7;10666:27;;;;;;;;;;;;;;;:36;;;;10734:7;10718:32;;10727:5;10718:32;;;10743:6;10718:32;;;;;;:::i;:::-;;;;;;;;10412:346;;;:::o;9854:546::-;9978:1;9960:20;;:6;:20;;;;9952:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10062:1;10041:23;;:9;:23;;;;10033:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10119:21;10143:9;:17;10153:6;10143:17;;;;;;;;;;;;;;;;10119:41;;10196:6;10179:13;:23;;10171:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10292:6;10276:13;:22;;;;:::i;:::-;10256:9;:17;10266:6;10256:17;;;;;;;;;;;;;;;:42;;;;10333:6;10309:9;:20;10319:9;10309:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10374:9;10357:35;;10366:6;10357:35;;;10385:6;10357:35;;;;;;:::i;:::-;;;;;;;;9854:546;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:370::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:34;3435:1;3430:3;3426:11;3419:55;3505:8;3500:2;3495:3;3491:12;3484:30;3540:2;3535:3;3531:12;3524:19;;3325:224;;;:::o;3555:372::-;;3718:67;3782:2;3777:3;3718:67;:::i;:::-;3711:74;;3815:34;3811:1;3806:3;3802:11;3795:55;3881:10;3876:2;3871:3;3867:12;3860:32;3918:2;3913:3;3909:12;3902:19;;3701:226;;;:::o;3933:369::-;;4096:67;4160:2;4155:3;4096:67;:::i;:::-;4089:74;;4193:34;4189:1;4184:3;4180:11;4173:55;4259:7;4254:2;4249:3;4245:12;4238:29;4293:2;4288:3;4284:12;4277:19;;4079:223;;;:::o;4308:368::-;;4471:67;4535:2;4530:3;4471:67;:::i;:::-;4464:74;;4568:34;4564:1;4559:3;4555:11;4548:55;4634:6;4629:2;4624:3;4620:12;4613:28;4667:2;4662:3;4658:12;4651:19;;4454:222;;;:::o;4682:369::-;;4845:67;4909:2;4904:3;4845:67;:::i;:::-;4838:74;;4942:34;4938:1;4933:3;4929:11;4922:55;5008:7;5003:2;4998:3;4994:12;4987:29;5042:2;5037:3;5033:12;5026:19;;4828:223;;;:::o;5057:118::-;5144:24;5162:5;5144:24;:::i;:::-;5139:3;5132:37;5122:53;;:::o;5181:210::-;;5306:2;5295:9;5291:18;5283:26;;5319:65;5381:1;5370:9;5366:17;5357:6;5319:65;:::i;:::-;5273:118;;;;:::o;5397:313::-;;5548:2;5537:9;5533:18;5525:26;;5597:9;5591:4;5587:20;5583:1;5572:9;5568:17;5561:47;5625:78;5698:4;5689:6;5625:78;:::i;:::-;5617:86;;5515:195;;;;:::o;5716:419::-;;5920:2;5909:9;5905:18;5897:26;;5969:9;5963:4;5959:20;5955:1;5944:9;5940:17;5933:47;5997:131;6123:4;5997:131;:::i;:::-;5989:139;;5887:248;;;:::o;6141:419::-;;6345:2;6334:9;6330:18;6322:26;;6394:9;6388:4;6384:20;6380:1;6369:9;6365:17;6358:47;6422:131;6548:4;6422:131;:::i;:::-;6414:139;;6312:248;;;:::o;6566:419::-;;6770:2;6759:9;6755:18;6747:26;;6819:9;6813:4;6809:20;6805:1;6794:9;6790:17;6783:47;6847:131;6973:4;6847:131;:::i;:::-;6839:139;;6737:248;;;:::o;6991:419::-;;7195:2;7184:9;7180:18;7172:26;;7244:9;7238:4;7234:20;7230:1;7219:9;7215:17;7208:47;7272:131;7398:4;7272:131;:::i;:::-;7264:139;;7162:248;;;:::o;7416:419::-;;7620:2;7609:9;7605:18;7597:26;;7669:9;7663:4;7659:20;7655:1;7644:9;7640:17;7633:47;7697:131;7823:4;7697:131;:::i;:::-;7689:139;;7587:248;;;:::o;7841:419::-;;8045:2;8034:9;8030:18;8022:26;;8094:9;8088:4;8084:20;8080:1;8069:9;8065:17;8058:47;8122:131;8248:4;8122:131;:::i;:::-;8114:139;;8012:248;;;:::o;8266:419::-;;8470:2;8459:9;8455:18;8447:26;;8519:9;8513:4;8509:20;8505:1;8494:9;8490:17;8483:47;8547:131;8673:4;8547:131;:::i;:::-;8539:139;;8437:248;;;:::o;8691:222::-;;8822:2;8811:9;8807:18;8799:26;;8835:71;8903:1;8892:9;8888:17;8879:6;8835:71;:::i;:::-;8789:124;;;;:::o;8919:99::-;;9005:5;8999:12;8989:22;;8978:40;;;:::o;9024:169::-;;9142:6;9137:3;9130:19;9182:4;9177:3;9173:14;9158:29;;9120:73;;;;:::o;9199:305::-;;9258:20;9276:1;9258:20;:::i;:::-;9253:25;;9292:20;9310:1;9292:20;:::i;:::-;9287:25;;9446:1;9378:66;9374:74;9371:1;9368:81;9365:2;;;9452:18;;:::i;:::-;9365:2;9496:1;9493;9489:9;9482:16;;9243:261;;;;:::o;9510:191::-;;9570:20;9588:1;9570:20;:::i;:::-;9565:25;;9604:20;9622:1;9604:20;:::i;:::-;9599:25;;9643:1;9640;9637:8;9634:2;;;9648:18;;:::i;:::-;9634:2;9693:1;9690;9686:9;9678:17;;9555:146;;;;:::o;9707:96::-;;9773:24;9791:5;9773:24;:::i;:::-;9762:35;;9752:51;;;:::o;9809:90::-;;9886:5;9879:13;9872:21;9861:32;;9851:48;;;:::o;9905:126::-;;9982:42;9975:5;9971:54;9960:65;;9950:81;;;:::o;10037:77::-;;10103:5;10092:16;;10082:32;;;:::o;10120:307::-;10188:1;10198:113;10212:6;10209:1;10206:13;10198:113;;;10297:1;10292:3;10288:11;10282:18;10278:1;10273:3;10269:11;10262:39;10234:2;10231:1;10227:10;10222:15;;10198:113;;;10329:6;10326:1;10323:13;10320:2;;;10409:1;10400:6;10395:3;10391:16;10384:27;10320:2;10169:258;;;;:::o;10433:320::-;;10514:1;10508:4;10504:12;10494:22;;10561:1;10555:4;10551:12;10582:18;10572:2;;10638:4;10630:6;10626:17;10616:27;;10572:2;10700;10692:6;10689:14;10669:18;10666:38;10663:2;;;10719:18;;:::i;:::-;10663:2;10484:269;;;;:::o;10759:180::-;10807:77;10804:1;10797:88;10904:4;10901:1;10894:15;10928:4;10925:1;10918:15;10945:180;10993:77;10990:1;10983:88;11090:4;11087:1;11080:15;11114:4;11111:1;11104:15;11131:102;;11223:2;11219:7;11214:2;11207:5;11203:14;11199:28;11189:38;;11179:54;;;:::o;11239:122::-;11312:24;11330:5;11312:24;:::i;:::-;11305:5;11302:35;11292:2;;11351:1;11348;11341:12;11292:2;11282:79;:::o;11367:122::-;11440:24;11458:5;11440:24;:::i;:::-;11433:5;11430:35;11420:2;;11479:1;11476;11469:12;11420:2;11410:79;:::o

Swarm Source

ipfs://8cdecc20b7452d79cfb4af3abe9655ddaa2a2a91f3e09e32df8fbff09b614b84
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.