ETH Price: $3,459.06 (+1.80%)
Gas: 11 Gwei

Token

Meowl (MEOWL)
 

Overview

Max Total Supply

15,000,000 MEOWL

Holders

424 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,192.872279553973769093 MEOWL

Value
$0.00
0x30142a0e5597f3203792cd00817638158163d21f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Meowl is a Discord Bot-centred suite of tools designed to simplify and enhance your trading experience.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Meowl

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 3 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: AGPL-3.0-only

pragma solidity ^0.8.19;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Pair.sol
// SPDX-License-Identifier: AGPL-3.0-only

pragma solidity ^0.8.19;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 9 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: AGPL-3.0-only

pragma solidity ^0.8.19;

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 10 of 10 : Meowl.sol
// SPDX-License-Identifier: AGPL-3.0-only

/*

website: https://meowl.xyz
twitter: https://twitter.com/meowlxyz
telegram: https://t.me/meowlxyz
discord: https://discord.meowl.xyz

*/

pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Pair.sol";
import "./interfaces/IUniswapV2Router02.sol";

/* 
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMXKNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN0XMMMMMMMMMM
MMMMMMMMWk'.c0WMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMW0c.'kWMMMMMMMM
MMMMMMMNo.   .:xKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKx:.   .oNMMMMMMM
MMMMMMXc        .;cdxOKXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWNKOkdc;.        cXMMMMMM
MMMMMXc               ..,:oxKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKxl;..               cXMMMMM
MMMMNl                      .,oKWMMMMMMMMMMMMMMMMMMWWNNXXNNMMMMMMMMMWKd;.                     lNMMMM
MMMWx.                         .lKMMMMMMMMMMWXOxlc:;,'..,l0WMMMMMMW0c.                        .xWMMM
MMMK;      .dOOOkxoc,.           'kWMMMMMNOo;.         ,kNMMMMMMWKl.          .,codkOOOd.      ;KMMM
MMMx.      lWMMMMMMMWXkl'         .xWMWKd,.           cXMMWNKXWWk'         'lkXWMMMMMMMWl      .xMMM
MMNl      .kMMMMMMMMMMMMXx'        .kXd.              ;olc;'.lXd.        ,xXWMMMMMMMMMMMk.      lNMM
MMX:      ,KMMMMMMMMMMMMMMXl.       .'                      .xd.       .lXMMMMMMMMMMMMMMK,      ;XMM
MMX;      ;XMMMMMMMMMMMMMMMWd.                              .;.       .dWMMMMMMMMMMMMMMMX;      ;XMM
MMX:      ,KMMMMMMMMMMMMMMMMNo.                                      .oWMMMMMMMMMMMMMMMMK;      :XMM
MMWl      '0MMMMMMMMMMMMMMMMMX;                                      ;XMMMMMMMMMMMMMMMMM0'      lWMM
MMMk.     .xMMMMMMMMMMMMMMMMMWd.                                    .dWMMMMMMMMMMMMMMMMMx.     .kMMM
MMMX:      :XMMMMMMMMMMMMMMMMNd.                                    .dNWMMMMMMMMMMMMMMMX:      :XMMM
MMMMk.     .xWMMMMMMMMMMMN0dc'.                                      .':d0NMMMMMMMMMMMWx.     .kMMMM
MMMMNo.     'OMMMMMMMMWKd,.                                              .,dXMMMMMMMMMO'     .oNMMMM
MMMMMNl      'OWMMMMMNd.     .,clolc;.                        .;clolc,.     'dNMMMMMWO'      lNMMMMM
MMMMMMXl.     .xWMMMXc     'dKWMWXxodkkc.                  .ckKOddONMWKd'     cKMMMNx.     .lXMMMMMM
MMMMMMMNd.     .cKWNc     ;KMMMNd.   .xNO;                ;OW0:.   :KMMMK;     cXWKc.     .dNMMMMMMM
MMMMMMMMWO;      .ol.    ,0MMMWx.     .kMXc              cXMX;      :XMMM0,    .lo.      ;OWMMMMMMMM
MMMMMMMMMMNd'            oWMMMX;       cNMK;            ;KMMx.      .OMMMWo            .oXWNKKNMMMMM
MMMMMMMMMMMWO;          .xMMMMK,       :XMWx.          .xMMWd       .xMMMMx.           .',,',dNMMMMM
MMMMMMMN0xl;.           .xMMMMK;       cNMMO.          .OMMMx.      .OMMMMx.               ,kNMMMMMM
MMMMNOl,.                lNMMMNl      .dWMMk.          .kMMM0'      ,KMMMNl             .:xNMMMMMMMM
MMMXc.                   .kWMMMO'     ;KMMNl  .;llll,   lNMMNo     .dWMMWk.            'oKWMMMMMMMMM
MMMx.                     .:dOXNk,...cKMMNd.  ,0MMMMk.  .dWMMXl...,xXXOd:.               .;dKWMMMMMM
MMMd.                         .,::;:oxkxo;.    cXMMK;    .;oxxxl::c:,.                      .xWMMMMM
MMMO.          .'.                              ckk:                                         .kMMMMM
MMMX:       'lO0l.                                                                            cNMMMM
MMMMO.    'dXMNo.                                                                             ;XMMMM
MMMMWd.  :KMMMO.       .                                                 ...        .:dol:'.  :XMMMM
MMMMMNl.cXMMMM0'  .;ok000kd:.                                         .lO0K0Oxc'    .OMMMWN0o,oWMMMM
MMMMMMXOKMMMMMWO,,kWMMMMMMMWXx;.                                   .,dKWMMMMMMMXd. .oNMMMMMMMNNMMMMM
MMMMMMMMMMMMMMMMNNMMMMMMMMMMMMW0d:.                             .;o0NMMMMMMMMMMMWOcxNMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWXOdl;'..                .';cdOXWMMMMMMMMMMMMMMMMWMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWNX0OkxdoolllooodxO0KNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
*/

contract Meowl is ERC20, Ownable {
    using SafeMath for uint256;

    event SwapBackSuccess(
        uint256 tokenAmount,
        uint256 ethAmountReceived,
        bool success
    );

    bool private swapping;

    address public rewardSplitter;
    address public devWallet;
    address public lpWallet;

    uint256 _totalSupply = 15_000_000 * 1e18;

    uint256 public maxTransactionAmount = (_totalSupply * 10) / 1000;
    uint256 public swapTokensAtAmount = (_totalSupply * 10) / 10000;
    uint256 public maxWallet = (_totalSupply * 10) / 1000;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyFees = 50;
    uint256 public sellFees = 50;

    uint256 public revshareAmount = 40;
    uint256 public lpAmount = 20;
    uint256 public devAmount = 40;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;

    constructor() ERC20("Meowl", "MEOWL") {
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);

        _mint(owner(), 15_000_000 * 1e18);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    function removeLimits() external onlyOwner {
        buyFees = 5;
        sellFees = 5;
        limitsInEffect = false;
    }

    function reduceFees(uint buyFees_, uint sellFees_) external onlyOwner {
        require(
            buyFees_ <= buyFees && sellFees_ <= sellFees,
            "MEOWL/REDUCE_ONLY"
        );

        buyFees = buyFees_;
        sellFees = sellFees_;
    }

    function excludeFromMaxTransaction(
        address addressToExclude,
        bool isExcluded
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[addressToExclude] = isExcluded;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(pair != uniswapV2Pair, "MEOWL/CANT_REMOVE_UNIV2");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function createPair() external onlyOwner {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        _approve(address(this), address(uniswapV2Router), totalSupply());

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function updateFeeWallet(
        address rewardSplitter_,
        address devWallet_,
        address lpWallet_
    ) public onlyOwner {
        devWallet = devWallet_;
        rewardSplitter = rewardSplitter_;
        lpWallet = lpWallet_;

        excludeFromFees(rewardSplitter, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(lpWallet, true);

        excludeFromMaxTransaction(rewardSplitter, true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(lpWallet, true);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not enabled yet."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        if (
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(100);
            } else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(100);
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        if (contractBalance == 0) {
            return;
        }
        if (contractBalance >= swapTokensAtAmount) {
            uint256 amountToSwapForETH = swapTokensAtAmount;

            swapTokensForEth(amountToSwapForETH);

            uint256 ethBalance = address(this).balance;

            uint256 amountToRevshare = ethBalance.mul(revshareAmount).div(100);

            uint256 amountToLp = ethBalance.mul(lpAmount).div(100);

            uint256 amountToDev = ethBalance.sub(amountToRevshare + amountToLp);

            (success, ) = address(rewardSplitter).call{value: amountToRevshare}(
                ""
            );

            (success, ) = address(lpWallet).call{value: amountToLp}("");

            (success, ) = address(devWallet).call{value: amountToDev}("");

            emit SwapBackSuccess(amountToSwapForETH, ethBalance, success);
        }
    }
}

Settings
{
  "viaIR": true,
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmountReceived","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"SwapBackSuccess","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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToExclude","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"buyFees_","type":"uint256"},{"internalType":"uint256","name":"sellFees_","type":"uint256"}],"name":"reduceFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revshareAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardSplitter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardSplitter_","type":"address"},{"internalType":"address","name":"devWallet_","type":"address"},{"internalType":"address","name":"lpWallet_","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60406080815234620004cd5762000015620004d2565b60206413595bdddb60da1b818301526200002e620004d2565b64135153d5d360da1b82820152825192906001600160401b03808511620003cd5760038054956001948588811c98168015620004c2575b87891014620004ac578190601f9889811162000456575b508790898311600114620003ef57600092620003e3575b505060001982841b1c191690851b1781555b8251918211620003cd5760049283548581811c91168015620003c2575b87821014620003ad579081888594931162000355575b508690888411600114620002ea57600093620002de575b505082851b92600019911b1c19161781555b60058054336001600160a01b0319821681179092556001600160a01b03919082167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36a0c685fa11e01ec6f0000009283600955691fc3842bd1f071c0000080600a5569032d26d12e980b600000600b55600c558062ffffff19600d541617600d556032600e556032600f55602860105560146011556028601255620001a9620004f6565b3360005260158552866000209060ff19918183825416179055620001cc620004f6565b30600052601586528760002081838254161790558260055416620001ef620004f6565b600052601686528760002081838254161790556200020c620004f6565b30600052601686528760002091825416179055600554169384156200029c57506002549082820180921162000287575060025560008381528083528481208054830190558451918252917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a351611c679081620005508239f35b601190634e487b7160e01b6000525260246000fd5b855162461bcd60e51b815291820184905260248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260649150fd5b015191503880620000ef565b9190869450601f1984169286600052886000209360005b8a8282106200033e575050851162000323575b50505050811b01815562000101565b01519060f884600019921b161c191690553880808062000314565b8385015187558a9890960195938401930162000301565b9091925084600052866000208880860160051c820192898710620003a3575b91889187969594930160051c01915b82811062000393575050620000d8565b6000815586955088910162000383565b9250819262000374565b602285634e487b7160e01b6000525260246000fd5b90607f1690620000c2565b634e487b7160e01b600052604160045260246000fd5b01519050388062000093565b90879350601f1983169185600052896000209260005b8b8282106200043f575050841162000426575b505050811b018155620000a5565b015160001983861b60f8161c1916905538808062000418565b8385015186558b9790950194938401930162000405565b90915083600052876000208980850160051c8201928a8610620004a2575b918991869594930160051c01915b828110620004925750506200007c565b6000815585945089910162000482565b9250819262000474565b634e487b7160e01b600052602260045260246000fd5b97607f169762000065565b600080fd5b60408051919082016001600160401b03811183821017620003cd5760405260058252565b6005546001600160a01b031633036200050b57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fdfe6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c918263055f812614610fcf5750816306fdde0314610eda578163095ea7b314610eb057816310d5de5314610e725781631694505e14610e4957816318160ddd14610e2a57816323b872dd14610d605781632b34596414610d41578163313ce56714610d255781633950935114610cd557816349bd5a5e14610cac5781634a62bb6514610c885781634fbee19314610c4a5781636303516c14610c2157816365dc7ef414610c025781636ddd171314610bdb5781636ef91c7714610bbc57816370a0823114610b85578163715018a614610b28578163751039fc14610af85781637571336a14610ab85781638a8c523c14610a8b5781638da5cb5b14610a625781638ea5220f14610a3957816395d89b41146109365781639a7a23d6146108a25781639e78fb4f146106d2578163a08fc5c714610652578163a457c2d7146105aa578163a5396c791461047f578163a9059cbb1461044e578163b62496f514610410578163bbc0c742146103e9578163c0246668146103a6578163c8c8ebe414610387578163dd62ed3e1461033e578163e0f3ccf51461031f578163e2f4560514610300578163e4748b9e146102e1578163f2fde38b14610216575063f8b45b05146101f55780610012565b34610212578160031936011261021257602090600c549051908152f35b5080fd5b9050346102dd5760203660031901126102dd5761023161103d565b9061023a61109d565b6001600160a01b0391821692831561028b575050600554826001600160601b0360a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b505034610212578160031936011261021257602090600e549051908152f35b505034610212578160031936011261021257602090600b549051908152f35b505034610212578160031936011261021257602090600f549051908152f35b5050346102125780600319360112610212578060209261035c61103d565b610364611058565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b505034610212578160031936011261021257602090600a549051908152f35b505034610212576103e6906103ba3661106e565b91906103c461109d565b60018060a01b03168452601560205283209060ff801983541691151516179055565b80f35b50503461021257816003193601126102125760209060ff600d5460081c1690519015158152f35b5050346102125760203660031901126102125760209160ff9082906001600160a01b0361043b61103d565b1681526017855220541690519015158152f35b50503461021257806003193601126102125760209061047861046e61103d565b6024359033611372565b5160018152f35b5050346102125760603660031901126102125761049a61103d565b6104a2611058565b6001600160a01b039160443583811691908290036105a65783906104c461109d565b816001600160601b0360a01b941684600754161760075516918281600654161760065560085416176008556104f761109d565b83526020916015835260168185209360019360ff19958587825416179055806007541661052261109d565b8752601582528387208587825416179055806008541661054061109d565b8752601582528387208587825416179055806006541661055e61109d565b87528282528387208587825416179055806007541661057b61109d565b875282825283872085878254161790556008541661059761109d565b86525283209182541617905580f35b8580fd5b9050823461064f578260031936011261064f576105c561103d565b918360243592338152600160205281812060018060a01b03861682526020522054908282106105fe576020856104788585038733611150565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b9050346102dd57816003193601126102dd578035906024359261067361109d565b600e54831115806106c6575b1561068f575050600e55600f5580f35b906020606492519162461bcd60e51b835282015260116024820152704d454f574c2f5245445543455f4f4e4c5960781b6044820152fd5b50600f5484111561067f565b919050346102dd57826003193601126102dd576106ed61109d565b737a250d5630b4cf539739df2c5dacb4c659f2488d916001600160601b0360a01b928084601354161760135561072161109d565b8452602090601682528285209360ff199460018682541617905560018060a01b039161075583601354166002549030611150565b601354855163c45a015560e01b8152908416918886838381875afa9283156108775787908294610883575b5088516315ab88c960e31b815293948490849082905afa928315610877579181878096948a96610857575b50604493948b5197889687956364e329cb60e11b87523090870152166024850152165af190811561084d5791836017949260019796948a91610820575b5016809160145416176014556107fc61109d565b87526016825283872085878254161790556014541686525283209182541617905580f35b6108409150853d8711610846575b61083881836110f5565b810190611252565b386107e8565b503d61082e565b85513d89823e3d90fd5b6044945061087190873d89116108465761083881836110f5565b936107ab565b508751903d90823e3d90fd5b83945061089c90823d84116108465761083881836110f5565b93610780565b83915034610212576108b33661106e565b916108bc61109d565b6014546001600160a01b03928316921682146108f357509282936103e69352601760205283209060ff801983541691151516179055565b606490602086519162461bcd60e51b8352820152601760248201527f4d454f574c2f43414e545f52454d4f56455f554e4956320000000000000000006044820152fd5b838334610212578160031936011261021257805191809380549160019083821c92828516948515610a2f575b6020958686108114610a1c578589529081156109f857506001146109a0575b61099c8787610992828c03836110f5565b5191829182610ff4565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8284106109e5575050508261099c9461099292820101948680610981565b80548685018801529286019281016109c7565b60ff19168887015250505050151560051b83010192506109928261099c8680610981565b634e487b7160e01b845260228352602484fd5b93607f1693610962565b50503461021257816003193601126102125760075490516001600160a01b039091168152602090f35b50503461021257816003193601126102125760055490516001600160a01b039091168152602090f35b833461064f578060031936011261064f57610aa461109d565b6201010062ffff0019600d541617600d5580f35b505034610212576103e690610acc3661106e565b9190610ad661109d565b60018060a01b03168452601660205283209060ff801983541691151516179055565b833461064f578060031936011261064f57610b1161109d565b6005600e556005600f5560ff19600d5416600d5580f35b833461064f578060031936011261064f57610b4161109d565b600580546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102125760203660031901126102125760209181906001600160a01b03610bad61103d565b16815280845220549051908152f35b5050346102125781600319360112610212576020906010549051908152f35b50503461021257816003193601126102125760209060ff600d5460101c1690519015158152f35b5050346102125781600319360112610212576020906011549051908152f35b50503461021257816003193601126102125760085490516001600160a01b039091168152602090f35b5050346102125760203660031901126102125760209160ff9082906001600160a01b03610c7561103d565b1681526015855220541690519015158152f35b50503461021257816003193601126102125760209060ff600d541690519015158152f35b50503461021257816003193601126102125760145490516001600160a01b039091168152602090f35b505034610212578060031936011261021257610478602092610d1e610cf861103d565b338352600186528483206001600160a01b0382168452865291849020546024359061112d565b9033611150565b5050346102125781600319360112610212576020905160128152f35b5050346102125781600319360112610212576020906012549051908152f35b8391503461021257606036600319011261021257610d7c61103d565b610d84611058565b91846044359460018060a01b038416815260016020528181203382526020522054906000198203610dbe575b602086610478878787611372565b848210610de75750918391610ddc6020969561047895033383611150565b919394819350610db0565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346102125781600319360112610212576020906002549051908152f35b50503461021257816003193601126102125760135490516001600160a01b039091168152602090f35b5050346102125760203660031901126102125760209160ff9082906001600160a01b03610e9d61103d565b1681526016855220541690519015158152f35b505034610212578060031936011261021257602090610478610ed061103d565b6024359033611150565b919050346102dd57826003193601126102dd57805191836003549060019082821c928281168015610fc5575b6020958686108214610fb25750848852908115610f905750600114610f37575b61099c8686610992828b03836110f5565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610f7d575050508261099c94610992928201019438610f26565b8054868501880152928601928101610f60565b60ff191687860152505050151560051b83010192506109928261099c38610f26565b634e487b7160e01b845260229052602483fd5b93607f1693610f06565b8490346102125781600319360112610212576006546001600160a01b03168152602090f35b6020808252825181830181905290939260005b82811061102957505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501611007565b600435906001600160a01b038216820361105357565b600080fd5b602435906001600160a01b038216820361105357565b6040906003190112611053576004356001600160a01b0381168103611053579060243580151581036110535790565b6005546001600160a01b031633036110b157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90601f8019910116810190811067ffffffffffffffff82111761111757604052565b634e487b7160e01b600052604160045260246000fd5b9190820180921161113a57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0390811691821561120157169182156111b15760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9081602091031261105357516001600160a01b03811681036110535790565b1561127857565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b156112d257565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b1561132a57565b60405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606490fd5b9190820391821161113a57565b9291906001600160a01b038085169061138c821515611271565b808316908115159061139d826112cb565b851561180857600d5460ff9283809381841661157e575b50505060101c168061156f575b80611557575b8061153f575b80611527575b6114fd575b8060055460a01c16159260009281845260156020528260408520541680156114ed575b6114e4575b8394611418575b5050505050611416929361185f565b565b8398969852601760205281604084205416806114d9575b1561148f575050600f5486810292508683040361147b57506114169394606461145f9204905b8161146b57611365565b91939238808080611407565b61147682308761185f565b611365565b634e487b7160e01b81526011600452602490fd5b8252604082205416806114ce575b6114b1575b5061145f906114169495611455565b600e5486810292508683040361147b5750606490046114166114a2565b50600e54151561149d565b50600f54151561142f565b93508293611400565b50808452826040852054166113fb565b6005805460ff60a01b19908116600160a01b1790915561151b611973565b600554166005556113d8565b508160005260156020528060406000205416156113d3565b508260005260156020528060406000205416156113cd565b508260005260176020528060406000205416156113c7565b508060055460a01c16156113c1565b600554908116928389141593846117fd575b50836117f5575b50826117e8575b826117da575b50506115b3575b3882816113b4565b908160081c1615611767575b6000848152602090601782526040918480848420541680611751575b156116725750600a548911611611578493928280611602938961160c96525220548961112d565b600c541015611323565b6115ab565b60849083519062461bcd60e51b82526004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152fd5b909291868152601784528183822054168061173d575b15611703575050600a5488116116a157505081906115ab565b60849250519062461bcd60e51b82526004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152fd5b91868395949295526016825284818420541615611723575b5050506115ab565b8261173593611602935220548961112d565b38808061171b565b508781526016845281838220541615611688565b50508582526016815284808484205416156115db565b836000526015602052816040600020541680156117c8575b6115bf5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420656e61626c6564207965742e00000000006044820152606490fd5b5082600052816040600020541661177f565b60a01c1615905082386115a4565b61dead871415925061159e565b925038611597565b881415935038611590565b60405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608490fd5b6001600160a01b0390811691611876831515611271565b16916118838315156112cb565b6000828152806020526040812054918083106118df57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b3d1561196e573d9067ffffffffffffffff82116111175760405191611962601f8201601f1916602001846110f5565b82523d6000602084013e565b606090565b600030815260208181526040908183205492831561199757600b548094101561199d575b50505050565b825167ffffffffffffffff916060820183811183821017611c1d578552600282528382019185368437805115611c095730835260135486516315ab88c960e31b81526001600160a01b03956004959092871688838881845afa928315611bff578693611be0575b50845192600193841015611bcd57611a2491898d92168c88015230611150565b866013541691823b156105a657895163791ac94760e01b81528781018c90526024810187905260a06044820152945160a4860181905286938693909260c4850192865b8d828210611bb25750505050508383809230606483015242608483015203925af18015611ba857611b86575b505090479260105480850285159186820414821715611b735760649004926011549182870292878404141715611b605750928080848194828080807fe9f689eb4d290dd3a40869ea626055ee4a55d40f20286208d04ef55f39254cff9f9d9b9a60609f9d9b8280808f611b1590611b0f6064849704809861112d565b90611365565b9a8a600654165af150611b26611933565b5085600854165af150611b37611933565b50600754165af191611b47611933565b508351948552840152151590820152a138808080611997565b634e487b7160e01b855260119052602484fd5b634e487b7160e01b855260118452602485fd5b8111611b955785523880611a93565b506041602492634e487b7160e01b835252fd5b87513d85823e3d90fd5b84518e1686528b98508a975094850194909301928201611a67565b634e487b7160e01b875260328852602487fd5b611bf8919350893d8b116108465761083881836110f5565b9138611a04565b8a513d88823e3d90fd5b634e487b7160e01b82526032600452602482fd5b634e487b7160e01b82526041600452602482fdfea264697066735822122009d438535d25b720a14fb635ce3d2fbb11d329e2670b9874b984a89ca0449a6464736f6c63430008130033

Deployed Bytecode

0x6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c918263055f812614610fcf5750816306fdde0314610eda578163095ea7b314610eb057816310d5de5314610e725781631694505e14610e4957816318160ddd14610e2a57816323b872dd14610d605781632b34596414610d41578163313ce56714610d255781633950935114610cd557816349bd5a5e14610cac5781634a62bb6514610c885781634fbee19314610c4a5781636303516c14610c2157816365dc7ef414610c025781636ddd171314610bdb5781636ef91c7714610bbc57816370a0823114610b85578163715018a614610b28578163751039fc14610af85781637571336a14610ab85781638a8c523c14610a8b5781638da5cb5b14610a625781638ea5220f14610a3957816395d89b41146109365781639a7a23d6146108a25781639e78fb4f146106d2578163a08fc5c714610652578163a457c2d7146105aa578163a5396c791461047f578163a9059cbb1461044e578163b62496f514610410578163bbc0c742146103e9578163c0246668146103a6578163c8c8ebe414610387578163dd62ed3e1461033e578163e0f3ccf51461031f578163e2f4560514610300578163e4748b9e146102e1578163f2fde38b14610216575063f8b45b05146101f55780610012565b34610212578160031936011261021257602090600c549051908152f35b5080fd5b9050346102dd5760203660031901126102dd5761023161103d565b9061023a61109d565b6001600160a01b0391821692831561028b575050600554826001600160601b0360a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b505034610212578160031936011261021257602090600e549051908152f35b505034610212578160031936011261021257602090600b549051908152f35b505034610212578160031936011261021257602090600f549051908152f35b5050346102125780600319360112610212578060209261035c61103d565b610364611058565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b505034610212578160031936011261021257602090600a549051908152f35b505034610212576103e6906103ba3661106e565b91906103c461109d565b60018060a01b03168452601560205283209060ff801983541691151516179055565b80f35b50503461021257816003193601126102125760209060ff600d5460081c1690519015158152f35b5050346102125760203660031901126102125760209160ff9082906001600160a01b0361043b61103d565b1681526017855220541690519015158152f35b50503461021257806003193601126102125760209061047861046e61103d565b6024359033611372565b5160018152f35b5050346102125760603660031901126102125761049a61103d565b6104a2611058565b6001600160a01b039160443583811691908290036105a65783906104c461109d565b816001600160601b0360a01b941684600754161760075516918281600654161760065560085416176008556104f761109d565b83526020916015835260168185209360019360ff19958587825416179055806007541661052261109d565b8752601582528387208587825416179055806008541661054061109d565b8752601582528387208587825416179055806006541661055e61109d565b87528282528387208587825416179055806007541661057b61109d565b875282825283872085878254161790556008541661059761109d565b86525283209182541617905580f35b8580fd5b9050823461064f578260031936011261064f576105c561103d565b918360243592338152600160205281812060018060a01b03861682526020522054908282106105fe576020856104788585038733611150565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b9050346102dd57816003193601126102dd578035906024359261067361109d565b600e54831115806106c6575b1561068f575050600e55600f5580f35b906020606492519162461bcd60e51b835282015260116024820152704d454f574c2f5245445543455f4f4e4c5960781b6044820152fd5b50600f5484111561067f565b919050346102dd57826003193601126102dd576106ed61109d565b737a250d5630b4cf539739df2c5dacb4c659f2488d916001600160601b0360a01b928084601354161760135561072161109d565b8452602090601682528285209360ff199460018682541617905560018060a01b039161075583601354166002549030611150565b601354855163c45a015560e01b8152908416918886838381875afa9283156108775787908294610883575b5088516315ab88c960e31b815293948490849082905afa928315610877579181878096948a96610857575b50604493948b5197889687956364e329cb60e11b87523090870152166024850152165af190811561084d5791836017949260019796948a91610820575b5016809160145416176014556107fc61109d565b87526016825283872085878254161790556014541686525283209182541617905580f35b6108409150853d8711610846575b61083881836110f5565b810190611252565b386107e8565b503d61082e565b85513d89823e3d90fd5b6044945061087190873d89116108465761083881836110f5565b936107ab565b508751903d90823e3d90fd5b83945061089c90823d84116108465761083881836110f5565b93610780565b83915034610212576108b33661106e565b916108bc61109d565b6014546001600160a01b03928316921682146108f357509282936103e69352601760205283209060ff801983541691151516179055565b606490602086519162461bcd60e51b8352820152601760248201527f4d454f574c2f43414e545f52454d4f56455f554e4956320000000000000000006044820152fd5b838334610212578160031936011261021257805191809380549160019083821c92828516948515610a2f575b6020958686108114610a1c578589529081156109f857506001146109a0575b61099c8787610992828c03836110f5565b5191829182610ff4565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8284106109e5575050508261099c9461099292820101948680610981565b80548685018801529286019281016109c7565b60ff19168887015250505050151560051b83010192506109928261099c8680610981565b634e487b7160e01b845260228352602484fd5b93607f1693610962565b50503461021257816003193601126102125760075490516001600160a01b039091168152602090f35b50503461021257816003193601126102125760055490516001600160a01b039091168152602090f35b833461064f578060031936011261064f57610aa461109d565b6201010062ffff0019600d541617600d5580f35b505034610212576103e690610acc3661106e565b9190610ad661109d565b60018060a01b03168452601660205283209060ff801983541691151516179055565b833461064f578060031936011261064f57610b1161109d565b6005600e556005600f5560ff19600d5416600d5580f35b833461064f578060031936011261064f57610b4161109d565b600580546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102125760203660031901126102125760209181906001600160a01b03610bad61103d565b16815280845220549051908152f35b5050346102125781600319360112610212576020906010549051908152f35b50503461021257816003193601126102125760209060ff600d5460101c1690519015158152f35b5050346102125781600319360112610212576020906011549051908152f35b50503461021257816003193601126102125760085490516001600160a01b039091168152602090f35b5050346102125760203660031901126102125760209160ff9082906001600160a01b03610c7561103d565b1681526015855220541690519015158152f35b50503461021257816003193601126102125760209060ff600d541690519015158152f35b50503461021257816003193601126102125760145490516001600160a01b039091168152602090f35b505034610212578060031936011261021257610478602092610d1e610cf861103d565b338352600186528483206001600160a01b0382168452865291849020546024359061112d565b9033611150565b5050346102125781600319360112610212576020905160128152f35b5050346102125781600319360112610212576020906012549051908152f35b8391503461021257606036600319011261021257610d7c61103d565b610d84611058565b91846044359460018060a01b038416815260016020528181203382526020522054906000198203610dbe575b602086610478878787611372565b848210610de75750918391610ddc6020969561047895033383611150565b919394819350610db0565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346102125781600319360112610212576020906002549051908152f35b50503461021257816003193601126102125760135490516001600160a01b039091168152602090f35b5050346102125760203660031901126102125760209160ff9082906001600160a01b03610e9d61103d565b1681526016855220541690519015158152f35b505034610212578060031936011261021257602090610478610ed061103d565b6024359033611150565b919050346102dd57826003193601126102dd57805191836003549060019082821c928281168015610fc5575b6020958686108214610fb25750848852908115610f905750600114610f37575b61099c8686610992828b03836110f5565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610f7d575050508261099c94610992928201019438610f26565b8054868501880152928601928101610f60565b60ff191687860152505050151560051b83010192506109928261099c38610f26565b634e487b7160e01b845260229052602483fd5b93607f1693610f06565b8490346102125781600319360112610212576006546001600160a01b03168152602090f35b6020808252825181830181905290939260005b82811061102957505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501611007565b600435906001600160a01b038216820361105357565b600080fd5b602435906001600160a01b038216820361105357565b6040906003190112611053576004356001600160a01b0381168103611053579060243580151581036110535790565b6005546001600160a01b031633036110b157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90601f8019910116810190811067ffffffffffffffff82111761111757604052565b634e487b7160e01b600052604160045260246000fd5b9190820180921161113a57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0390811691821561120157169182156111b15760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9081602091031261105357516001600160a01b03811681036110535790565b1561127857565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b156112d257565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b1561132a57565b60405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606490fd5b9190820391821161113a57565b9291906001600160a01b038085169061138c821515611271565b808316908115159061139d826112cb565b851561180857600d5460ff9283809381841661157e575b50505060101c168061156f575b80611557575b8061153f575b80611527575b6114fd575b8060055460a01c16159260009281845260156020528260408520541680156114ed575b6114e4575b8394611418575b5050505050611416929361185f565b565b8398969852601760205281604084205416806114d9575b1561148f575050600f5486810292508683040361147b57506114169394606461145f9204905b8161146b57611365565b91939238808080611407565b61147682308761185f565b611365565b634e487b7160e01b81526011600452602490fd5b8252604082205416806114ce575b6114b1575b5061145f906114169495611455565b600e5486810292508683040361147b5750606490046114166114a2565b50600e54151561149d565b50600f54151561142f565b93508293611400565b50808452826040852054166113fb565b6005805460ff60a01b19908116600160a01b1790915561151b611973565b600554166005556113d8565b508160005260156020528060406000205416156113d3565b508260005260156020528060406000205416156113cd565b508260005260176020528060406000205416156113c7565b508060055460a01c16156113c1565b600554908116928389141593846117fd575b50836117f5575b50826117e8575b826117da575b50506115b3575b3882816113b4565b908160081c1615611767575b6000848152602090601782526040918480848420541680611751575b156116725750600a548911611611578493928280611602938961160c96525220548961112d565b600c541015611323565b6115ab565b60849083519062461bcd60e51b82526004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152fd5b909291868152601784528183822054168061173d575b15611703575050600a5488116116a157505081906115ab565b60849250519062461bcd60e51b82526004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152fd5b91868395949295526016825284818420541615611723575b5050506115ab565b8261173593611602935220548961112d565b38808061171b565b508781526016845281838220541615611688565b50508582526016815284808484205416156115db565b836000526015602052816040600020541680156117c8575b6115bf5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420656e61626c6564207965742e00000000006044820152606490fd5b5082600052816040600020541661177f565b60a01c1615905082386115a4565b61dead871415925061159e565b925038611597565b881415935038611590565b60405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608490fd5b6001600160a01b0390811691611876831515611271565b16916118838315156112cb565b6000828152806020526040812054918083106118df57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b3d1561196e573d9067ffffffffffffffff82116111175760405191611962601f8201601f1916602001846110f5565b82523d6000602084013e565b606090565b600030815260208181526040908183205492831561199757600b548094101561199d575b50505050565b825167ffffffffffffffff916060820183811183821017611c1d578552600282528382019185368437805115611c095730835260135486516315ab88c960e31b81526001600160a01b03956004959092871688838881845afa928315611bff578693611be0575b50845192600193841015611bcd57611a2491898d92168c88015230611150565b866013541691823b156105a657895163791ac94760e01b81528781018c90526024810187905260a06044820152945160a4860181905286938693909260c4850192865b8d828210611bb25750505050508383809230606483015242608483015203925af18015611ba857611b86575b505090479260105480850285159186820414821715611b735760649004926011549182870292878404141715611b605750928080848194828080807fe9f689eb4d290dd3a40869ea626055ee4a55d40f20286208d04ef55f39254cff9f9d9b9a60609f9d9b8280808f611b1590611b0f6064849704809861112d565b90611365565b9a8a600654165af150611b26611933565b5085600854165af150611b37611933565b50600754165af191611b47611933565b508351948552840152151590820152a138808080611997565b634e487b7160e01b855260119052602484fd5b634e487b7160e01b855260118452602485fd5b8111611b955785523880611a93565b506041602492634e487b7160e01b835252fd5b87513d85823e3d90fd5b84518e1686528b98508a975094850194909301928201611a67565b634e487b7160e01b875260328852602487fd5b611bf8919350893d8b116108465761083881836110f5565b9138611a04565b8a513d88823e3d90fd5b634e487b7160e01b82526032600452602482fd5b634e487b7160e01b82526041600452602482fdfea264697066735822122009d438535d25b720a14fb635ce3d2fbb11d329e2670b9874b984a89ca0449a6464736f6c63430008130033

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.