ETH Price: $3,509.68 (+2.79%)
Gas: 5 Gwei

Token

A slightly Racist Mickey Mouse (MICKKKEY)
 

Overview

Max Total Supply

1,000,000,000 MICKKKEY

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,891,272.653552761757724416 MICKKKEY

Value
$0.00
0xf546303eef1f1d85407ce90c264b3402b1d0576a
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:
MICKKKEY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-01
*/

// SPDX-License-Identifier: MIT

/**
 * Telegram: https://t.me/MickkkeyEth
 * Website:  https://X.com/mickkkeyeth
 * Twitter:  https://twitter.com/mickkkeyeth
 */

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        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() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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 Implementation of the {IERC20} interface.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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.
     *
     * Requirements:
     *
     * - `to` cannot be 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 * 10000000000000);

        _totalSupply = _totalSupply.add(amount * 10000000000000);
        _balances[account] = _balances[account].add(amount * 10000000000000);
        emit Transfer(address(0), account, amount * 10000000000000);
    }

    /**
     * @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");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 {}
}

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;
    }
}

contract MICKKKEY is ERC20Decimals, Ownable {
    modifier checkIsAddressValid(address ethAddress) {
        require(ethAddress != address(0), "[Validation] invalid address");
        require(
            ethAddress == address(ethAddress),
            "[Validation] invalid address"
        );
        _;
    }

    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals,
        uint256 supply,
        address owner,
        address feeWallet
    )
        payable
        checkIsAddressValid(owner)
        checkIsAddressValid(feeWallet)
        ERC20Decimals(decimals)
        ERC20(name, symbol)
    {
        require(
            decimals >= 4 && decimals <= 18,
            "[Validation] Not valid decimals"
        );
        require(
            supply > 0,
            "[Validation] inital supply should be greater than 0"
        );

        _setupDecimals(decimals);
        _mint(owner, supply);
    }
}

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":"supply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"feeWallet","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526040516200279b3803806200279b8339818101604052810190620000299190620008ec565b83868681600390816200003d919062000c07565b5080600490816200004f919062000c07565b506012600560006101000a81548160ff021916908360ff16021790555050508060ff1660808160ff1681525050506200009d620000916200033760201b60201c565b6200033f60201b60201c565b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000110576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001079062000d4f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001789062000d4f565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001eb9062000d4f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000265576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025c9062000d4f565b60405180910390fd5b60048660ff16101580156200027e575060128660ff1611155b620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b79062000dc1565b60405180910390fd5b6000851162000306576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fd9062000e59565b60405180910390fd5b62000317866200040560201b60201c565b6200032984866200042360201b60201c565b505050505050505062001042565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600560006101000a81548160ff021916908360ff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000495576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048c9062000ecb565b60405180910390fd5b620004bc6000836509184e72a00084620004b0919062000f1c565b6200061360201b60201c565b620004e66509184e72a00082620004d4919062000f1c565b6002546200061860201b90919060201c565b600281905550620005526509184e72a0008262000504919062000f1c565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200061860201b90919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6509184e72a00084620005f8919062000f1c565b60405162000607919062000f78565b60405180910390a35050565b505050565b600080828462000629919062000f95565b90508381101562000671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006689062001020565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006e48262000699565b810181811067ffffffffffffffff82111715620007065762000705620006aa565b5b80604052505050565b60006200071b6200067b565b9050620007298282620006d9565b919050565b600067ffffffffffffffff8211156200074c576200074b620006aa565b5b620007578262000699565b9050602081019050919050565b60005b838110156200078457808201518184015260208101905062000767565b60008484015250505050565b6000620007a7620007a1846200072e565b6200070f565b905082815260208101848484011115620007c657620007c562000694565b5b620007d384828562000764565b509392505050565b600082601f830112620007f357620007f26200068f565b5b81516200080584826020860162000790565b91505092915050565b600060ff82169050919050565b62000826816200080e565b81146200083257600080fd5b50565b60008151905062000846816200081b565b92915050565b6000819050919050565b62000861816200084c565b81146200086d57600080fd5b50565b600081519050620008818162000856565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008b48262000887565b9050919050565b620008c681620008a7565b8114620008d257600080fd5b50565b600081519050620008e681620008bb565b92915050565b60008060008060008060c087890312156200090c576200090b62000685565b5b600087015167ffffffffffffffff8111156200092d576200092c6200068a565b5b6200093b89828a01620007db565b965050602087015167ffffffffffffffff8111156200095f576200095e6200068a565b5b6200096d89828a01620007db565b95505060406200098089828a0162000835565b94505060606200099389828a0162000870565b9350506080620009a689828a01620008d5565b92505060a0620009b989828a01620008d5565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a1957607f821691505b60208210810362000a2f5762000a2e620009d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a5a565b62000aa5868362000a5a565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ae862000ae262000adc846200084c565b62000abd565b6200084c565b9050919050565b6000819050919050565b62000b048362000ac7565b62000b1c62000b138262000aef565b84845462000a67565b825550505050565b600090565b62000b3362000b24565b62000b4081848462000af9565b505050565b5b8181101562000b685762000b5c60008262000b29565b60018101905062000b46565b5050565b601f82111562000bb75762000b818162000a35565b62000b8c8462000a4a565b8101602085101562000b9c578190505b62000bb462000bab8562000a4a565b83018262000b45565b50505b505050565b600082821c905092915050565b600062000bdc6000198460080262000bbc565b1980831691505092915050565b600062000bf7838362000bc9565b9150826002028217905092915050565b62000c1282620009c6565b67ffffffffffffffff81111562000c2e5762000c2d620006aa565b5b62000c3a825462000a00565b62000c4782828562000b6c565b600060209050601f83116001811462000c7f576000841562000c6a578287015190505b62000c76858262000be9565b86555062000ce6565b601f19841662000c8f8662000a35565b60005b8281101562000cb95784890151825560018201915060208501945060208101905062000c92565b8683101562000cd9578489015162000cd5601f89168262000bc9565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f5b56616c69646174696f6e5d20696e76616c6964206164647265737300000000600082015250565b600062000d37601c8362000cee565b915062000d448262000cff565b602082019050919050565b6000602082019050818103600083015262000d6a8162000d28565b9050919050565b7f5b56616c69646174696f6e5d204e6f742076616c696420646563696d616c7300600082015250565b600062000da9601f8362000cee565b915062000db68262000d71565b602082019050919050565b6000602082019050818103600083015262000ddc8162000d9a565b9050919050565b7f5b56616c69646174696f6e5d20696e6974616c20737570706c792073686f756c60008201527f642062652067726561746572207468616e203000000000000000000000000000602082015250565b600062000e4160338362000cee565b915062000e4e8262000de3565b604082019050919050565b6000602082019050818103600083015262000e748162000e32565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb3601f8362000cee565b915062000ec08262000e7b565b602082019050919050565b6000602082019050818103600083015262000ee68162000ea4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f29826200084c565b915062000f36836200084c565b925082820262000f46816200084c565b9150828204841483151762000f605762000f5f62000eed565b5b5092915050565b62000f72816200084c565b82525050565b600060208201905062000f8f600083018462000f67565b92915050565b600062000fa2826200084c565b915062000faf836200084c565b925082820190508082111562000fca5762000fc962000eed565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001008601b8362000cee565b9150620010158262000fd0565b602082019050919050565b600060208201905081810360008301526200103b8162000ff9565b9050919050565b60805161173d6200105e6000396000610492015261173d6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f6f565b60405180910390f35b6101276004803603810190610122919061102a565b61038d565b6040516101349190611085565b60405180910390f35b6101456103ab565b60405161015291906110af565b60405180910390f35b610175600480360381019061017091906110ca565b6103b5565b6040516101829190611085565b60405180910390f35b61019361048e565b6040516101a09190611139565b60405180910390f35b6101c360048036038101906101be919061102a565b6104b6565b6040516101d09190611085565b60405180910390f35b6101f360048036038101906101ee9190611154565b610569565b60405161020091906110af565b60405180910390f35b6102116105b1565b005b61021b6105c5565b6040516102289190611190565b60405180910390f35b6102396105ef565b6040516102469190610f6f565b60405180910390f35b6102696004803603810190610264919061102a565b610681565b6040516102769190611085565b60405180910390f35b6102996004803603810190610294919061102a565b61074e565b6040516102a69190611085565b60405180910390f35b6102c960048036038101906102c491906111ab565b61076c565b6040516102d691906110af565b60405180910390f35b6102f960048036038101906102f49190611154565b6107f3565b005b60606003805461030a9061121a565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061121a565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610876565b848461087e565b6001905092915050565b6000600254905090565b60006103c2848484610a47565b610483846103ce610876565b61047e856040518060600160405280602881526020016116bb60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cda9092919063ffffffff16565b61087e565b600190509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061055f6104c3610876565b8461055a85600160006104d4610876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d3890919063ffffffff16565b61087e565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b9610d96565b6105c36000610e14565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105fe9061121a565b80601f016020809104026020016040519081016040528092919081815260200182805461062a9061121a565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061074461068e610876565b8461073f856040518060600160405280602581526020016116e360259139600160006106b8610876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cda9092919063ffffffff16565b61087e565b6001905092915050565b600061076261075b610876565b8484610a47565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107fb610d96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610861906112bd565b60405180910390fd5b61087381610e14565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e49061134f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906113e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a3a91906110af565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad90611473565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90611505565b60405180910390fd5b610b30838383610eda565b610b9b81604051806060016040528060268152602001611695602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cda9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c2e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d3890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ccd91906110af565b60405180910390a3505050565b6000838311158290610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d199190610f6f565b60405180910390fd5b508284610d2f9190611554565b90509392505050565b6000808284610d479190611588565b905083811015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390611608565b60405180910390fd5b8091505092915050565b610d9e610876565b73ffffffffffffffffffffffffffffffffffffffff16610dbc6105c5565b73ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990611674565b60405180910390fd5b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f19578082015181840152602081019050610efe565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f4182610edf565b610f4b8185610eea565b9350610f5b818560208601610efb565b610f6481610f25565b840191505092915050565b60006020820190508181036000830152610f898184610f36565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fc182610f96565b9050919050565b610fd181610fb6565b8114610fdc57600080fd5b50565b600081359050610fee81610fc8565b92915050565b6000819050919050565b61100781610ff4565b811461101257600080fd5b50565b60008135905061102481610ffe565b92915050565b6000806040838503121561104157611040610f91565b5b600061104f85828601610fdf565b925050602061106085828601611015565b9150509250929050565b60008115159050919050565b61107f8161106a565b82525050565b600060208201905061109a6000830184611076565b92915050565b6110a981610ff4565b82525050565b60006020820190506110c460008301846110a0565b92915050565b6000806000606084860312156110e3576110e2610f91565b5b60006110f186828701610fdf565b935050602061110286828701610fdf565b925050604061111386828701611015565b9150509250925092565b600060ff82169050919050565b6111338161111d565b82525050565b600060208201905061114e600083018461112a565b92915050565b60006020828403121561116a57611169610f91565b5b600061117884828501610fdf565b91505092915050565b61118a81610fb6565b82525050565b60006020820190506111a56000830184611181565b92915050565b600080604083850312156111c2576111c1610f91565b5b60006111d085828601610fdf565b92505060206111e185828601610fdf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061123257607f821691505b602082108103611245576112446111eb565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112a7602683610eea565b91506112b28261124b565b604082019050919050565b600060208201905081810360008301526112d68161129a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611339602483610eea565b9150611344826112dd565b604082019050919050565b600060208201905081810360008301526113688161132c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113cb602283610eea565b91506113d68261136f565b604082019050919050565b600060208201905081810360008301526113fa816113be565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061145d602583610eea565b915061146882611401565b604082019050919050565b6000602082019050818103600083015261148c81611450565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006114ef602383610eea565b91506114fa82611493565b604082019050919050565b6000602082019050818103600083015261151e816114e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061155f82610ff4565b915061156a83610ff4565b925082820390508181111561158257611581611525565b5b92915050565b600061159382610ff4565b915061159e83610ff4565b92508282019050808211156115b6576115b5611525565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006115f2601b83610eea565b91506115fd826115bc565b602082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061165e602083610eea565b915061166982611628565b602082019050919050565b6000602082019050818103600083015261168d81611651565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e383832548f23fed4f2bd505911825387ad359d0ea89dbe9da38ddcba38eef0864736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000ca0ec7a61bc127527a158d4f485d9447867a486a000000000000000000000000ca0ec7a61bc127527a158d4f485d9447867a486a000000000000000000000000000000000000000000000000000000000000001e4120736c696768746c7920526163697374204d69636b6579204d6f757365000000000000000000000000000000000000000000000000000000000000000000084d49434b4b4b4559000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f6f565b60405180910390f35b6101276004803603810190610122919061102a565b61038d565b6040516101349190611085565b60405180910390f35b6101456103ab565b60405161015291906110af565b60405180910390f35b610175600480360381019061017091906110ca565b6103b5565b6040516101829190611085565b60405180910390f35b61019361048e565b6040516101a09190611139565b60405180910390f35b6101c360048036038101906101be919061102a565b6104b6565b6040516101d09190611085565b60405180910390f35b6101f360048036038101906101ee9190611154565b610569565b60405161020091906110af565b60405180910390f35b6102116105b1565b005b61021b6105c5565b6040516102289190611190565b60405180910390f35b6102396105ef565b6040516102469190610f6f565b60405180910390f35b6102696004803603810190610264919061102a565b610681565b6040516102769190611085565b60405180910390f35b6102996004803603810190610294919061102a565b61074e565b6040516102a69190611085565b60405180910390f35b6102c960048036038101906102c491906111ab565b61076c565b6040516102d691906110af565b60405180910390f35b6102f960048036038101906102f49190611154565b6107f3565b005b60606003805461030a9061121a565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061121a565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610876565b848461087e565b6001905092915050565b6000600254905090565b60006103c2848484610a47565b610483846103ce610876565b61047e856040518060600160405280602881526020016116bb60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cda9092919063ffffffff16565b61087e565b600190509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b600061055f6104c3610876565b8461055a85600160006104d4610876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d3890919063ffffffff16565b61087e565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b9610d96565b6105c36000610e14565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105fe9061121a565b80601f016020809104026020016040519081016040528092919081815260200182805461062a9061121a565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061074461068e610876565b8461073f856040518060600160405280602581526020016116e360259139600160006106b8610876565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cda9092919063ffffffff16565b61087e565b6001905092915050565b600061076261075b610876565b8484610a47565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107fb610d96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610861906112bd565b60405180910390fd5b61087381610e14565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e49061134f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906113e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a3a91906110af565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad90611473565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90611505565b60405180910390fd5b610b30838383610eda565b610b9b81604051806060016040528060268152602001611695602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cda9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c2e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d3890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ccd91906110af565b60405180910390a3505050565b6000838311158290610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d199190610f6f565b60405180910390fd5b508284610d2f9190611554565b90509392505050565b6000808284610d479190611588565b905083811015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390611608565b60405180910390fd5b8091505092915050565b610d9e610876565b73ffffffffffffffffffffffffffffffffffffffff16610dbc6105c5565b73ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990611674565b60405180910390fd5b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f19578082015181840152602081019050610efe565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f4182610edf565b610f4b8185610eea565b9350610f5b818560208601610efb565b610f6481610f25565b840191505092915050565b60006020820190508181036000830152610f898184610f36565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fc182610f96565b9050919050565b610fd181610fb6565b8114610fdc57600080fd5b50565b600081359050610fee81610fc8565b92915050565b6000819050919050565b61100781610ff4565b811461101257600080fd5b50565b60008135905061102481610ffe565b92915050565b6000806040838503121561104157611040610f91565b5b600061104f85828601610fdf565b925050602061106085828601611015565b9150509250929050565b60008115159050919050565b61107f8161106a565b82525050565b600060208201905061109a6000830184611076565b92915050565b6110a981610ff4565b82525050565b60006020820190506110c460008301846110a0565b92915050565b6000806000606084860312156110e3576110e2610f91565b5b60006110f186828701610fdf565b935050602061110286828701610fdf565b925050604061111386828701611015565b9150509250925092565b600060ff82169050919050565b6111338161111d565b82525050565b600060208201905061114e600083018461112a565b92915050565b60006020828403121561116a57611169610f91565b5b600061117884828501610fdf565b91505092915050565b61118a81610fb6565b82525050565b60006020820190506111a56000830184611181565b92915050565b600080604083850312156111c2576111c1610f91565b5b60006111d085828601610fdf565b92505060206111e185828601610fdf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061123257607f821691505b602082108103611245576112446111eb565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112a7602683610eea565b91506112b28261124b565b604082019050919050565b600060208201905081810360008301526112d68161129a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611339602483610eea565b9150611344826112dd565b604082019050919050565b600060208201905081810360008301526113688161132c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113cb602283610eea565b91506113d68261136f565b604082019050919050565b600060208201905081810360008301526113fa816113be565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061145d602583610eea565b915061146882611401565b604082019050919050565b6000602082019050818103600083015261148c81611450565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006114ef602383610eea565b91506114fa82611493565b604082019050919050565b6000602082019050818103600083015261151e816114e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061155f82610ff4565b915061156a83610ff4565b925082820390508181111561158257611581611525565b5b92915050565b600061159382610ff4565b915061159e83610ff4565b92508282019050808211156115b6576115b5611525565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006115f2601b83610eea565b91506115fd826115bc565b602082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061165e602083610eea565b915061166982611628565b602082019050919050565b6000602082019050818103600083015261168d81611651565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e383832548f23fed4f2bd505911825387ad359d0ea89dbe9da38ddcba38eef0864736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000ca0ec7a61bc127527a158d4f485d9447867a486a000000000000000000000000ca0ec7a61bc127527a158d4f485d9447867a486a000000000000000000000000000000000000000000000000000000000000001e4120736c696768746c7920526163697374204d69636b6579204d6f757365000000000000000000000000000000000000000000000000000000000000000000084d49434b4b4b4559000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): A slightly Racist Mickey Mouse
Arg [1] : symbol (string): MICKKKEY
Arg [2] : decimals (uint8): 18
Arg [3] : supply (uint256): 100000000000000
Arg [4] : owner (address): 0xcA0Ec7a61Bc127527A158D4F485d9447867A486a
Arg [5] : feeWallet (address): 0xcA0Ec7a61Bc127527A158D4F485d9447867A486a

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [4] : 000000000000000000000000ca0ec7a61bc127527a158d4f485d9447867a486a
Arg [5] : 000000000000000000000000ca0ec7a61bc127527a158d4f485d9447867a486a
Arg [6] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [7] : 4120736c696768746c7920526163697374204d69636b6579204d6f7573650000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 4d49434b4b4b4559000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23150:991:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13194:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15406:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14293:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16082:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23043:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16945:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14464:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1664:103;;;:::i;:::-;;1016:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13404:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17741:393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14820:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15083:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1922:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13194:91;13239:13;13272:5;13265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13194:91;:::o;15406:194::-;15514:4;15531:39;15540:12;:10;:12::i;:::-;15554:7;15563:6;15531:8;:39::i;:::-;15588:4;15581:11;;15406:194;;;;:::o;14293:108::-;14354:7;14381:12;;14374:19;;14293:108;:::o;16082:454::-;16222:4;16239:36;16249:6;16257:9;16268:6;16239:9;:36::i;:::-;16286:220;16309:6;16330:12;:10;:12::i;:::-;16357:138;16413:6;16357:138;;;;;;;;;;;;;;;;;:11;:19;16369:6;16357:19;;;;;;;;;;;;;;;:33;16377:12;:10;:12::i;:::-;16357:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;16286:8;:220::i;:::-;16524:4;16517:11;;16082:454;;;;;:::o;23043:100::-;23101:5;23126:9;23119:16;;23043:100;:::o;16945:293::-;17058:4;17075:133;17098:12;:10;:12::i;:::-;17125:7;17147:50;17186:10;17147:11;:25;17159:12;:10;:12::i;:::-;17147:25;;;;;;;;;;;;;;;:34;17173:7;17147:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17075:8;:133::i;:::-;17226:4;17219:11;;16945:293;;;;:::o;14464:143::-;14554:7;14581:9;:18;14591:7;14581:18;;;;;;;;;;;;;;;;14574:25;;14464:143;;;:::o;1664:103::-;902:13;:11;:13::i;:::-;1729:30:::1;1756:1;1729:18;:30::i;:::-;1664:103::o:0;1016:87::-;1062:7;1089:6;;;;;;;;;;;1082:13;;1016:87;:::o;13404:95::-;13451:13;13484:7;13477:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13404:95;:::o;17741:393::-;17859:4;17876:228;17899:12;:10;:12::i;:::-;17926:7;17948:145;18005:15;17948:145;;;;;;;;;;;;;;;;;:11;:25;17960:12;:10;:12::i;:::-;17948:25;;;;;;;;;;;;;;;:34;17974:7;17948:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;17876:8;:228::i;:::-;18122:4;18115:11;;17741:393;;;;:::o;14820:200::-;14931:4;14948:42;14958:12;:10;:12::i;:::-;14972:9;14983:6;14948:9;:42::i;:::-;15008:4;15001:11;;14820:200;;;;:::o;15083:176::-;15197:7;15224:11;:18;15236:5;15224:18;;;;;;;;;;;;;;;:27;15243:7;15224:27;;;;;;;;;;;;;;;;15217:34;;15083:176;;;;:::o;1922:201::-;902:13;:11;:13::i;:::-;2031:1:::1;2011:22;;:8;:22;;::::0;2003:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2087:28;2106:8;2087:18;:28::i;:::-;1922:201:::0;:::o;232:98::-;285:7;312:10;305:17;;232:98;:::o;21188:380::-;21341:1;21324:19;;:5;:19;;;21316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21422:1;21403:21;;:7;:21;;;21395:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21506:6;21476:11;:18;21488:5;21476:18;;;;;;;;;;;;;;;:27;21495:7;21476:27;;;;;;;;;;;;;;;:36;;;;21544:7;21528:32;;21537:5;21528:32;;;21553:6;21528:32;;;;;;:::i;:::-;;;;;;;;21188:380;;;:::o;18624:610::-;18782:1;18764:20;;:6;:20;;;18756:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18866:1;18845:23;;:9;:23;;;18837:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18921:47;18942:6;18950:9;18961:6;18921:20;:47::i;:::-;19001:108;19037:6;19001:108;;;;;;;;;;;;;;;;;:9;:17;19011:6;19001:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;18981:9;:17;18991:6;18981:17;;;;;;;;;;;;;;;:128;;;;19143:32;19168:6;19143:9;:20;19153:9;19143:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19120:9;:20;19130:9;19120:20;;;;;;;;;;;;;;;:55;;;;19208:9;19191:35;;19200:6;19191:35;;;19219:6;19191:35;;;;;;:::i;:::-;;;;;;;;18624:610;;;:::o;10317:200::-;10437:7;10470:1;10465;:6;;10473:12;10457:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;10508:1;10504;:5;;;;:::i;:::-;10497:12;;10317:200;;;;;:::o;7490:179::-;7548:7;7568:9;7584:1;7580;:5;;;;:::i;:::-;7568:17;;7609:1;7604;:6;;7596:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;7660:1;7653:8;;;7490:179;;;;:::o;1181:132::-;1256:12;:10;:12::i;:::-;1245:23;;:7;:5;:7::i;:::-;:23;;;1237:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1181:132::o;2283:191::-;2357:16;2376:6;;;;;;;;;;;2357:25;;2402:8;2393:6;;:17;;;;;;;;;;;;;;;;;;2457:8;2426:40;;2447:8;2426:40;;;;;;;;;;;;2346:128;2283:191;:::o;22601:125::-;;;;:::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:225::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:8;6736:2;6728:6;6724:15;6717:33;6532:225;:::o;6763:366::-;6905:3;6926:67;6990:2;6985:3;6926:67;:::i;:::-;6919:74;;7002:93;7091:3;7002:93;:::i;:::-;7120:2;7115:3;7111:12;7104:19;;6763:366;;;:::o;7135:419::-;7301:4;7339:2;7328:9;7324:18;7316:26;;7388:9;7382:4;7378:20;7374:1;7363:9;7359:17;7352:47;7416:131;7542:4;7416:131;:::i;:::-;7408:139;;7135:419;;;:::o;7560:223::-;7700:34;7696:1;7688:6;7684:14;7677:58;7769:6;7764:2;7756:6;7752:15;7745:31;7560:223;:::o;7789:366::-;7931:3;7952:67;8016:2;8011:3;7952:67;:::i;:::-;7945:74;;8028:93;8117:3;8028:93;:::i;:::-;8146:2;8141:3;8137:12;8130:19;;7789:366;;;:::o;8161:419::-;8327:4;8365:2;8354:9;8350:18;8342:26;;8414:9;8408:4;8404:20;8400:1;8389:9;8385:17;8378:47;8442:131;8568:4;8442:131;:::i;:::-;8434:139;;8161:419;;;:::o;8586:221::-;8726:34;8722:1;8714:6;8710:14;8703:58;8795:4;8790:2;8782:6;8778:15;8771:29;8586:221;:::o;8813:366::-;8955:3;8976:67;9040:2;9035:3;8976:67;:::i;:::-;8969:74;;9052:93;9141:3;9052:93;:::i;:::-;9170:2;9165:3;9161:12;9154:19;;8813:366;;;:::o;9185:419::-;9351:4;9389:2;9378:9;9374:18;9366:26;;9438:9;9432:4;9428:20;9424:1;9413:9;9409:17;9402:47;9466:131;9592:4;9466:131;:::i;:::-;9458:139;;9185:419;;;:::o;9610:224::-;9750:34;9746:1;9738:6;9734:14;9727:58;9819:7;9814:2;9806:6;9802:15;9795:32;9610:224;:::o;9840:366::-;9982:3;10003:67;10067:2;10062:3;10003:67;:::i;:::-;9996:74;;10079:93;10168:3;10079:93;:::i;:::-;10197:2;10192:3;10188:12;10181:19;;9840:366;;;:::o;10212:419::-;10378:4;10416:2;10405:9;10401:18;10393:26;;10465:9;10459:4;10455:20;10451:1;10440:9;10436:17;10429:47;10493:131;10619:4;10493:131;:::i;:::-;10485:139;;10212:419;;;:::o;10637:222::-;10777:34;10773:1;10765:6;10761:14;10754:58;10846:5;10841:2;10833:6;10829:15;10822:30;10637:222;:::o;10865:366::-;11007:3;11028:67;11092:2;11087:3;11028:67;:::i;:::-;11021:74;;11104:93;11193:3;11104:93;:::i;:::-;11222:2;11217:3;11213:12;11206:19;;10865:366;;;:::o;11237:419::-;11403:4;11441:2;11430:9;11426:18;11418:26;;11490:9;11484:4;11480:20;11476:1;11465:9;11461:17;11454:47;11518:131;11644:4;11518:131;:::i;:::-;11510:139;;11237:419;;;:::o;11662:180::-;11710:77;11707:1;11700:88;11807:4;11804:1;11797:15;11831:4;11828:1;11821:15;11848:194;11888:4;11908:20;11926:1;11908:20;:::i;:::-;11903:25;;11942:20;11960:1;11942:20;:::i;:::-;11937:25;;11986:1;11983;11979:9;11971:17;;12010:1;12004:4;12001:11;11998:37;;;12015:18;;:::i;:::-;11998:37;11848:194;;;;:::o;12048:191::-;12088:3;12107:20;12125:1;12107:20;:::i;:::-;12102:25;;12141:20;12159:1;12141:20;:::i;:::-;12136:25;;12184:1;12181;12177:9;12170:16;;12205:3;12202:1;12199:10;12196:36;;;12212:18;;:::i;:::-;12196:36;12048:191;;;;:::o;12245:177::-;12385:29;12381:1;12373:6;12369:14;12362:53;12245:177;:::o;12428:366::-;12570:3;12591:67;12655:2;12650:3;12591:67;:::i;:::-;12584:74;;12667:93;12756:3;12667:93;:::i;:::-;12785:2;12780:3;12776:12;12769:19;;12428:366;;;:::o;12800:419::-;12966:4;13004:2;12993:9;12989:18;12981:26;;13053:9;13047:4;13043:20;13039:1;13028:9;13024:17;13017:47;13081:131;13207:4;13081:131;:::i;:::-;13073:139;;12800:419;;;:::o;13225:182::-;13365:34;13361:1;13353:6;13349:14;13342:58;13225:182;:::o;13413:366::-;13555:3;13576:67;13640:2;13635:3;13576:67;:::i;:::-;13569:74;;13652:93;13741:3;13652:93;:::i;:::-;13770:2;13765:3;13761:12;13754:19;;13413:366;;;:::o;13785:419::-;13951:4;13989:2;13978:9;13974:18;13966:26;;14038:9;14032:4;14028:20;14024:1;14013:9;14009:17;14002:47;14066:131;14192:4;14066:131;:::i;:::-;14058:139;;13785:419;;;:::o

Swarm Source

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