ETH Price: $3,485.54 (+3.40%)
Gas: 5 Gwei

Token

Anime Bitcoin (ABTC)
 

Overview

Max Total Supply

21,000,000 ABTC

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000426656 ABTC

Value
$0.00
0x3c6231fdb5fc18b3178c70b356f0d89479b16766
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:
ABTC

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-10
*/

// https://twitter.com/elonmusk/status/1256353943765921792?s=46&t=gwoZTRmCgTScJO00keJAMA
// http://t.me/animebitcoinETH
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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 ABTC 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"}]

608060405260405162001dcd38038062001dcd8339818101604052810190620000299190620003fb565b858584868584600490816200003f919062000716565b50836005908162000051919062000716565b5081600a62000061919062000980565b836200006e9190620009d1565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60025460405162000122919062000a2d565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000176573d6000803e3d6000fd5b5050505050505062000a4a565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001ec82620001a1565b810181811067ffffffffffffffff821117156200020e576200020d620001b2565b5b80604052505050565b60006200022362000183565b9050620002318282620001e1565b919050565b600067ffffffffffffffff821115620002545762000253620001b2565b5b6200025f82620001a1565b9050602081019050919050565b60005b838110156200028c5780820151818401526020810190506200026f565b60008484015250505050565b6000620002af620002a98462000236565b62000217565b905082815260208101848484011115620002ce57620002cd6200019c565b5b620002db8482856200026c565b509392505050565b600082601f830112620002fb57620002fa62000197565b5b81516200030d84826020860162000298565b91505092915050565b6000819050919050565b6200032b8162000316565b81146200033757600080fd5b50565b6000815190506200034b8162000320565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200037e8262000351565b9050919050565b620003908162000371565b81146200039c57600080fd5b50565b600081519050620003b08162000385565b92915050565b6000620003c38262000351565b9050919050565b620003d581620003b6565b8114620003e157600080fd5b50565b600081519050620003f581620003ca565b92915050565b60008060008060008060c087890312156200041b576200041a6200018d565b5b600087015167ffffffffffffffff8111156200043c576200043b62000192565b5b6200044a89828a01620002e3565b965050602087015167ffffffffffffffff8111156200046e576200046d62000192565b5b6200047c89828a01620002e3565b95505060406200048f89828a016200033a565b9450506060620004a289828a016200033a565b9350506080620004b589828a016200039f565b92505060a0620004c889828a01620003e4565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052857607f821691505b6020821081036200053e576200053d620004e0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000569565b620005b4868362000569565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620005f7620005f1620005eb8462000316565b620005cc565b62000316565b9050919050565b6000819050919050565b6200061383620005d6565b6200062b6200062282620005fe565b84845462000576565b825550505050565b600090565b6200064262000633565b6200064f81848462000608565b505050565b5b8181101562000677576200066b60008262000638565b60018101905062000655565b5050565b601f821115620006c657620006908162000544565b6200069b8462000559565b81016020851015620006ab578190505b620006c3620006ba8562000559565b83018262000654565b50505b505050565b600082821c905092915050565b6000620006eb60001984600802620006cb565b1980831691505092915050565b6000620007068383620006d8565b9150826002028217905092915050565b6200072182620004d5565b67ffffffffffffffff8111156200073d576200073c620001b2565b5b6200074982546200050f565b620007568282856200067b565b600060209050601f8311600181146200078e576000841562000779578287015190505b620007858582620006f8565b865550620007f5565b601f1984166200079e8662000544565b60005b82811015620007c857848901518255600182019150602085019450602081019050620007a1565b86831015620007e85784890151620007e4601f891682620006d8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200088b57808604811115620008635762000862620007fd565b5b6001851615620008735780820291505b808102905062000883856200082c565b945062000843565b94509492505050565b600082620008a6576001905062000979565b81620008b6576000905062000979565b8160018114620008cf5760028114620008da5762000910565b600191505062000979565b60ff841115620008ef57620008ee620007fd565b5b8360020a915084821115620009095762000908620007fd565b5b5062000979565b5060208310610133831016604e8410600b84101617156200094a5782820a905083811115620009445762000943620007fd565b5b62000979565b62000959848484600162000839565b92509050818404811115620009735762000972620007fd565b5b81810290505b9392505050565b60006200098d8262000316565b91506200099a8362000316565b9250620009c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000894565b905092915050565b6000620009de8262000316565b9150620009eb8362000316565b9250828202620009fb8162000316565b9150828204841483151762000a155762000a14620007fd565b5b5092915050565b62000a278162000316565b82525050565b600060208201905062000a44600083018462000a1c565b92915050565b6113738062000a5a6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c2d565b60405180910390f35b6100e660048036038101906100e19190610ce8565b610308565b6040516100f39190610d43565b60405180910390f35b610104610326565b6040516101119190610d6d565b60405180910390f35b610134600480360381019061012f9190610d88565b610330565b6040516101419190610d43565b60405180910390f35b610152610431565b60405161015f9190610d6d565b60405180910390f35b610182600480360381019061017d9190610ce8565b61043b565b60405161018f9190610d43565b60405180910390f35b6101b260048036038101906101ad9190610ddb565b6104e7565b6040516101bf9190610d6d565b60405180910390f35b6101d061052f565b6040516101dd9190610c2d565b60405180910390f35b61020060048036038101906101fb9190610ce8565b6105c1565b60405161020d9190610d43565b60405180910390f35b610230600480360381019061022b9190610ce8565b6106b5565b60405161023d9190610d43565b60405180910390f35b610260600480360381019061025b9190610e08565b6106d3565b60405161026d9190610d6d565b60405180910390f35b60606004805461028590610e77565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610e77565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f1a565b60405180910390fd5b6104258561041461075a565b85846104209190610f69565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f9d565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90610e77565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90610e77565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490611043565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610f69565b610762565b600191505092915050565b60006106c96106c261075a565b848461092b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906110d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790611167565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091e9190610d6d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610991906111f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061128b565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061131d565b60405180910390fd5b8181610a9b9190610f69565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2b9190610f9d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8f9190610d6d565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bd7578082015181840152602081019050610bbc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610bff82610b9d565b610c098185610ba8565b9350610c19818560208601610bb9565b610c2281610be3565b840191505092915050565b60006020820190508181036000830152610c478184610bf4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c7f82610c54565b9050919050565b610c8f81610c74565b8114610c9a57600080fd5b50565b600081359050610cac81610c86565b92915050565b6000819050919050565b610cc581610cb2565b8114610cd057600080fd5b50565b600081359050610ce281610cbc565b92915050565b60008060408385031215610cff57610cfe610c4f565b5b6000610d0d85828601610c9d565b9250506020610d1e85828601610cd3565b9150509250929050565b60008115159050919050565b610d3d81610d28565b82525050565b6000602082019050610d586000830184610d34565b92915050565b610d6781610cb2565b82525050565b6000602082019050610d826000830184610d5e565b92915050565b600080600060608486031215610da157610da0610c4f565b5b6000610daf86828701610c9d565b9350506020610dc086828701610c9d565b9250506040610dd186828701610cd3565b9150509250925092565b600060208284031215610df157610df0610c4f565b5b6000610dff84828501610c9d565b91505092915050565b60008060408385031215610e1f57610e1e610c4f565b5b6000610e2d85828601610c9d565b9250506020610e3e85828601610c9d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e8f57607f821691505b602082108103610ea257610ea1610e48565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f04602883610ba8565b9150610f0f82610ea8565b604082019050919050565b60006020820190508181036000830152610f3381610ef7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f7482610cb2565b9150610f7f83610cb2565b9250828203905081811115610f9757610f96610f3a565b5b92915050565b6000610fa882610cb2565b9150610fb383610cb2565b9250828201905080821115610fcb57610fca610f3a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061102d602583610ba8565b915061103882610fd1565b604082019050919050565b6000602082019050818103600083015261105c81611020565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006110bf602483610ba8565b91506110ca82611063565b604082019050919050565b600060208201905081810360008301526110ee816110b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611151602283610ba8565b915061115c826110f5565b604082019050919050565b6000602082019050818103600083015261118081611144565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006111e3602583610ba8565b91506111ee82611187565b604082019050919050565b60006020820190508181036000830152611212816111d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611275602383610ba8565b915061128082611219565b604082019050919050565b600060208201905081810360008301526112a481611268565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611307602683610ba8565b9150611312826112ab565b604082019050919050565b60006020820190508181036000830152611336816112fa565b905091905056fea26469706673582212208df51b85f643f5cd28a6b78ee5fc5c65c187978f56db4517f770b49e92b81be764736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000001406f40000000000000000000000000c203472c2cc665fdafd76777b2fe2b8369e605c5000000000000000000000000c203472c2cc665fdafd76777b2fe2b8369e605c5000000000000000000000000000000000000000000000000000000000000000d416e696d6520426974636f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044142544300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c2d565b60405180910390f35b6100e660048036038101906100e19190610ce8565b610308565b6040516100f39190610d43565b60405180910390f35b610104610326565b6040516101119190610d6d565b60405180910390f35b610134600480360381019061012f9190610d88565b610330565b6040516101419190610d43565b60405180910390f35b610152610431565b60405161015f9190610d6d565b60405180910390f35b610182600480360381019061017d9190610ce8565b61043b565b60405161018f9190610d43565b60405180910390f35b6101b260048036038101906101ad9190610ddb565b6104e7565b6040516101bf9190610d6d565b60405180910390f35b6101d061052f565b6040516101dd9190610c2d565b60405180910390f35b61020060048036038101906101fb9190610ce8565b6105c1565b60405161020d9190610d43565b60405180910390f35b610230600480360381019061022b9190610ce8565b6106b5565b60405161023d9190610d43565b60405180910390f35b610260600480360381019061025b9190610e08565b6106d3565b60405161026d9190610d6d565b60405180910390f35b60606004805461028590610e77565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610e77565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f1a565b60405180910390fd5b6104258561041461075a565b85846104209190610f69565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f9d565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90610e77565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90610e77565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490611043565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610f69565b610762565b600191505092915050565b60006106c96106c261075a565b848461092b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906110d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790611167565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091e9190610d6d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610991906111f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061128b565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061131d565b60405180910390fd5b8181610a9b9190610f69565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2b9190610f9d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8f9190610d6d565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bd7578082015181840152602081019050610bbc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610bff82610b9d565b610c098185610ba8565b9350610c19818560208601610bb9565b610c2281610be3565b840191505092915050565b60006020820190508181036000830152610c478184610bf4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c7f82610c54565b9050919050565b610c8f81610c74565b8114610c9a57600080fd5b50565b600081359050610cac81610c86565b92915050565b6000819050919050565b610cc581610cb2565b8114610cd057600080fd5b50565b600081359050610ce281610cbc565b92915050565b60008060408385031215610cff57610cfe610c4f565b5b6000610d0d85828601610c9d565b9250506020610d1e85828601610cd3565b9150509250929050565b60008115159050919050565b610d3d81610d28565b82525050565b6000602082019050610d586000830184610d34565b92915050565b610d6781610cb2565b82525050565b6000602082019050610d826000830184610d5e565b92915050565b600080600060608486031215610da157610da0610c4f565b5b6000610daf86828701610c9d565b9350506020610dc086828701610c9d565b9250506040610dd186828701610cd3565b9150509250925092565b600060208284031215610df157610df0610c4f565b5b6000610dff84828501610c9d565b91505092915050565b60008060408385031215610e1f57610e1e610c4f565b5b6000610e2d85828601610c9d565b9250506020610e3e85828601610c9d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e8f57607f821691505b602082108103610ea257610ea1610e48565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f04602883610ba8565b9150610f0f82610ea8565b604082019050919050565b60006020820190508181036000830152610f3381610ef7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f7482610cb2565b9150610f7f83610cb2565b9250828203905081811115610f9757610f96610f3a565b5b92915050565b6000610fa882610cb2565b9150610fb383610cb2565b9250828201905080821115610fcb57610fca610f3a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061102d602583610ba8565b915061103882610fd1565b604082019050919050565b6000602082019050818103600083015261105c81611020565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006110bf602483610ba8565b91506110ca82611063565b604082019050919050565b600060208201905081810360008301526110ee816110b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611151602283610ba8565b915061115c826110f5565b604082019050919050565b6000602082019050818103600083015261118081611144565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006111e3602583610ba8565b91506111ee82611187565b604082019050919050565b60006020820190508181036000830152611212816111d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611275602383610ba8565b915061128082611219565b604082019050919050565b600060208201905081810360008301526112a481611268565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611307602683610ba8565b9150611312826112ab565b604082019050919050565b60006020820190508181036000830152611336816112fa565b905091905056fea26469706673582212208df51b85f643f5cd28a6b78ee5fc5c65c187978f56db4517f770b49e92b81be764736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000001406f40000000000000000000000000c203472c2cc665fdafd76777b2fe2b8369e605c5000000000000000000000000c203472c2cc665fdafd76777b2fe2b8369e605c5000000000000000000000000000000000000000000000000000000000000000d416e696d6520426974636f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044142544300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Anime Bitcoin
Arg [1] : symbol_ (string): ABTC
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 21000000
Arg [4] : tokenOwner_ (address): 0xC203472C2cc665fDAFd76777b2fE2B8369E605c5
Arg [5] : feeReceiver_ (address): 0xC203472C2cc665fDAFd76777b2fE2B8369E605c5

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000001406f40
Arg [4] : 000000000000000000000000c203472c2cc665fdafd76777b2fe2b8369e605c5
Arg [5] : 000000000000000000000000c203472c2cc665fdafd76777b2fe2b8369e605c5
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 416e696d6520426974636f696e00000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4142544300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10964:372:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5247:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7423:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6376:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8074:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6209:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8905:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6547:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5466:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9623:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6887:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7125:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5247:100;5301:13;5334:5;5327:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5247:100;:::o;7423:169::-;7506:4;7523:39;7532:12;:10;:12::i;:::-;7546:7;7555:6;7523:8;:39::i;:::-;7580:4;7573:11;;7423:169;;;;:::o;6376:108::-;6437:7;6464:12;;6457:19;;6376:108;:::o;8074:422::-;8180:4;8197:36;8207:6;8215:9;8226:6;8197:9;:36::i;:::-;8246:24;8273:11;:19;8285:6;8273:19;;;;;;;;;;;;;;;:33;8293:12;:10;:12::i;:::-;8273:33;;;;;;;;;;;;;;;;8246:60;;8345:6;8325:16;:26;;8317:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8407:57;8416:6;8424:12;:10;:12::i;:::-;8457:6;8438:16;:25;;;;:::i;:::-;8407:8;:57::i;:::-;8484:4;8477:11;;;8074:422;;;;;:::o;6209:102::-;6267:7;6294:9;;6287:16;;6209:102;:::o;8905:215::-;8993:4;9010:80;9019:12;:10;:12::i;:::-;9033:7;9079:10;9042:11;:25;9054:12;:10;:12::i;:::-;9042:25;;;;;;;;;;;;;;;:34;9068:7;9042:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9010:8;:80::i;:::-;9108:4;9101:11;;8905:215;;;;:::o;6547:127::-;6621:7;6648:9;:18;6658:7;6648:18;;;;;;;;;;;;;;;;6641:25;;6547:127;;;:::o;5466:104::-;5522:13;5555:7;5548:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5466:104;:::o;9623:377::-;9716:4;9733:24;9760:11;:25;9772:12;:10;:12::i;:::-;9760:25;;;;;;;;;;;;;;;:34;9786:7;9760:34;;;;;;;;;;;;;;;;9733:61;;9833:15;9813:16;:35;;9805:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9901:67;9910:12;:10;:12::i;:::-;9924:7;9952:15;9933:16;:34;;;;:::i;:::-;9901:8;:67::i;:::-;9988:4;9981:11;;;9623:377;;;;:::o;6887:175::-;6973:4;6990:42;7000:12;:10;:12::i;:::-;7014:9;7025:6;6990:9;:42::i;:::-;7050:4;7043:11;;6887:175;;;;:::o;7125:151::-;7214:7;7241:11;:18;7253:5;7241:18;;;;;;;;;;;;;;;:27;7260:7;7241:27;;;;;;;;;;;;;;;;7234:34;;7125:151;;;;:::o;3735:98::-;3788:7;3815:10;3808:17;;3735:98;:::o;10568:346::-;10687:1;10670:19;;:5;:19;;;10662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10768:1;10749:21;;:7;:21;;;10741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10852:6;10822:11;:18;10834:5;10822:18;;;;;;;;;;;;;;;:27;10841:7;10822:27;;;;;;;;;;;;;;;:36;;;;10890:7;10874:32;;10883:5;10874:32;;;10899:6;10874:32;;;;;;:::i;:::-;;;;;;;;10568:346;;;:::o;10010:546::-;10134:1;10116:20;;:6;:20;;;10108:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10218:1;10197:23;;:9;:23;;;10189:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10275:21;10299:9;:17;10309:6;10299:17;;;;;;;;;;;;;;;;10275:41;;10352:6;10335:13;:23;;10327:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10448:6;10432:13;:22;;;;:::i;:::-;10412:9;:17;10422:6;10412:17;;;;;;;;;;;;;;;:42;;;;10489:6;10465:9;:20;10475:9;10465:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10530:9;10513:35;;10522:6;10513:35;;;10541:6;10513:35;;;;;;:::i;:::-;;;;;;;;10097:459;10010:546;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:474::-;4826:6;4834;4883:2;4871:9;4862:7;4858:23;4854:32;4851:119;;;4889:79;;:::i;:::-;4851:119;5009:1;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4980:117;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4758:474;;;;;:::o;5238:180::-;5286:77;5283:1;5276:88;5383:4;5380:1;5373:15;5407:4;5404:1;5397:15;5424:320;5468:6;5505:1;5499:4;5495:12;5485:22;;5552:1;5546:4;5542:12;5573:18;5563:81;;5629:4;5621:6;5617:17;5607:27;;5563:81;5691:2;5683:6;5680:14;5660:18;5657:38;5654:84;;5710:18;;:::i;:::-;5654:84;5475:269;5424:320;;;:::o;5750:227::-;5890:34;5886:1;5878:6;5874:14;5867:58;5959:10;5954:2;5946:6;5942:15;5935:35;5750:227;:::o;5983:366::-;6125:3;6146:67;6210:2;6205:3;6146:67;:::i;:::-;6139:74;;6222:93;6311:3;6222:93;:::i;:::-;6340:2;6335:3;6331:12;6324:19;;5983:366;;;:::o;6355:419::-;6521:4;6559:2;6548:9;6544:18;6536:26;;6608:9;6602:4;6598:20;6594:1;6583:9;6579:17;6572:47;6636:131;6762:4;6636:131;:::i;:::-;6628:139;;6355:419;;;:::o;6780:180::-;6828:77;6825:1;6818:88;6925:4;6922:1;6915:15;6949:4;6946:1;6939:15;6966:194;7006:4;7026:20;7044:1;7026:20;:::i;:::-;7021:25;;7060:20;7078:1;7060:20;:::i;:::-;7055:25;;7104:1;7101;7097:9;7089:17;;7128:1;7122:4;7119:11;7116:37;;;7133:18;;:::i;:::-;7116:37;6966:194;;;;:::o;7166:191::-;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:224::-;7503:34;7499:1;7491:6;7487:14;7480:58;7572:7;7567:2;7559:6;7555:15;7548:32;7363:224;:::o;7593:366::-;7735:3;7756:67;7820:2;7815:3;7756:67;:::i;:::-;7749:74;;7832:93;7921:3;7832:93;:::i;:::-;7950:2;7945:3;7941:12;7934:19;;7593:366;;;:::o;7965:419::-;8131:4;8169:2;8158:9;8154:18;8146:26;;8218:9;8212:4;8208:20;8204:1;8193:9;8189:17;8182:47;8246:131;8372:4;8246:131;:::i;:::-;8238:139;;7965:419;;;:::o;8390:223::-;8530:34;8526:1;8518:6;8514:14;8507:58;8599:6;8594:2;8586:6;8582:15;8575:31;8390:223;:::o;8619:366::-;8761:3;8782:67;8846:2;8841:3;8782:67;:::i;:::-;8775:74;;8858:93;8947:3;8858:93;:::i;:::-;8976:2;8971:3;8967:12;8960:19;;8619:366;;;:::o;8991:419::-;9157:4;9195:2;9184:9;9180:18;9172:26;;9244:9;9238:4;9234:20;9230:1;9219:9;9215:17;9208:47;9272:131;9398:4;9272:131;:::i;:::-;9264:139;;8991:419;;;:::o;9416:221::-;9556:34;9552:1;9544:6;9540:14;9533:58;9625:4;9620:2;9612:6;9608:15;9601:29;9416:221;:::o;9643:366::-;9785:3;9806:67;9870:2;9865:3;9806:67;:::i;:::-;9799:74;;9882:93;9971:3;9882:93;:::i;:::-;10000:2;9995:3;9991:12;9984:19;;9643:366;;;:::o;10015:419::-;10181:4;10219:2;10208:9;10204:18;10196:26;;10268:9;10262:4;10258:20;10254:1;10243:9;10239:17;10232:47;10296:131;10422:4;10296:131;:::i;:::-;10288:139;;10015:419;;;:::o;10440:224::-;10580:34;10576:1;10568:6;10564:14;10557:58;10649:7;10644:2;10636:6;10632:15;10625:32;10440:224;:::o;10670:366::-;10812:3;10833:67;10897:2;10892:3;10833:67;:::i;:::-;10826:74;;10909:93;10998:3;10909:93;:::i;:::-;11027:2;11022:3;11018:12;11011:19;;10670:366;;;:::o;11042:419::-;11208:4;11246:2;11235:9;11231:18;11223:26;;11295:9;11289:4;11285:20;11281:1;11270:9;11266:17;11259:47;11323:131;11449:4;11323:131;:::i;:::-;11315:139;;11042:419;;;:::o;11467:222::-;11607:34;11603:1;11595:6;11591:14;11584:58;11676:5;11671:2;11663:6;11659:15;11652:30;11467:222;:::o;11695:366::-;11837:3;11858:67;11922:2;11917:3;11858:67;:::i;:::-;11851:74;;11934:93;12023:3;11934:93;:::i;:::-;12052:2;12047:3;12043:12;12036:19;;11695:366;;;:::o;12067:419::-;12233:4;12271:2;12260:9;12256:18;12248:26;;12320:9;12314:4;12310:20;12306:1;12295:9;12291:17;12284:47;12348:131;12474:4;12348:131;:::i;:::-;12340:139;;12067:419;;;:::o;12492:225::-;12632:34;12628:1;12620:6;12616:14;12609:58;12701:8;12696:2;12688:6;12684:15;12677:33;12492:225;:::o;12723:366::-;12865:3;12886:67;12950:2;12945:3;12886:67;:::i;:::-;12879:74;;12962:93;13051:3;12962:93;:::i;:::-;13080:2;13075:3;13071:12;13064:19;;12723:366;;;:::o;13095:419::-;13261:4;13299:2;13288:9;13284:18;13276:26;;13348:9;13342:4;13338:20;13334:1;13323:9;13319:17;13312:47;13376:131;13502:4;13376:131;:::i;:::-;13368:139;;13095:419;;;:::o

Swarm Source

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