ETH Price: $2,391.27 (-0.31%)

Token

Zoomer Inu (ZOOMERINU)
 

Overview

Max Total Supply

420,690,000,000 ZOOMERINU

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,128,461,295.479683694778879028 ZOOMERINU

Value
$0.00
0x29dde95e4ed3457a5a97e4fbc5cfaa3d4b461a18
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:
ZOOMERINU

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-09
*/

/**
No cap, ZOOMERINU is the next big thing in the crypto world, fam. 🚀 We Bussin.

Get ready to ride the wave with ZOOMERINU, the freshest, most lit ERC20 token out there.

/**
 *                                     .////.///   .%(//@@//#////@//////
 *                              .////@@@///////&@&@@%/.@&/,@#(@//&@/@@(//.
 *                         ////////////@@@%///@@(@@(@@@(/(@(@%,@//%@@@@#//
 *                        ////#&@@@@@@////@@(//@@@@@@#/@@@/@%@//@//@/&@@//.
 *                         ./////////@@@///#@@(//@@@/@@@/@@/@&@@/@/@@/@@///
 *                              @@@.///@@@@//((. //( //@@/@@#@/@@@#/@ @@/,//
 *                             @@%  / /@@/                                 @,
 *                           .@@  #    @@                                  .@
 *                          /@@  @@# / @@                                   @@
 *                         (@@ &  ,./  @@                                   %@
 *                         @@/        @&                                     @
 *                         @@@@@@@@@%                                        @
 *                        .@                                           ,   . @
 *                        @         .. #,../&@#@/(@./   .   ..   &&#@/..(. , @
 *                      .&      @&&,(..@@@@@@@@@(     (.//.   .@             ..
 *                  (@@@@/    .@@,  @&            @&     #@@@@@@/  @@/        @@/
 *                    &           (@ ,./  @@@@@#.  @(@@         &@@ ,..%%.@@@%#( @
 *                   %.            @    &(@@@@#@   @.            #@@.  .,,/&#( #,@
 *                  .(              @@           #@(              .@.@         %@
 *                  @                  /@@@@@@@@.                  .@,@@@@@@@& %
 *                  @                           @.      #%#       #(          @.
 *                  @                                                         @
 *                 ,&                                                        /@
 *                .@                             .@@#/..  ..((#&@@%#.      .@.
 *                @                                                    .#@,
 *                @                                                 /@,
 *              .@                                                ,@#
 *             &&                                             (@@.
 *            @,                                       @@@@&
 *          @#                                         @
 *       .@,                                           ,@
 *    ,@%                                     @          @,
 * .@/.#(.                                  .@/           ,@⠀⠀⠀⠀
 * ⠀⠀⠀⠀⠀


Twitter: https://twitter.com/ZOOMERINU
Telegram: https://t.me/zoomerinuerc
Website: https://zoomerinu.vip
*/



// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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 ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @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 _balances[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");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: contracts/contract.sol


pragma solidity ^0.8.9;



interface IUniswapV2Router02 {
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
}

contract ZOOMERINU is ERC20, Ownable {
    address payable public marketingWallet;
    uint256 public marketingTax;
    IUniswapV2Router02 public uniswapRouter;

    constructor(address payable _marketingWallet, uint256 _marketingTax, address _router) ERC20("Zoomer Inu", "ZOOMERINU") {
        _mint(msg.sender, 420690000000 * 10 ** decimals());
        marketingTax = _marketingTax;
        marketingWallet = _marketingWallet;
        uniswapRouter = IUniswapV2Router02(_router);
    }

    function setMarketingTax(uint256 _marketingTax) external onlyOwner {
        marketingTax = _marketingTax;
    }

    function setMarketingWallet(address payable _marketingWallet) external onlyOwner {
        marketingWallet = _marketingWallet;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        uint256 tax = amount * marketingTax / 100;
        uint256 amountAfterTax = amount - tax;

        _transfer(sender, marketingWallet, tax);
        _transfer(sender, recipient, amountAfterTax);

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

        return true;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        uint256 tax = amount * marketingTax / 100;
        uint256 amountAfterTax = amount - tax;

        _transfer(_msgSender(), marketingWallet, tax);
        _transfer(_msgSender(), recipient, amountAfterTax);

        return true;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"},{"internalType":"address","name":"_router","type":"address"}],"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":[{"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":"marketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setMarketingTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","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"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200243c3803806200243c8339818101604052810190620000379190620005b3565b6040518060400160405280600a81526020017f5a6f6f6d657220496e75000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f5a4f4f4d4552494e5500000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000419565b508060049080519060200190620000d492919062000419565b505050620000f7620000eb620001ca60201b60201c565b620001d260201b60201c565b62000138336200010c6200029860201b60201c565b600a6200011a91906200079f565b6461f313f8806200012c9190620007f0565b620002a160201b60201c565b8160078190555082600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620009c4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000314576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030b90620008b2565b60405180910390fd5b62000328600083836200040f60201b60201c565b80600260008282546200033c9190620008d4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ef919062000942565b60405180910390a36200040b600083836200041460201b60201c565b5050565b505050565b505050565b82805462000427906200098e565b90600052602060002090601f0160209004810192826200044b576000855562000497565b82601f106200046657805160ff191683800117855562000497565b8280016001018555821562000497579182015b828111156200049657825182559160200191906001019062000479565b5b509050620004a69190620004aa565b5090565b5b80821115620004c5576000816000905550600101620004ab565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004fb82620004ce565b9050919050565b6200050d81620004ee565b81146200051957600080fd5b50565b6000815190506200052d8162000502565b92915050565b6000819050919050565b620005488162000533565b81146200055457600080fd5b50565b60008151905062000568816200053d565b92915050565b60006200057b82620004ce565b9050919050565b6200058d816200056e565b81146200059957600080fd5b50565b600081519050620005ad8162000582565b92915050565b600080600060608486031215620005cf57620005ce620004c9565b5b6000620005df868287016200051c565b9350506020620005f28682870162000557565b925050604062000605868287016200059c565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200069d578086048111156200067557620006746200060f565b5b6001851615620006855780820291505b808102905062000695856200063e565b945062000655565b94509492505050565b600082620006b857600190506200078b565b81620006c857600090506200078b565b8160018114620006e15760028114620006ec5762000722565b60019150506200078b565b60ff8411156200070157620007006200060f565b5b8360020a9150848211156200071b576200071a6200060f565b5b506200078b565b5060208310610133831016604e8410600b84101617156200075c5782820a9050838111156200075657620007556200060f565b5b6200078b565b6200076b84848460016200064b565b925090508184048111156200078557620007846200060f565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007ac8262000533565b9150620007b98362000792565b9250620007e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006a6565b905092915050565b6000620007fd8262000533565b91506200080a8362000533565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200084657620008456200060f565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200089a601f8362000851565b9150620008a78262000862565b602082019050919050565b60006020820190508181036000830152620008cd816200088b565b9050919050565b6000620008e18262000533565b9150620008ee8362000533565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200092657620009256200060f565b5b828201905092915050565b6200093c8162000533565b82525050565b600060208201905062000959600083018462000931565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009a757607f821691505b60208210811415620009be57620009bd6200095f565b5b50919050565b611a6880620009d46000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102fa578063a457c2d714610318578063a9059cbb14610348578063dd62ed3e14610378578063f2fde38b146103a857610121565b806370a0823114610266578063715018a614610296578063735de9f7146102a057806375f0a874146102be5780638da5cb5b146102dc57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780634a827cee1461022e5780635d098b381461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101745780631d2cb02d14610192575b600080fd5b61012e6103c4565b60405161013b9190610faa565b60405180910390f35b61015e60048036038101906101599190611065565b610456565b60405161016b91906110c0565b60405180910390f35b61017c610479565b60405161018991906110ea565b60405180910390f35b61019a610483565b6040516101a791906110ea565b60405180910390f35b6101ca60048036038101906101c59190611105565b610489565b6040516101d791906110c0565b60405180910390f35b6101e8610573565b6040516101f59190611174565b60405180910390f35b61021860048036038101906102139190611065565b61057c565b60405161022591906110c0565b60405180910390f35b6102486004803603810190610243919061118f565b6105b3565b005b610264600480360381019061025f91906111fa565b6105c5565b005b610280600480360381019061027b9190611227565b610611565b60405161028d91906110ea565b60405180910390f35b61029e610659565b005b6102a861066d565b6040516102b591906112b3565b60405180910390f35b6102c6610693565b6040516102d391906112dd565b60405180910390f35b6102e46106b9565b6040516102f19190611307565b60405180910390f35b6103026106e3565b60405161030f9190610faa565b60405180910390f35b610332600480360381019061032d9190611065565b610775565b60405161033f91906110c0565b60405180910390f35b610362600480360381019061035d9190611065565b6107ec565b60405161036f91906110c0565b60405180910390f35b610392600480360381019061038d9190611322565b61086d565b60405161039f91906110ea565b60405180910390f35b6103c260048036038101906103bd9190611227565b6108f4565b005b6060600380546103d390611391565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff90611391565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b600080610461610978565b905061046e818585610980565b600191505092915050565b6000600254905090565b60075481565b60008060646007548461049c91906113f2565b6104a6919061147b565b9050600081846104b691906114ac565b90506104e586600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b4b565b6104f0868683610b4b565b6000610503876104fe610978565b61086d565b905084811015610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90611552565b60405180910390fd5b61056587610554610978565b878461056091906114ac565b610980565b600193505050509392505050565b60006012905090565b600080610587610978565b90506105a8818585610599858961086d565b6105a39190611572565b610980565b600191505092915050565b6105bb610dc3565b8060078190555050565b6105cd610dc3565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610661610dc3565b61066b6000610e41565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f290611391565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90611391565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b600080610780610978565b9050600061078e828661086d565b9050838110156107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca9061163a565b60405180910390fd5b6107e08286868403610980565b60019250505092915050565b6000806064600754846107ff91906113f2565b610809919061147b565b90506000818461081991906114ac565b905061084f610826610978565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b4b565b61086161085a610978565b8683610b4b565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108fc610dc3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906116cc565b60405180910390fd5b61097581610e41565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e79061175e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906117f0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3e91906110ea565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290611914565b60405180910390fd5b610c36838383610f07565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906119a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610daa91906110ea565b60405180910390a3610dbd848484610f0c565b50505050565b610dcb610978565b73ffffffffffffffffffffffffffffffffffffffff16610de96106b9565b73ffffffffffffffffffffffffffffffffffffffff1614610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690611a12565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f4b578082015181840152602081019050610f30565b83811115610f5a576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f7c82610f11565b610f868185610f1c565b9350610f96818560208601610f2d565b610f9f81610f60565b840191505092915050565b60006020820190508181036000830152610fc48184610f71565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ffc82610fd1565b9050919050565b61100c81610ff1565b811461101757600080fd5b50565b60008135905061102981611003565b92915050565b6000819050919050565b6110428161102f565b811461104d57600080fd5b50565b60008135905061105f81611039565b92915050565b6000806040838503121561107c5761107b610fcc565b5b600061108a8582860161101a565b925050602061109b85828601611050565b9150509250929050565b60008115159050919050565b6110ba816110a5565b82525050565b60006020820190506110d560008301846110b1565b92915050565b6110e48161102f565b82525050565b60006020820190506110ff60008301846110db565b92915050565b60008060006060848603121561111e5761111d610fcc565b5b600061112c8682870161101a565b935050602061113d8682870161101a565b925050604061114e86828701611050565b9150509250925092565b600060ff82169050919050565b61116e81611158565b82525050565b60006020820190506111896000830184611165565b92915050565b6000602082840312156111a5576111a4610fcc565b5b60006111b384828501611050565b91505092915050565b60006111c782610fd1565b9050919050565b6111d7816111bc565b81146111e257600080fd5b50565b6000813590506111f4816111ce565b92915050565b6000602082840312156112105761120f610fcc565b5b600061121e848285016111e5565b91505092915050565b60006020828403121561123d5761123c610fcc565b5b600061124b8482850161101a565b91505092915050565b6000819050919050565b600061127961127461126f84610fd1565b611254565b610fd1565b9050919050565b600061128b8261125e565b9050919050565b600061129d82611280565b9050919050565b6112ad81611292565b82525050565b60006020820190506112c860008301846112a4565b92915050565b6112d7816111bc565b82525050565b60006020820190506112f260008301846112ce565b92915050565b61130181610ff1565b82525050565b600060208201905061131c60008301846112f8565b92915050565b6000806040838503121561133957611338610fcc565b5b60006113478582860161101a565b92505060206113588582860161101a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113a957607f821691505b602082108114156113bd576113bc611362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113fd8261102f565b91506114088361102f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611441576114406113c3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006114868261102f565b91506114918361102f565b9250826114a1576114a061144c565b5b828204905092915050565b60006114b78261102f565b91506114c28361102f565b9250828210156114d5576114d46113c3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061153c602883610f1c565b9150611547826114e0565b604082019050919050565b6000602082019050818103600083015261156b8161152f565b9050919050565b600061157d8261102f565b91506115888361102f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115bd576115bc6113c3565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611624602583610f1c565b915061162f826115c8565b604082019050919050565b6000602082019050818103600083015261165381611617565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116b6602683610f1c565b91506116c18261165a565b604082019050919050565b600060208201905081810360008301526116e5816116a9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611748602483610f1c565b9150611753826116ec565b604082019050919050565b600060208201905081810360008301526117778161173b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117da602283610f1c565b91506117e58261177e565b604082019050919050565b60006020820190508181036000830152611809816117cd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061186c602583610f1c565b915061187782611810565b604082019050919050565b6000602082019050818103600083015261189b8161185f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118fe602383610f1c565b9150611909826118a2565b604082019050919050565b6000602082019050818103600083015261192d816118f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611990602683610f1c565b915061199b82611934565b604082019050919050565b600060208201905081810360008301526119bf81611983565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119fc602083610f1c565b9150611a07826119c6565b602082019050919050565b60006020820190508181036000830152611a2b816119ef565b905091905056fea26469706673582212200146786ae4f58eff5774d50ef1c2ae3fbb2f5f9afc268827343e2acaf419724464736f6c63430008090033000000000000000000000000abd0915aec2d336774c65cff235b44529522dd7800000000000000000000000000000000000000000000000000000000000000020000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102fa578063a457c2d714610318578063a9059cbb14610348578063dd62ed3e14610378578063f2fde38b146103a857610121565b806370a0823114610266578063715018a614610296578063735de9f7146102a057806375f0a874146102be5780638da5cb5b146102dc57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780634a827cee1461022e5780635d098b381461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101745780631d2cb02d14610192575b600080fd5b61012e6103c4565b60405161013b9190610faa565b60405180910390f35b61015e60048036038101906101599190611065565b610456565b60405161016b91906110c0565b60405180910390f35b61017c610479565b60405161018991906110ea565b60405180910390f35b61019a610483565b6040516101a791906110ea565b60405180910390f35b6101ca60048036038101906101c59190611105565b610489565b6040516101d791906110c0565b60405180910390f35b6101e8610573565b6040516101f59190611174565b60405180910390f35b61021860048036038101906102139190611065565b61057c565b60405161022591906110c0565b60405180910390f35b6102486004803603810190610243919061118f565b6105b3565b005b610264600480360381019061025f91906111fa565b6105c5565b005b610280600480360381019061027b9190611227565b610611565b60405161028d91906110ea565b60405180910390f35b61029e610659565b005b6102a861066d565b6040516102b591906112b3565b60405180910390f35b6102c6610693565b6040516102d391906112dd565b60405180910390f35b6102e46106b9565b6040516102f19190611307565b60405180910390f35b6103026106e3565b60405161030f9190610faa565b60405180910390f35b610332600480360381019061032d9190611065565b610775565b60405161033f91906110c0565b60405180910390f35b610362600480360381019061035d9190611065565b6107ec565b60405161036f91906110c0565b60405180910390f35b610392600480360381019061038d9190611322565b61086d565b60405161039f91906110ea565b60405180910390f35b6103c260048036038101906103bd9190611227565b6108f4565b005b6060600380546103d390611391565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff90611391565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b600080610461610978565b905061046e818585610980565b600191505092915050565b6000600254905090565b60075481565b60008060646007548461049c91906113f2565b6104a6919061147b565b9050600081846104b691906114ac565b90506104e586600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b4b565b6104f0868683610b4b565b6000610503876104fe610978565b61086d565b905084811015610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f90611552565b60405180910390fd5b61056587610554610978565b878461056091906114ac565b610980565b600193505050509392505050565b60006012905090565b600080610587610978565b90506105a8818585610599858961086d565b6105a39190611572565b610980565b600191505092915050565b6105bb610dc3565b8060078190555050565b6105cd610dc3565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610661610dc3565b61066b6000610e41565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f290611391565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90611391565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b600080610780610978565b9050600061078e828661086d565b9050838110156107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca9061163a565b60405180910390fd5b6107e08286868403610980565b60019250505092915050565b6000806064600754846107ff91906113f2565b610809919061147b565b90506000818461081991906114ac565b905061084f610826610978565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b4b565b61086161085a610978565b8683610b4b565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108fc610dc3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561096c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610963906116cc565b60405180910390fd5b61097581610e41565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e79061175e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906117f0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3e91906110ea565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290611914565b60405180910390fd5b610c36838383610f07565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906119a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610daa91906110ea565b60405180910390a3610dbd848484610f0c565b50505050565b610dcb610978565b73ffffffffffffffffffffffffffffffffffffffff16610de96106b9565b73ffffffffffffffffffffffffffffffffffffffff1614610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690611a12565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f4b578082015181840152602081019050610f30565b83811115610f5a576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f7c82610f11565b610f868185610f1c565b9350610f96818560208601610f2d565b610f9f81610f60565b840191505092915050565b60006020820190508181036000830152610fc48184610f71565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ffc82610fd1565b9050919050565b61100c81610ff1565b811461101757600080fd5b50565b60008135905061102981611003565b92915050565b6000819050919050565b6110428161102f565b811461104d57600080fd5b50565b60008135905061105f81611039565b92915050565b6000806040838503121561107c5761107b610fcc565b5b600061108a8582860161101a565b925050602061109b85828601611050565b9150509250929050565b60008115159050919050565b6110ba816110a5565b82525050565b60006020820190506110d560008301846110b1565b92915050565b6110e48161102f565b82525050565b60006020820190506110ff60008301846110db565b92915050565b60008060006060848603121561111e5761111d610fcc565b5b600061112c8682870161101a565b935050602061113d8682870161101a565b925050604061114e86828701611050565b9150509250925092565b600060ff82169050919050565b61116e81611158565b82525050565b60006020820190506111896000830184611165565b92915050565b6000602082840312156111a5576111a4610fcc565b5b60006111b384828501611050565b91505092915050565b60006111c782610fd1565b9050919050565b6111d7816111bc565b81146111e257600080fd5b50565b6000813590506111f4816111ce565b92915050565b6000602082840312156112105761120f610fcc565b5b600061121e848285016111e5565b91505092915050565b60006020828403121561123d5761123c610fcc565b5b600061124b8482850161101a565b91505092915050565b6000819050919050565b600061127961127461126f84610fd1565b611254565b610fd1565b9050919050565b600061128b8261125e565b9050919050565b600061129d82611280565b9050919050565b6112ad81611292565b82525050565b60006020820190506112c860008301846112a4565b92915050565b6112d7816111bc565b82525050565b60006020820190506112f260008301846112ce565b92915050565b61130181610ff1565b82525050565b600060208201905061131c60008301846112f8565b92915050565b6000806040838503121561133957611338610fcc565b5b60006113478582860161101a565b92505060206113588582860161101a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113a957607f821691505b602082108114156113bd576113bc611362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113fd8261102f565b91506114088361102f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611441576114406113c3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006114868261102f565b91506114918361102f565b9250826114a1576114a061144c565b5b828204905092915050565b60006114b78261102f565b91506114c28361102f565b9250828210156114d5576114d46113c3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061153c602883610f1c565b9150611547826114e0565b604082019050919050565b6000602082019050818103600083015261156b8161152f565b9050919050565b600061157d8261102f565b91506115888361102f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115bd576115bc6113c3565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611624602583610f1c565b915061162f826115c8565b604082019050919050565b6000602082019050818103600083015261165381611617565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116b6602683610f1c565b91506116c18261165a565b604082019050919050565b600060208201905081810360008301526116e5816116a9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611748602483610f1c565b9150611753826116ec565b604082019050919050565b600060208201905081810360008301526117778161173b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117da602283610f1c565b91506117e58261177e565b604082019050919050565b60006020820190508181036000830152611809816117cd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061186c602583610f1c565b915061187782611810565b604082019050919050565b6000602082019050818103600083015261189b8161185f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118fe602383610f1c565b9150611909826118a2565b604082019050919050565b6000602082019050818103600083015261192d816118f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611990602683610f1c565b915061199b82611934565b604082019050919050565b600060208201905081810360008301526119bf81611983565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119fc602083610f1c565b9150611a07826119c6565b602082019050919050565b60006020820190508181036000830152611a2b816119ef565b905091905056fea26469706673582212200146786ae4f58eff5774d50ef1c2ae3fbb2f5f9afc268827343e2acaf419724464736f6c63430008090033

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

000000000000000000000000abd0915aec2d336774c65cff235b44529522dd7800000000000000000000000000000000000000000000000000000000000000020000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xaBd0915aeC2d336774c65cFf235b44529522DD78
Arg [1] : _marketingTax (uint256): 2
Arg [2] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000abd0915aec2d336774c65cff235b44529522dd78
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

23601:1691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12199:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14559:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13328:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23690:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24370:572;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13170:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16010:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24106:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24228:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13499:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5654:103;;;:::i;:::-;;23724:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23645:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5013:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12418:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16751:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24950:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14088:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5912:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12199:100;12253:13;12286:5;12279:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12199:100;:::o;14559:201::-;14642:4;14659:13;14675:12;:10;:12::i;:::-;14659:28;;14698:32;14707:5;14714:7;14723:6;14698:8;:32::i;:::-;14748:4;14741:11;;;14559:201;;;;:::o;13328:108::-;13389:7;13416:12;;13409:19;;13328:108;:::o;23690:27::-;;;;:::o;24370:572::-;24468:4;24485:11;24523:3;24508:12;;24499:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;24485:41;;24537:22;24571:3;24562:6;:12;;;;:::i;:::-;24537:37;;24587:39;24597:6;24605:15;;;;;;;;;;;24622:3;24587:9;:39::i;:::-;24637:44;24647:6;24655:9;24666:14;24637:9;:44::i;:::-;24694:24;24721:31;24731:6;24739:12;:10;:12::i;:::-;24721:9;:31::i;:::-;24694:58;;24791:6;24771:16;:26;;24763:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;24853:57;24862:6;24870:12;:10;:12::i;:::-;24903:6;24884:16;:25;;;;:::i;:::-;24853:8;:57::i;:::-;24930:4;24923:11;;;;;24370:572;;;;;:::o;13170:93::-;13228:5;13253:2;13246:9;;13170:93;:::o;16010:238::-;16098:4;16115:13;16131:12;:10;:12::i;:::-;16115:28;;16154:64;16163:5;16170:7;16207:10;16179:25;16189:5;16196:7;16179:9;:25::i;:::-;:38;;;;:::i;:::-;16154:8;:64::i;:::-;16236:4;16229:11;;;16010:238;;;;:::o;24106:114::-;4899:13;:11;:13::i;:::-;24199::::1;24184:12;:28;;;;24106:114:::0;:::o;24228:134::-;4899:13;:11;:13::i;:::-;24338:16:::1;24320:15;;:34;;;;;;;;;;;;;;;;;;24228:134:::0;:::o;13499:127::-;13573:7;13600:9;:18;13610:7;13600:18;;;;;;;;;;;;;;;;13593:25;;13499:127;;;:::o;5654:103::-;4899:13;:11;:13::i;:::-;5719:30:::1;5746:1;5719:18;:30::i;:::-;5654:103::o:0;23724:39::-;;;;;;;;;;;;;:::o;23645:38::-;;;;;;;;;;;;;:::o;5013:87::-;5059:7;5086:6;;;;;;;;;;;5079:13;;5013:87;:::o;12418:104::-;12474:13;12507:7;12500:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12418:104;:::o;16751:436::-;16844:4;16861:13;16877:12;:10;:12::i;:::-;16861:28;;16900:24;16927:25;16937:5;16944:7;16927:9;:25::i;:::-;16900:52;;16991:15;16971:16;:35;;16963:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17084:60;17093:5;17100:7;17128:15;17109:16;:34;17084:8;:60::i;:::-;17175:4;17168:11;;;;16751:436;;;;:::o;24950:335::-;25028:4;25045:11;25083:3;25068:12;;25059:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;25045:41;;25097:22;25131:3;25122:6;:12;;;;:::i;:::-;25097:37;;25147:45;25157:12;:10;:12::i;:::-;25171:15;;;;;;;;;;;25188:3;25147:9;:45::i;:::-;25203:50;25213:12;:10;:12::i;:::-;25227:9;25238:14;25203:9;:50::i;:::-;25273:4;25266:11;;;;24950:335;;;;:::o;14088:151::-;14177:7;14204:11;:18;14216:5;14204:18;;;;;;;;;;;;;;;:27;14223:7;14204:27;;;;;;;;;;;;;;;;14197:34;;14088:151;;;;:::o;5912:201::-;4899:13;:11;:13::i;:::-;6021:1:::1;6001:22;;:8;:22;;;;5993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6077:28;6096:8;6077:18;:28::i;:::-;5912:201:::0;:::o;3564:98::-;3617:7;3644:10;3637:17;;3564:98;:::o;20744:346::-;20863:1;20846:19;;:5;:19;;;;20838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20944:1;20925:21;;:7;:21;;;;20917:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21028:6;20998:11;:18;21010:5;20998:18;;;;;;;;;;;;;;;:27;21017:7;20998:27;;;;;;;;;;;;;;;:36;;;;21066:7;21050:32;;21059:5;21050:32;;;21075:6;21050:32;;;;;;:::i;:::-;;;;;;;;20744:346;;;:::o;17657:806::-;17770:1;17754:18;;:4;:18;;;;17746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17847:1;17833:16;;:2;:16;;;;17825:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17902:38;17923:4;17929:2;17933:6;17902:20;:38::i;:::-;17953:19;17975:9;:15;17985:4;17975:15;;;;;;;;;;;;;;;;17953:37;;18024:6;18009:11;:21;;18001:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18141:6;18127:11;:20;18109:9;:15;18119:4;18109:15;;;;;;;;;;;;;;;:38;;;;18344:6;18327:9;:13;18337:2;18327:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18394:2;18379:26;;18388:4;18379:26;;;18398:6;18379:26;;;;;;:::i;:::-;;;;;;;;18418:37;18438:4;18444:2;18448:6;18418:19;:37::i;:::-;17735:728;17657:806;;;:::o;5178:132::-;5253:12;:10;:12::i;:::-;5242:23;;:7;:5;:7::i;:::-;:23;;;5234:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:132::o;6273:191::-;6347:16;6366:6;;;;;;;;;;;6347:25;;6392:8;6383:6;;:17;;;;;;;;;;;;;;;;;;6447:8;6416:40;;6437:8;6416:40;;;;;;;;;;;;6336:128;6273:191;:::o;22400:91::-;;;;:::o;23095:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:104::-;5281:7;5310:24;5328:5;5310:24;:::i;:::-;5299:35;;5236:104;;;:::o;5346:138::-;5427:32;5453:5;5427:32;:::i;:::-;5420:5;5417:43;5407:71;;5474:1;5471;5464:12;5407:71;5346:138;:::o;5490:155::-;5544:5;5582:6;5569:20;5560:29;;5598:41;5633:5;5598:41;:::i;:::-;5490:155;;;;:::o;5651:345::-;5718:6;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:61;5971:7;5962:6;5951:9;5947:22;5918:61;:::i;:::-;5908:71;;5864:125;5651:345;;;;:::o;6002:329::-;6061:6;6110:2;6098:9;6089:7;6085:23;6081:32;6078:119;;;6116:79;;:::i;:::-;6078:119;6236:1;6261:53;6306:7;6297:6;6286:9;6282:22;6261:53;:::i;:::-;6251:63;;6207:117;6002:329;;;;:::o;6337:60::-;6365:3;6386:5;6379:12;;6337:60;;;:::o;6403:142::-;6453:9;6486:53;6504:34;6513:24;6531:5;6513:24;:::i;:::-;6504:34;:::i;:::-;6486:53;:::i;:::-;6473:66;;6403:142;;;:::o;6551:126::-;6601:9;6634:37;6665:5;6634:37;:::i;:::-;6621:50;;6551:126;;;:::o;6683:152::-;6759:9;6792:37;6823:5;6792:37;:::i;:::-;6779:50;;6683:152;;;:::o;6841:183::-;6954:63;7011:5;6954:63;:::i;:::-;6949:3;6942:76;6841:183;;:::o;7030:274::-;7149:4;7187:2;7176:9;7172:18;7164:26;;7200:97;7294:1;7283:9;7279:17;7270:6;7200:97;:::i;:::-;7030:274;;;;:::o;7310:142::-;7413:32;7439:5;7413:32;:::i;:::-;7408:3;7401:45;7310:142;;:::o;7458:254::-;7567:4;7605:2;7594:9;7590:18;7582:26;;7618:87;7702:1;7691:9;7687:17;7678:6;7618:87;:::i;:::-;7458:254;;;;:::o;7718:118::-;7805:24;7823:5;7805:24;:::i;:::-;7800:3;7793:37;7718:118;;:::o;7842:222::-;7935:4;7973:2;7962:9;7958:18;7950:26;;7986:71;8054:1;8043:9;8039:17;8030:6;7986:71;:::i;:::-;7842:222;;;;:::o;8070:474::-;8138:6;8146;8195:2;8183:9;8174:7;8170:23;8166:32;8163:119;;;8201:79;;:::i;:::-;8163:119;8321:1;8346:53;8391:7;8382:6;8371:9;8367:22;8346:53;:::i;:::-;8336:63;;8292:117;8448:2;8474:53;8519:7;8510:6;8499:9;8495:22;8474:53;:::i;:::-;8464:63;;8419:118;8070:474;;;;;:::o;8550:180::-;8598:77;8595:1;8588:88;8695:4;8692:1;8685:15;8719:4;8716:1;8709:15;8736:320;8780:6;8817:1;8811:4;8807:12;8797:22;;8864:1;8858:4;8854:12;8885:18;8875:81;;8941:4;8933:6;8929:17;8919:27;;8875:81;9003:2;8995:6;8992:14;8972:18;8969:38;8966:84;;;9022:18;;:::i;:::-;8966:84;8787:269;8736:320;;;:::o;9062:180::-;9110:77;9107:1;9100:88;9207:4;9204:1;9197:15;9231:4;9228:1;9221:15;9248:348;9288:7;9311:20;9329:1;9311:20;:::i;:::-;9306:25;;9345:20;9363:1;9345:20;:::i;:::-;9340:25;;9533:1;9465:66;9461:74;9458:1;9455:81;9450:1;9443:9;9436:17;9432:105;9429:131;;;9540:18;;:::i;:::-;9429:131;9588:1;9585;9581:9;9570:20;;9248:348;;;;:::o;9602:180::-;9650:77;9647:1;9640:88;9747:4;9744:1;9737:15;9771:4;9768:1;9761:15;9788:185;9828:1;9845:20;9863:1;9845:20;:::i;:::-;9840:25;;9879:20;9897:1;9879:20;:::i;:::-;9874:25;;9918:1;9908:35;;9923:18;;:::i;:::-;9908:35;9965:1;9962;9958:9;9953:14;;9788:185;;;;:::o;9979:191::-;10019:4;10039:20;10057:1;10039:20;:::i;:::-;10034:25;;10073:20;10091:1;10073:20;:::i;:::-;10068:25;;10112:1;10109;10106:8;10103:34;;;10117:18;;:::i;:::-;10103:34;10162:1;10159;10155:9;10147:17;;9979:191;;;;:::o;10176:227::-;10316:34;10312:1;10304:6;10300:14;10293:58;10385:10;10380:2;10372:6;10368:15;10361:35;10176:227;:::o;10409:366::-;10551:3;10572:67;10636:2;10631:3;10572:67;:::i;:::-;10565:74;;10648:93;10737:3;10648:93;:::i;:::-;10766:2;10761:3;10757:12;10750:19;;10409:366;;;:::o;10781:419::-;10947:4;10985:2;10974:9;10970:18;10962:26;;11034:9;11028:4;11024:20;11020:1;11009:9;11005:17;10998:47;11062:131;11188:4;11062:131;:::i;:::-;11054:139;;10781:419;;;:::o;11206:305::-;11246:3;11265:20;11283:1;11265:20;:::i;:::-;11260:25;;11299:20;11317:1;11299:20;:::i;:::-;11294:25;;11453:1;11385:66;11381:74;11378:1;11375:81;11372:107;;;11459:18;;:::i;:::-;11372:107;11503:1;11500;11496:9;11489:16;;11206:305;;;;:::o;11517:224::-;11657:34;11653:1;11645:6;11641:14;11634:58;11726:7;11721:2;11713:6;11709:15;11702:32;11517:224;:::o;11747:366::-;11889:3;11910:67;11974:2;11969:3;11910:67;:::i;:::-;11903:74;;11986:93;12075:3;11986:93;:::i;:::-;12104:2;12099:3;12095:12;12088:19;;11747:366;;;:::o;12119:419::-;12285:4;12323:2;12312:9;12308:18;12300:26;;12372:9;12366:4;12362:20;12358:1;12347:9;12343:17;12336:47;12400:131;12526:4;12400:131;:::i;:::-;12392:139;;12119:419;;;:::o;12544:225::-;12684:34;12680:1;12672:6;12668:14;12661:58;12753:8;12748:2;12740:6;12736:15;12729:33;12544:225;:::o;12775:366::-;12917:3;12938:67;13002:2;12997:3;12938:67;:::i;:::-;12931:74;;13014:93;13103:3;13014:93;:::i;:::-;13132:2;13127:3;13123:12;13116:19;;12775:366;;;:::o;13147:419::-;13313:4;13351:2;13340:9;13336:18;13328:26;;13400:9;13394:4;13390:20;13386:1;13375:9;13371:17;13364:47;13428:131;13554:4;13428:131;:::i;:::-;13420:139;;13147:419;;;:::o;13572:223::-;13712:34;13708:1;13700:6;13696:14;13689:58;13781:6;13776:2;13768:6;13764:15;13757:31;13572:223;:::o;13801:366::-;13943:3;13964:67;14028:2;14023:3;13964:67;:::i;:::-;13957:74;;14040:93;14129:3;14040:93;:::i;:::-;14158:2;14153:3;14149:12;14142:19;;13801:366;;;:::o;14173:419::-;14339:4;14377:2;14366:9;14362:18;14354:26;;14426:9;14420:4;14416:20;14412:1;14401:9;14397:17;14390:47;14454:131;14580:4;14454:131;:::i;:::-;14446:139;;14173:419;;;:::o;14598:221::-;14738:34;14734:1;14726:6;14722:14;14715:58;14807:4;14802:2;14794:6;14790:15;14783:29;14598:221;:::o;14825:366::-;14967:3;14988:67;15052:2;15047:3;14988:67;:::i;:::-;14981:74;;15064:93;15153:3;15064:93;:::i;:::-;15182:2;15177:3;15173:12;15166:19;;14825:366;;;:::o;15197:419::-;15363:4;15401:2;15390:9;15386:18;15378:26;;15450:9;15444:4;15440:20;15436:1;15425:9;15421:17;15414:47;15478:131;15604:4;15478:131;:::i;:::-;15470:139;;15197:419;;;:::o;15622:224::-;15762:34;15758:1;15750:6;15746:14;15739:58;15831:7;15826:2;15818:6;15814:15;15807:32;15622:224;:::o;15852:366::-;15994:3;16015:67;16079:2;16074:3;16015:67;:::i;:::-;16008:74;;16091:93;16180:3;16091:93;:::i;:::-;16209:2;16204:3;16200:12;16193:19;;15852:366;;;:::o;16224:419::-;16390:4;16428:2;16417:9;16413:18;16405:26;;16477:9;16471:4;16467:20;16463:1;16452:9;16448:17;16441:47;16505:131;16631:4;16505:131;:::i;:::-;16497:139;;16224:419;;;:::o;16649:222::-;16789:34;16785:1;16777:6;16773:14;16766:58;16858:5;16853:2;16845:6;16841:15;16834:30;16649:222;:::o;16877:366::-;17019:3;17040:67;17104:2;17099:3;17040:67;:::i;:::-;17033:74;;17116:93;17205:3;17116:93;:::i;:::-;17234:2;17229:3;17225:12;17218:19;;16877:366;;;:::o;17249:419::-;17415:4;17453:2;17442:9;17438:18;17430:26;;17502:9;17496:4;17492:20;17488:1;17477:9;17473:17;17466:47;17530:131;17656:4;17530:131;:::i;:::-;17522:139;;17249:419;;;:::o;17674:225::-;17814:34;17810:1;17802:6;17798:14;17791:58;17883:8;17878:2;17870:6;17866:15;17859:33;17674:225;:::o;17905:366::-;18047:3;18068:67;18132:2;18127:3;18068:67;:::i;:::-;18061:74;;18144:93;18233:3;18144:93;:::i;:::-;18262:2;18257:3;18253:12;18246:19;;17905:366;;;:::o;18277:419::-;18443:4;18481:2;18470:9;18466:18;18458:26;;18530:9;18524:4;18520:20;18516:1;18505:9;18501:17;18494:47;18558:131;18684:4;18558:131;:::i;:::-;18550:139;;18277:419;;;:::o;18702:182::-;18842:34;18838:1;18830:6;18826:14;18819:58;18702:182;:::o;18890:366::-;19032:3;19053:67;19117:2;19112:3;19053:67;:::i;:::-;19046:74;;19129:93;19218:3;19129:93;:::i;:::-;19247:2;19242:3;19238:12;19231:19;;18890:366;;;:::o;19262:419::-;19428:4;19466:2;19455:9;19451:18;19443:26;;19515:9;19509:4;19505:20;19501:1;19490:9;19486:17;19479:47;19543:131;19669:4;19543:131;:::i;:::-;19535:139;;19262:419;;;:::o

Swarm Source

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