ETH Price: $3,042.05 (-8.69%)
 

Overview

Max Total Supply

100,000,000 AVER

Holders

727 ( -0.138%)

Market

Price

$0.02 @ 0.000005 ETH (-5.80%)

Onchain Market Cap

$1,507,090.00

Circulating Supply Market Cap

$1,355,118.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
33,986.674842528415550816 AVER

Value
$512.21 ( ~0.16837685856106 Eth) [0.0340%]
0x7afa9d836d2fccf172b66622625e56404e465dbd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Aver is a DeFAI platform empowering anyone to create, train, and deploy on-chain AI agents with ease. By combining no-code simplicity with blockchain transparency, Aver enables automation across DeFi, NFTs, and on-chain workflows—unlocking limitless possibilities in the decentralized economy.

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0XD347514C12D6ACBBEC08CEEA127BC5E57DDB2847-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0151
0.0000049 Eth
$67,667.00
4,675,928.143 0XD347514C12D6ACBBEC08CEEA127BC5E57DDB2847
∞%

Contract Source Code Verified (Exact Match)

Contract Name:
AVER

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;

/**
 * @dev IUniswapV2Factory Interface: Interface for interacting with the Uniswap V2 Factory contract.
 *
 * The Uniswap V2 Factory contract is responsible for creating and managing liquidity pairs.
 * It allows for the creation of new pairs and querying existing pairs for given token addresses.
 */
interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

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

/*
 * @dev IUniswapV2Router Interface: This interface defines key functions for interacting with the Uniswap V2 Router contract.
 * The Uniswap V2 Router is a critical component for executing token swaps and liquidity operations in the Uniswap V2 ecosystem.
 *
 * Functions:
 * - `factory()`: Returns the address of the Uniswap V2 Factory contract.
 * - `WETH()`: Returns the address of the Wrapped Ether (WETH) token used in the protocol.
 * - `swapExactTokensForETHSupportingFeeOnTransferTokens`: Executes a token-to-ETH swap, ensuring compatibility with tokens that have transfer fees.
 *
 * Note:
 * - The `swapExactTokensForETHSupportingFeeOnTransferTokens` function is designed to support tokens with fees on transfers,
 *   making it versatile for use cases involving such tokens.
 * - This is an external interface, and these functions must be implemented in a concrete contract that interacts with Uniswap.
 */
interface IUniswapV2Router {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

/**
 * @dev Context: Abstract contract that provides information about the current execution context.
 * This includes the sender of the transaction and its data.
 * While these are generally available via msg.sender and msg.data,
 * this contract provides an abstraction layer that can be useful, especially
 * when dealing with meta-transactions, where the actual sender (or originator)
 * may differ from the address that directly sends the transaction.
 *
 * The `_msgSender` function is marked as `virtual` to allow for overriding
 * in derived contracts if needed.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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:
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value
    ) external returns (bool);
}

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

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

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

/**
 * @dev Standard ERC20 Errors
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 value
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(
                    spender,
                    currentAllowance,
                    value
                );
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

/*
 * @title AVER Token Contract
 * @dev This is a custom ERC20 token contract with additional functionality for marketing tax, wallet limits, and swap functionality.
 *
 * The contract includes the following key features:
 * - Marketing tax: Defines buy and sell marketing taxes for transactions involving Uniswap.
 * - Wallet limits: Implements a maximum wallet limit to prevent a single address from holding too much of the total supply.
 * - Tax exclusions: Allows the exclusion of specific addresses from paying marketing taxes or being subject to the wallet limit.
 * - Uniswap integration: Facilitates token swaps on Uniswap, with a router and pair addresses set up for liquidity management.
 *
 */
contract AVER is ERC20, Ownable {
    address public marketingWallet;
    uint8 public buyMarketingTax = 30;
    uint8 public sellMarketingTax = 30;
    uint256 private immutable _totalSupply = 100_000_000 * 10 ** decimals();
    uint256 public swapTokensThreshold = (1 * _totalSupply) / 1000;
    uint256 public maxWalletLimit = (5 * _totalSupply) / 100;

    mapping(address => bool) public isExcludedFromTax;
    mapping(address => bool) public isExcludedFromMaxWalletLimit;

    IUniswapV2Router public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool private _inSwapAndLiquify;

    event TaxExclusionUpdated(address indexed account, bool indexed status);
    event MaxWalletLimitExclusionUpdated(address indexed account, bool indexed status);
    event MarketingWalletChanged(address indexed oldWallet, address indexed newWallet);
    event MaxWalletLimitChanged(uint256 oldLimit, uint256 newLimit);
    event MarketingTaxChanged(uint8 oldBuyTax, uint8 buyMarketingTax, uint8 oldSellTax, uint8 sellMarketingTax);
    event SwapTokensThresholdChanged(uint256 oldThreshold, uint256 newThreshold);
    event AuditLog(string text, address indexed account);
    event Log(string text, uint256 value);

    modifier lockTheSwap() {
        _inSwapAndLiquify = true;
        _;
        _inSwapAndLiquify = false;
    }

    /**
     * @dev Constructor for the AVER contract.
     *      Initializes the contract with the deployer's wallet, marketing wallet, and Uniswap V2 router.
     *      Mints the total supply to the deployer's wallet and sets up exclusions for certain addresses
     *      from tax and max wallet limit checks. It also creates the Uniswap V2 pair for liquidity and
     *      sets the exclusions for the pair.
     *
     * @param _deployerWallet Address of the deployer wallet to receive the total supply of the token.
     * @param _marketingWallet Address for the marketing wallet, which is excluded from tax and max wallet limit.
     * @param _uniswapV2Router Address of the Uniswap V2 router used to create the liquidity pair.
     */
    constructor(address _deployerWallet, address _marketingWallet, address _uniswapV2Router) ERC20("Aver AI", "AVER") Ownable(_deployerWallet) {
        isExcludedFromTax[_deployerWallet] = true;
        isExcludedFromMaxWalletLimit[_deployerWallet] = true;

        marketingWallet = _marketingWallet;
        isExcludedFromTax[marketingWallet] = true;
        isExcludedFromMaxWalletLimit[marketingWallet] = true;

        isExcludedFromMaxWalletLimit[address(this)] = true;
        _mint(_deployerWallet, _totalSupply);

        uniswapV2Router = IUniswapV2Router(_uniswapV2Router);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        isExcludedFromMaxWalletLimit[uniswapV2Pair] = true;
    }

    /**
     * @dev Internal function to update token transfers, apply marketing tax, and check wallet limits.
     *      This function is called on every transfer of tokens. If the transfer is to or from the Uniswap
     *      pair, the tax is applied based on whether it's a buy or a sell. It also ensures the transfer
     *      does not exceed the maximum wallet limit unless the recipient is excluded from the limit.
     *
     * @param from Address sending the tokens.
     * @param to Address receiving the tokens.
     * @param value Amount of tokens to be transferred.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !(isExcludedFromTax[from] || isExcludedFromTax[to]) && !_inSwapAndLiquify) {
            uint256 taxValue = (from == uniswapV2Pair) ? ((value * buyMarketingTax) / 100) : ((value * sellMarketingTax) / 100);
            value -= taxValue;

            if (to == uniswapV2Pair) {// sell
                _transferETH();
            }

            super._update(from, address(this), taxValue);
        }
        require((isExcludedFromMaxWalletLimit[to] || (value + balanceOf(to)) <= maxWalletLimit), "ERC20: maxWalletLimit exceeded");
        super._update(from, to, value);
    }

    /**
     * @dev Private function to handle ETH transfer to the marketing wallet.
     */
    function _transferETH() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= swapTokensThreshold) {
            _swapTokensForETH(contractBalance);
            payable(marketingWallet).transfer(address(this).balance);
        }
    }

    /**
     * @dev Private function to handle tax accumulated tokens conversion to ETH.
     */
    function _swapTokensForETH(uint256 tokenAmount) private lockTheSwap {
        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 + 300)
        );
    }

    /**
     * @dev Sets the address of the new marketing wallet.
     * @param newWallet The address of the new marketing wallet.
     * Requirements:
     * `newWallet` cannot be the zero address.
     * Emits a {MarketingWalletChanged} event.
     */
    function changeMarketingWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "ERC20: new wallet is zero address");
        address oldWallet = marketingWallet;
        marketingWallet = newWallet;

        emit MarketingWalletChanged(oldWallet, newWallet);
    }

    /**
     * @dev Excludes or includes an account from taxation.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for tax exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromTax(address account, bool status) external onlyOwner {
        isExcludedFromTax[account] = status;

        emit TaxExclusionUpdated(account, status);
    }

    /**
     * @dev Excludes or includes an account from the maximum wallet limit.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for maximum wallet limit exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromMaxWalletLimit(
        address account,
        bool status
    ) external onlyOwner {
        isExcludedFromMaxWalletLimit[account] = status;

        emit MaxWalletLimitExclusionUpdated(account, status);
    }

    /**
     * @dev Allows the contract owner to update the buy and sell marketing tax percentages.
     * This function is restricted to the contract owner.
     *
     * Functionality:
     * - Accepts new marketing tax percentages for both buy and sell transactions.
     * - Stores the current tax values in temporary variables before making updates.
     * - Updates the buy and sell marketing tax percentages to the new values provided.
     * - Emits the `MarketingTaxChanged` event to log both the old and new tax values for transparency.
     *
     * Requirements:
     * - The caller must be the contract owner (enforced by the `onlyOwner` modifier).
     * - The new tax values must not exceed 30% (validated within the function).
     *
     * Emits a {MarketingTaxChanged} event.
     * 
     * @param _buyMarketingTax The new buy marketing tax percentage.
     * @param _sellMarketingTax The new sell marketing tax percentage.
     */
    function changeBuySellMarketingTax(
        uint8 _buyMarketingTax,
        uint8 _sellMarketingTax
    ) external onlyOwner {
        require(_buyMarketingTax <= 30 && _sellMarketingTax <= 30 , "ERC20: tax could not be greater than 30%");
        uint8 oldBuyTax = buyMarketingTax;
        uint8 oldSellTax = sellMarketingTax;

        buyMarketingTax = _buyMarketingTax;
        sellMarketingTax = _sellMarketingTax;

        emit MarketingTaxChanged(
            oldBuyTax,
            buyMarketingTax,
            oldSellTax,
            sellMarketingTax
        );
    }

    /**
     * @dev Allows the owner to recover ETH from the contract and send it to the marketing wallet.
     * This function:
     * - Gets the current ETH balance of the contract.
     * - Transfers the entire balance to the marketing wallet.
     * - Ensures that the transfer is successful by checking the result.
     * - Emits an event for auditing the recovery process.
     *
     * Requirements:
     * - Only the contract owner can call this function (enforced by the `onlyOwner` modifier).
     *
     * Emits an `AuditLog` event to notify external listeners about the ETH recovery.
     */
    function recoverETHfromContract() external onlyOwner {
        uint ethBalance = address(this).balance;
        (bool succ, ) = payable(marketingWallet).call{value: ethBalance}("");
        require(succ, "Transfer failed");
        
        emit AuditLog("We have recover the stock eth from contract.", marketingWallet);
    }

    /**
     * @dev Allows the owner to recover ERC-20 tokens from the contract and send them to the marketing wallet.
     * This function:
     * - Ensures the owner cannot claim the contract's balance of its own tokens.
     * - Transfers the specified amount of tokens to the marketing wallet.
     * - Ensures that the transfer is successful by checking the result.
     * - Emits an event for auditing the recovery process.
     *
     * Requirements:
     * - Only the contract owner can call this function (enforced by the `onlyOwner` modifier).
     *
     * Emits a `Log` event to notify external listeners about the token recovery.
     *
     * @param _tokenAddress The address of the token to be recovered.
     * @param _amount The amount of tokens to be transferred to the marketing wallet.
     */
    function recoverTokensFromContract(address _tokenAddress, uint256 _amount) external onlyOwner {
        require(_tokenAddress != address(this), "Owner can't claim contract's balance of its own tokens");
        bool succ = IERC20(_tokenAddress).transfer(marketingWallet, _amount);
        require(succ, "Transfer failed");

        emit Log("We have recovered tokens from contract:", _amount);
    }

    /**
     * @dev Changes the maximum wallet holding limit.
     * 
     * This function allows the contract owner to modify the `maxWalletLimit`, which is the maximum 
     * number of tokens a wallet can hold. The new limit must be greater than zero. Upon a successful 
     * change, an event `MaxWalletLimitChanged` is emitted, logging the old and new limits for transparency. 
     * 
     * Requirements:
     * - The caller must be the contract owner.
     * - The new limit must be greater than zero.
     *
     * Emits the `MaxWalletLimitChanged` event with the old and new values.
     *
     * @param newLimit The new maximum wallet holding limit (in tokens).
     */
    function changeMaxWalletLimit(uint256 newLimit) external onlyOwner {
        require(newLimit > 0, "Limit must be greater than 0");
        uint256 oldLimit = maxWalletLimit;
        maxWalletLimit = newLimit;

        emit MaxWalletLimitChanged(oldLimit, newLimit);
    }

    /**
     * @dev Changes the token swap threshold for the contract.
     * 
     * This function allows the contract owner to modify the `swapTokensThreshold`, which represents the 
     * minimum amount of tokens required to trigger the token swap (e.g., for liquidity or other purposes).
     * The new threshold must be greater than zero. Once changed, the contract can perform token swaps 
     * when the threshold is met. The change is logged by emitting the `SwapTokensThresholdChanged` event.
     *  
     * Requirements:
     * - The caller must be the contract owner.
     * - The new threshold must be greater than zero.
     *
     * Emits the `SwapTokensThresholdChanged` event with the old and new threshold values.
     *
     * @param newThreshold The new token swap threshold (in tokens).
     */
    function changeSwapTokensThreshold(uint256 newThreshold) external onlyOwner {
        require(newThreshold > 0, "Threshold must be greater than 0");
        uint256 oldThreshold = swapTokensThreshold;
        swapTokensThreshold = newThreshold;

        emit SwapTokensThresholdChanged(oldThreshold, newThreshold);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_deployerWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"string","name":"text","type":"string"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AuditLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"text","type":"string"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"oldBuyTax","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"buyMarketingTax","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"oldSellTax","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"sellMarketingTax","type":"uint8"}],"name":"MarketingTaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"MarketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"MaxWalletLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"MaxWalletLimitExclusionUpdated","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":"oldThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"SwapTokensThresholdChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"TaxExclusionUpdated","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":"value","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":"buyMarketingTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buyMarketingTax","type":"uint8"},{"internalType":"uint8","name":"_sellMarketingTax","type":"uint8"}],"name":"changeBuySellMarketingTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"changeSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":[],"name":"recoverETHfromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverTokensFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensThreshold","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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 IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040526006805461ffff60a01b1916610f0f60a11b179055610021601290565b61002c90600a610a80565b61003a906305f5e100610a95565b60808190526103e89061004e906001610a95565b6100589190610aac565b6007556064608051600561006c9190610a95565b6100769190610aac565b600855348015610084575f5ffd5b506040516126473803806126478339810160408190526100a391610ae6565b82604051806040016040528060078152602001664176657220414960c81b8152506040518060400160405280600481526020016320ab22a960e11b81525081600390816100f09190610bbd565b5060046100fd8282610bbd565b5050506001600160a01b03811661012e57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61013781610344565b506001600160a01b038381165f9081526009602081815260408084208054600160ff199182168117909255600a8085528387208054831684179055600680546001600160a01b0319168b8a169081178255885295855283872080548316841790559454909616855292909152808320805485168317905530835290912080549092161790556080516101ca908490610395565b6001600160a01b03811660a08190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610212573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102369190610c77565b6001600160a01b031663c9c653963060a0516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610283573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102a79190610c77565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102f1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103159190610c77565b6001600160a01b031660c08190525f908152600a60205260409020805460ff1916600117905550610d3a915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166103be5760405163ec442f0560e01b81525f6004820152602401610125565b6103c95f83836103cd565b5050565b60c0516001600160a01b0316836001600160a01b03161480610402575060c0516001600160a01b0316826001600160a01b0316145b801561044857506001600160a01b0383165f9081526009602052604090205460ff168061044657506001600160a01b0382165f9081526009602052604090205460ff165b155b80156104575750600b5460ff16155b15610503575f60c0516001600160a01b0316846001600160a01b0316146104a15760065460649061049290600160a81b900460ff1684610a95565b61049c9190610aac565b6104c5565b6006546064906104bb90600160a01b900460ff1684610a95565b6104c59190610aac565b90506104d18183610c90565b915060c0516001600160a01b0316836001600160a01b0316036104f6576104f66105a8565b610501843083610602565b505b6001600160a01b0382165f908152600a602052604090205460ff168061054c57506008546001600160a01b0383165f908152602081905260409020546105499083610ca3565b11155b6105985760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d697420657863656564656400006044820152606401610125565b6105a3838383610602565b505050565b305f9081526020819052604090205460075481106105ff576105c981610728565b6006546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156103c9573d5f5f3e3d5ffd5b50565b6001600160a01b03831661062c578060025f8282546106219190610ca3565b9091555061069c9050565b6001600160a01b0383165f908152602081905260409020548181101561067e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610125565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166106b8576002805482900390556106d6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161071b91815260200190565b60405180910390a3505050565b600b805460ff191660011790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061076857610768610cb6565b60200260200101906001600160a01b031690816001600160a01b03168152505060a0516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ea9190610c77565b816001815181106107fd576107fd610cb6565b60200260200101906001600160a01b031690816001600160a01b0316815250506108303060a051846108ac60201b60201c565b60a0516001600160a01b031663791ac947835f84306108514261012c610ca3565b6040518663ffffffff1660e01b8152600401610871959493929190610cca565b5f604051808303815f87803b158015610888575f5ffd5b505af115801561089a573d5f5f3e3d5ffd5b5050600b805460ff1916905550505050565b6105a383838360016001600160a01b0384166108dd5760405163e602df0560e01b81525f6004820152602401610125565b6001600160a01b03831661090657604051634a1406b160e11b81525f6004820152602401610125565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561098157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161097891815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156109d6578085048111156109ba576109ba610987565b60018416156109c857908102905b60019390931c92800261099f565b935093915050565b5f826109ec57506001610a7a565b816109f857505f610a7a565b8160018114610a0e5760028114610a1857610a34565b6001915050610a7a565b60ff841115610a2957610a29610987565b50506001821b610a7a565b5060208310610133831016604e8410600b8410161715610a57575081810a610a7a565b610a635f19848461099b565b805f1904821115610a7657610a76610987565b0290505b92915050565b5f610a8e60ff8416836109de565b9392505050565b8082028115828204841417610a7a57610a7a610987565b5f82610ac657634e487b7160e01b5f52601260045260245ffd5b500490565b80516001600160a01b0381168114610ae1575f5ffd5b919050565b5f5f5f60608486031215610af8575f5ffd5b610b0184610acb565b9250610b0f60208501610acb565b9150610b1d60408501610acb565b90509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610b4e57607f821691505b602082108103610b6c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156105a357805f5260205f20601f840160051c81016020851015610b975750805b601f840160051c820191505b81811015610bb6575f8155600101610ba3565b5050505050565b81516001600160401b03811115610bd657610bd6610b26565b610bea81610be48454610b3a565b84610b72565b6020601f821160018114610c1c575f8315610c055750848201515b5f19600385901b1c1916600184901b178455610bb6565b5f84815260208120601f198516915b82811015610c4b5787850151825560209485019460019092019101610c2b565b5084821015610c6857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610c87575f5ffd5b610a8e82610acb565b81810381811115610a7a57610a7a610987565b80820180821115610a7a57610a7a610987565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015610d1a5783516001600160a01b0316835260209384019390920191600101610cf3565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05160c0516118b5610d925f395f818161031c01528181610fd801528181611013015281816110a4015261113801525f818161023201528181611407015281816114be01526114ed01525f50506118b55ff3fe6080604052600436106101bd575f3560e01c80638da5cb5b116100f2578063c6a3064711610092578063dd62ed3e11610062578063dd62ed3e1461052a578063e6be4a721461056e578063e96db1ef1461058d578063f2fde38b146105ad575f5ffd5b8063c6a30647146104b4578063cb4ca631146104d3578063ce831ed514610501578063cef8513914610515575f5ffd5b8063a9059cbb116100cd578063a9059cbb14610438578063bb85c6d114610457578063c120186414610476578063c30adfd714610495575f5ffd5b80638da5cb5b146103d957806395d89b41146103f6578063a8a69b9d1461040a575f5ffd5b8063330124111161015d57806370a082311161013857806370a0823114610353578063715018a61461038757806375f0a8741461039b578063781edb3c146103ba575f5ffd5b806333012411146102eb57806349bd5a5e1461030b57806366a88d961461033e575f5ffd5b806318160ddd1161019857806318160ddd1461026c578063212e3b2b1461028a57806323b872dd146102ab578063313ce567146102ca575f5ffd5b806306fdde03146101c8578063095ea7b3146101f25780631694505e14610221575f5ffd5b366101c457005b5f5ffd5b3480156101d3575f5ffd5b506101dc6105cc565b6040516101e9919061157d565b60405180910390f35b3480156101fd575f5ffd5b5061021161020c3660046115c6565b61065c565b60405190151581526020016101e9565b34801561022c575f5ffd5b506102547f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101e9565b348015610277575f5ffd5b506002545b6040519081526020016101e9565b348015610295575f5ffd5b506102a96102a43660046115f0565b610675565b005b3480156102b6575f5ffd5b506102116102c5366004611607565b610717565b3480156102d5575f5ffd5b5060125b60405160ff90911681526020016101e9565b3480156102f6575f5ffd5b506006546102d990600160a01b900460ff1681565b348015610316575f5ffd5b506102547f000000000000000000000000000000000000000000000000000000000000000081565b348015610349575f5ffd5b5061027c60085481565b34801561035e575f5ffd5b5061027c61036d366004611645565b6001600160a01b03165f9081526020819052604090205490565b348015610392575f5ffd5b506102a961073a565b3480156103a6575f5ffd5b50600654610254906001600160a01b031681565b3480156103c5575f5ffd5b506102a96103d4366004611674565b61074d565b3480156103e4575f5ffd5b506005546001600160a01b0316610254565b348015610401575f5ffd5b506101dc6107a8565b348015610415575f5ffd5b50610211610424366004611645565b600a6020525f908152604090205460ff1681565b348015610443575f5ffd5b506102116104523660046115c6565b6107b7565b348015610462575f5ffd5b506102a9610471366004611645565b6107c4565b348015610481575f5ffd5b506102a96104903660046115f0565b61087d565b3480156104a0575f5ffd5b506102a96104af3660046116c0565b610912565b3480156104bf575f5ffd5b506102a96104ce366004611674565b610a26565b3480156104de575f5ffd5b506102116104ed366004611645565b60096020525f908152604090205460ff1681565b34801561050c575f5ffd5b506102a9610a81565b348015610520575f5ffd5b5061027c60075481565b348015610535575f5ffd5b5061027c6105443660046116f1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610579575f5ffd5b506102a96105883660046115c6565b610baf565b348015610598575f5ffd5b506006546102d990600160a81b900460ff1681565b3480156105b8575f5ffd5b506102a96105c7366004611645565b610d5f565b6060600380546105db9061171d565b80601f01602080910402602001604051908101604052809291908181526020018280546106079061171d565b80156106525780601f1061062957610100808354040283529160200191610652565b820191905f5260205f20905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b5f33610669818585610d9c565b60019150505b92915050565b61067d610dae565b5f81116106d15760405162461bcd60e51b815260206004820152601c60248201527f4c696d6974206d7573742062652067726561746572207468616e20300000000060448201526064015b60405180910390fd5b600880549082905560408051828152602081018490527ff521ac26681f2082cd832d245ffb0df3132b4f18099e967f203be27e4b746f5191015b60405180910390a15050565b5f33610724858285610ddb565b61072f858585610e56565b506001949350505050565b610742610dae565b61074b5f610eb3565b565b610755610dae565b6001600160a01b0382165f818152600a6020526040808220805460ff191685151590811790915590519092917fb0e21c0d53f57d838a3a08178ccf2c29624b47bd4f5f1080f5b688603c48118891a35050565b6060600480546105db9061171d565b5f33610669818585610e56565b6107cc610dae565b6001600160a01b03811661082c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736044820152607360f81b60648201526084016106c8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fc17db519c06a38e30a448e03e08b3edec28a0a29d239f693ab94a6206a5ca63d905f90a35050565b610885610dae565b5f81116108d45760405162461bcd60e51b815260206004820181905260248201527f5468726573686f6c64206d7573742062652067726561746572207468616e203060448201526064016106c8565b600780549082905560408051828152602081018490527fa307a9ae7d5512e3add205b7fee6c3f9b8e4bcf8a3de7878041f9364b862bb67910161070b565b61091a610dae565b601e8260ff16111580156109325750601e8160ff1611155b61098f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2074617820636f756c64206e6f742062652067726561746572206044820152677468616e2033302560c01b60648201526084016106c8565b6006805461ffff60a01b198116600160a01b60ff868116820260ff60a81b191692909217600160a81b86841681029190911794859055604080518386048516808252938704851660208201529482900484169085018190529404909116606083015291907f0cdae21e5d34c631f2f4cb6e5554d779e5222802fcc0c0080aa458c92c9d0b809060800160405180910390a150505050565b610a2e610dae565b6001600160a01b0382165f81815260096020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610a89610dae565b60065460405147915f916001600160a01b039091169083908381818185875af1925050503d805f8114610ad7576040519150601f19603f3d011682016040523d82523d5f602084013e610adc565b606091505b5050905080610b1f5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106c8565b6006546040516001600160a01b03909116907f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a0090610ba3906020808252602c908201527f57652068617665207265636f766572207468652073746f636b2065746820667260408201526b37b69031b7b73a3930b1ba1760a11b606082015260800190565b60405180910390a25050565b610bb7610dae565b306001600160a01b03831603610c2e5760405162461bcd60e51b815260206004820152603660248201527f4f776e65722063616e277420636c61696d20636f6e747261637427732062616c604482015275616e6365206f6620697473206f776e20746f6b656e7360501b60648201526084016106c8565b60065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390525f9184169063a9059cbb906044016020604051808303815f875af1158015610c7f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca39190611755565b905080610ce45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106c8565b604080518181526027818301527f57652068617665207265636f766572656420746f6b656e732066726f6d20636f606082015266373a3930b1ba1d60c91b60808201526020810184905290517fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b59181900360a00190a1505050565b610d67610dae565b6001600160a01b038116610d9057604051631e4fbdf760e01b81525f60048201526024016106c8565b610d9981610eb3565b50565b610da98383836001610f04565b505050565b6005546001600160a01b0316331461074b5760405163118cdaa760e01b81523360048201526024016106c8565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610e505781811015610e4257604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106c8565b610e5084848484035f610f04565b50505050565b6001600160a01b038316610e7f57604051634b637e8f60e11b81525f60048201526024016106c8565b6001600160a01b038216610ea85760405163ec442f0560e01b81525f60048201526024016106c8565b610da9838383610fd6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610f2d5760405163e602df0560e01b81525f60048201526024016106c8565b6001600160a01b038316610f5657604051634a1406b160e11b81525f60048201526024016106c8565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610e5057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fc891815260200190565b60405180910390a350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061104757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b801561108d57506001600160a01b0383165f9081526009602052604090205460ff168061108b57506001600160a01b0382165f9081526009602052604090205460ff165b155b801561109c5750600b5460ff16155b15611184575f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614611104576006546064906110f590600160a81b900460ff1684611784565b6110ff919061179b565b611128565b60065460649061111e90600160a01b900460ff1684611784565b611128919061179b565b905061113481836117ba565b91507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361117757611177611224565b61118284308361127f565b505b6001600160a01b0382165f908152600a602052604090205460ff16806111cd57506008546001600160a01b0383165f908152602081905260409020546111ca90836117cd565b11155b6112195760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d6974206578636565646564000060448201526064016106c8565b610da983838361127f565b305f908152602081905260409020546007548110610d9957611245816113a5565b6006546040516001600160a01b03909116904780156108fc02915f818181858888f1935050505015801561127b573d5f5f3e3d5ffd5b5050565b6001600160a01b0383166112a9578060025f82825461129e91906117cd565b909155506113199050565b6001600160a01b0383165f90815260208190526040902054818110156112fb5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106c8565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661133557600280548290039055611353565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161139891815260200190565b60405180910390a3505050565b600b805460ff191660011790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106113e5576113e56117e0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611461573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148591906117f4565b81600181518110611498576114986117e0565b60200260200101906001600160a01b031690816001600160a01b0316815250506114e3307f000000000000000000000000000000000000000000000000000000000000000084610d9c565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947835f84306115224261012c6117cd565b6040518663ffffffff1660e01b815260040161154295949392919061180f565b5f604051808303815f87803b158015611559575f5ffd5b505af115801561156b573d5f5f3e3d5ffd5b5050600b805460ff1916905550505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d99575f5ffd5b5f5f604083850312156115d7575f5ffd5b82356115e2816115b2565b946020939093013593505050565b5f60208284031215611600575f5ffd5b5035919050565b5f5f5f60608486031215611619575f5ffd5b8335611624816115b2565b92506020840135611634816115b2565b929592945050506040919091013590565b5f60208284031215611655575f5ffd5b8135611660816115b2565b9392505050565b8015158114610d99575f5ffd5b5f5f60408385031215611685575f5ffd5b8235611690816115b2565b915060208301356116a081611667565b809150509250929050565b803560ff811681146116bb575f5ffd5b919050565b5f5f604083850312156116d1575f5ffd5b6116da836116ab565b91506116e8602084016116ab565b90509250929050565b5f5f60408385031215611702575f5ffd5b823561170d816115b2565b915060208301356116a0816115b2565b600181811c9082168061173157607f821691505b60208210810361174f57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611765575f5ffd5b815161166081611667565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761066f5761066f611770565b5f826117b557634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561066f5761066f611770565b8082018082111561066f5761066f611770565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611804575f5ffd5b8151611660816115b2565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561185f5783516001600160a01b0316835260209384019390920191600101611838565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212200d984ea551f51141cb1bab88f563d0af7293aac6547f1ef117de107353682a9464736f6c634300081c003300000000000000000000000009d03a8a9dc5034238a82e7c2a345f48d62837140000000000000000000000006bb8fe57111539a649a0076825b6d684640fe9ae0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106101bd575f3560e01c80638da5cb5b116100f2578063c6a3064711610092578063dd62ed3e11610062578063dd62ed3e1461052a578063e6be4a721461056e578063e96db1ef1461058d578063f2fde38b146105ad575f5ffd5b8063c6a30647146104b4578063cb4ca631146104d3578063ce831ed514610501578063cef8513914610515575f5ffd5b8063a9059cbb116100cd578063a9059cbb14610438578063bb85c6d114610457578063c120186414610476578063c30adfd714610495575f5ffd5b80638da5cb5b146103d957806395d89b41146103f6578063a8a69b9d1461040a575f5ffd5b8063330124111161015d57806370a082311161013857806370a0823114610353578063715018a61461038757806375f0a8741461039b578063781edb3c146103ba575f5ffd5b806333012411146102eb57806349bd5a5e1461030b57806366a88d961461033e575f5ffd5b806318160ddd1161019857806318160ddd1461026c578063212e3b2b1461028a57806323b872dd146102ab578063313ce567146102ca575f5ffd5b806306fdde03146101c8578063095ea7b3146101f25780631694505e14610221575f5ffd5b366101c457005b5f5ffd5b3480156101d3575f5ffd5b506101dc6105cc565b6040516101e9919061157d565b60405180910390f35b3480156101fd575f5ffd5b5061021161020c3660046115c6565b61065c565b60405190151581526020016101e9565b34801561022c575f5ffd5b506102547f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101e9565b348015610277575f5ffd5b506002545b6040519081526020016101e9565b348015610295575f5ffd5b506102a96102a43660046115f0565b610675565b005b3480156102b6575f5ffd5b506102116102c5366004611607565b610717565b3480156102d5575f5ffd5b5060125b60405160ff90911681526020016101e9565b3480156102f6575f5ffd5b506006546102d990600160a01b900460ff1681565b348015610316575f5ffd5b506102547f0000000000000000000000004ea0205669bcd30144f98170090163e42609870e81565b348015610349575f5ffd5b5061027c60085481565b34801561035e575f5ffd5b5061027c61036d366004611645565b6001600160a01b03165f9081526020819052604090205490565b348015610392575f5ffd5b506102a961073a565b3480156103a6575f5ffd5b50600654610254906001600160a01b031681565b3480156103c5575f5ffd5b506102a96103d4366004611674565b61074d565b3480156103e4575f5ffd5b506005546001600160a01b0316610254565b348015610401575f5ffd5b506101dc6107a8565b348015610415575f5ffd5b50610211610424366004611645565b600a6020525f908152604090205460ff1681565b348015610443575f5ffd5b506102116104523660046115c6565b6107b7565b348015610462575f5ffd5b506102a9610471366004611645565b6107c4565b348015610481575f5ffd5b506102a96104903660046115f0565b61087d565b3480156104a0575f5ffd5b506102a96104af3660046116c0565b610912565b3480156104bf575f5ffd5b506102a96104ce366004611674565b610a26565b3480156104de575f5ffd5b506102116104ed366004611645565b60096020525f908152604090205460ff1681565b34801561050c575f5ffd5b506102a9610a81565b348015610520575f5ffd5b5061027c60075481565b348015610535575f5ffd5b5061027c6105443660046116f1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610579575f5ffd5b506102a96105883660046115c6565b610baf565b348015610598575f5ffd5b506006546102d990600160a81b900460ff1681565b3480156105b8575f5ffd5b506102a96105c7366004611645565b610d5f565b6060600380546105db9061171d565b80601f01602080910402602001604051908101604052809291908181526020018280546106079061171d565b80156106525780601f1061062957610100808354040283529160200191610652565b820191905f5260205f20905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b5f33610669818585610d9c565b60019150505b92915050565b61067d610dae565b5f81116106d15760405162461bcd60e51b815260206004820152601c60248201527f4c696d6974206d7573742062652067726561746572207468616e20300000000060448201526064015b60405180910390fd5b600880549082905560408051828152602081018490527ff521ac26681f2082cd832d245ffb0df3132b4f18099e967f203be27e4b746f5191015b60405180910390a15050565b5f33610724858285610ddb565b61072f858585610e56565b506001949350505050565b610742610dae565b61074b5f610eb3565b565b610755610dae565b6001600160a01b0382165f818152600a6020526040808220805460ff191685151590811790915590519092917fb0e21c0d53f57d838a3a08178ccf2c29624b47bd4f5f1080f5b688603c48118891a35050565b6060600480546105db9061171d565b5f33610669818585610e56565b6107cc610dae565b6001600160a01b03811661082c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736044820152607360f81b60648201526084016106c8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fc17db519c06a38e30a448e03e08b3edec28a0a29d239f693ab94a6206a5ca63d905f90a35050565b610885610dae565b5f81116108d45760405162461bcd60e51b815260206004820181905260248201527f5468726573686f6c64206d7573742062652067726561746572207468616e203060448201526064016106c8565b600780549082905560408051828152602081018490527fa307a9ae7d5512e3add205b7fee6c3f9b8e4bcf8a3de7878041f9364b862bb67910161070b565b61091a610dae565b601e8260ff16111580156109325750601e8160ff1611155b61098f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2074617820636f756c64206e6f742062652067726561746572206044820152677468616e2033302560c01b60648201526084016106c8565b6006805461ffff60a01b198116600160a01b60ff868116820260ff60a81b191692909217600160a81b86841681029190911794859055604080518386048516808252938704851660208201529482900484169085018190529404909116606083015291907f0cdae21e5d34c631f2f4cb6e5554d779e5222802fcc0c0080aa458c92c9d0b809060800160405180910390a150505050565b610a2e610dae565b6001600160a01b0382165f81815260096020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610a89610dae565b60065460405147915f916001600160a01b039091169083908381818185875af1925050503d805f8114610ad7576040519150601f19603f3d011682016040523d82523d5f602084013e610adc565b606091505b5050905080610b1f5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106c8565b6006546040516001600160a01b03909116907f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a0090610ba3906020808252602c908201527f57652068617665207265636f766572207468652073746f636b2065746820667260408201526b37b69031b7b73a3930b1ba1760a11b606082015260800190565b60405180910390a25050565b610bb7610dae565b306001600160a01b03831603610c2e5760405162461bcd60e51b815260206004820152603660248201527f4f776e65722063616e277420636c61696d20636f6e747261637427732062616c604482015275616e6365206f6620697473206f776e20746f6b656e7360501b60648201526084016106c8565b60065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390525f9184169063a9059cbb906044016020604051808303815f875af1158015610c7f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca39190611755565b905080610ce45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106c8565b604080518181526027818301527f57652068617665207265636f766572656420746f6b656e732066726f6d20636f606082015266373a3930b1ba1d60c91b60808201526020810184905290517fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b59181900360a00190a1505050565b610d67610dae565b6001600160a01b038116610d9057604051631e4fbdf760e01b81525f60048201526024016106c8565b610d9981610eb3565b50565b610da98383836001610f04565b505050565b6005546001600160a01b0316331461074b5760405163118cdaa760e01b81523360048201526024016106c8565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610e505781811015610e4257604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106c8565b610e5084848484035f610f04565b50505050565b6001600160a01b038316610e7f57604051634b637e8f60e11b81525f60048201526024016106c8565b6001600160a01b038216610ea85760405163ec442f0560e01b81525f60048201526024016106c8565b610da9838383610fd6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610f2d5760405163e602df0560e01b81525f60048201526024016106c8565b6001600160a01b038316610f5657604051634a1406b160e11b81525f60048201526024016106c8565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610e5057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fc891815260200190565b60405180910390a350505050565b7f0000000000000000000000004ea0205669bcd30144f98170090163e42609870e6001600160a01b0316836001600160a01b0316148061104757507f0000000000000000000000004ea0205669bcd30144f98170090163e42609870e6001600160a01b0316826001600160a01b0316145b801561108d57506001600160a01b0383165f9081526009602052604090205460ff168061108b57506001600160a01b0382165f9081526009602052604090205460ff165b155b801561109c5750600b5460ff16155b15611184575f7f0000000000000000000000004ea0205669bcd30144f98170090163e42609870e6001600160a01b0316846001600160a01b031614611104576006546064906110f590600160a81b900460ff1684611784565b6110ff919061179b565b611128565b60065460649061111e90600160a01b900460ff1684611784565b611128919061179b565b905061113481836117ba565b91507f0000000000000000000000004ea0205669bcd30144f98170090163e42609870e6001600160a01b0316836001600160a01b03160361117757611177611224565b61118284308361127f565b505b6001600160a01b0382165f908152600a602052604090205460ff16806111cd57506008546001600160a01b0383165f908152602081905260409020546111ca90836117cd565b11155b6112195760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d6974206578636565646564000060448201526064016106c8565b610da983838361127f565b305f908152602081905260409020546007548110610d9957611245816113a5565b6006546040516001600160a01b03909116904780156108fc02915f818181858888f1935050505015801561127b573d5f5f3e3d5ffd5b5050565b6001600160a01b0383166112a9578060025f82825461129e91906117cd565b909155506113199050565b6001600160a01b0383165f90815260208190526040902054818110156112fb5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106c8565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661133557600280548290039055611353565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161139891815260200190565b60405180910390a3505050565b600b805460ff191660011790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106113e5576113e56117e0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611461573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148591906117f4565b81600181518110611498576114986117e0565b60200260200101906001600160a01b031690816001600160a01b0316815250506114e3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d9c565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947835f84306115224261012c6117cd565b6040518663ffffffff1660e01b815260040161154295949392919061180f565b5f604051808303815f87803b158015611559575f5ffd5b505af115801561156b573d5f5f3e3d5ffd5b5050600b805460ff1916905550505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d99575f5ffd5b5f5f604083850312156115d7575f5ffd5b82356115e2816115b2565b946020939093013593505050565b5f60208284031215611600575f5ffd5b5035919050565b5f5f5f60608486031215611619575f5ffd5b8335611624816115b2565b92506020840135611634816115b2565b929592945050506040919091013590565b5f60208284031215611655575f5ffd5b8135611660816115b2565b9392505050565b8015158114610d99575f5ffd5b5f5f60408385031215611685575f5ffd5b8235611690816115b2565b915060208301356116a081611667565b809150509250929050565b803560ff811681146116bb575f5ffd5b919050565b5f5f604083850312156116d1575f5ffd5b6116da836116ab565b91506116e8602084016116ab565b90509250929050565b5f5f60408385031215611702575f5ffd5b823561170d816115b2565b915060208301356116a0816115b2565b600181811c9082168061173157607f821691505b60208210810361174f57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611765575f5ffd5b815161166081611667565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761066f5761066f611770565b5f826117b557634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561066f5761066f611770565b8082018082111561066f5761066f611770565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611804575f5ffd5b8151611660816115b2565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561185f5783516001600160a01b0316835260209384019390920191600101611838565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212200d984ea551f51141cb1bab88f563d0af7293aac6547f1ef117de107353682a9464736f6c634300081c0033

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

00000000000000000000000009d03a8a9dc5034238a82e7c2a345f48d62837140000000000000000000000006bb8fe57111539a649a0076825b6d684640fe9ae0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _deployerWallet (address): 0x09d03a8A9dC5034238A82E7C2A345F48D6283714
Arg [1] : _marketingWallet (address): 0x6BB8fe57111539a649a0076825B6D684640Fe9aE
Arg [2] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000009d03a8a9dc5034238a82e7c2a345f48d6283714
Arg [1] : 0000000000000000000000006bb8fe57111539a649a0076825b6d684640fe9ae
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

22249:12946:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9451:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:215;;;;;;;;;;-1:-1:-1;11769:215:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;11769:215:0;945:187:1;22743:49:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1324:32:1;;;1306:51;;1294:2;1279:18;22743:49:0;1137:226:1;10553:99:0;;;;;;;;;;-1:-1:-1;10632:12:0;;10553:99;;;1514:25:1;;;1502:2;1487:18;10553:99:0;1368:177:1;33709:278:0;;;;;;;;;;-1:-1:-1;33709:278:0;;;;;:::i;:::-;;:::i;:::-;;12562:283;;;;;;;;;;-1:-1:-1;12562:283:0;;;;;:::i;:::-;;:::i;10404:84::-;;;;;;;;;;-1:-1:-1;10478:2:0;10404:84;;;2466:4:1;2454:17;;;2436:36;;2424:2;2409:18;10404:84:0;2294:184:1;22325:33:0;;;;;;;;;;-1:-1:-1;22325:33:0;;;;-1:-1:-1;;;22325:33:0;;;;;;22799:38;;;;;;;;;;;;;;;22553:56;;;;;;;;;;;;;;;;10715:118;;;;;;;;;;-1:-1:-1;10715:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;10807:18:0;10780:7;10807:18;;;;;;;;;;;;10715:118;20696:103;;;;;;;;;;;;;:::i;22288:30::-;;;;;;;;;;-1:-1:-1;22288:30:0;;;;-1:-1:-1;;;;;22288:30:0;;;28996:239;;;;;;;;;;-1:-1:-1;28996:239:0;;;;;:::i;:::-;;:::i;20021:87::-;;;;;;;;;;-1:-1:-1;20094:6:0;;-1:-1:-1;;;;;20094:6:0;20021:87;;9661:95;;;;;;;;;;;;;:::i;22674:60::-;;;;;;;;;;-1:-1:-1;22674:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11038:182;;;;;;;;;;-1:-1:-1;11038:182:0;;;;;:::i;:::-;;:::i;27807:303::-;;;;;;;;;;-1:-1:-1;27807:303:0;;;;;:::i;:::-;;:::i;34829:326::-;;;;;;;;;;-1:-1:-1;34829:326:0;;;;;:::i;:::-;;:::i;30212:592::-;;;;;;;;;;-1:-1:-1;30212:592:0;;;;;:::i;:::-;;:::i;28446:181::-;;;;;;;;;;-1:-1:-1;28446:181:0;;;;;:::i;:::-;;:::i;22618:49::-;;;;;;;;;;-1:-1:-1;22618:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31429:332;;;;;;;;;;;;;:::i;22484:62::-;;;;;;;;;;;;;;;;11283:167;;;;;;;;;;-1:-1:-1;11283:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;11415:18:0;;;11388:7;11415:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11283:167;32599:405;;;;;;;;;;-1:-1:-1;32599:405:0;;;;;:::i;:::-;;:::i;22365:34::-;;;;;;;;;;-1:-1:-1;22365:34:0;;;;-1:-1:-1;;;22365:34:0;;;;;;20954:220;;;;;;;;;;-1:-1:-1;20954:220:0;;;;;:::i;:::-;;:::i;9451:91::-;9496:13;9529:5;9522:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9451:91;:::o;11769:215::-;11867:4;2644:10;11923:31;2644:10;11939:7;11948:5;11923:8;:31::i;:::-;11972:4;11965:11;;;11769:215;;;;;:::o;33709:278::-;19907:13;:11;:13::i;:::-;33806:1:::1;33795:8;:12;33787:53;;;::::0;-1:-1:-1;;;33787:53:0;;4851:2:1;33787:53:0::1;::::0;::::1;4833:21:1::0;4890:2;4870:18;;;4863:30;4929;4909:18;;;4902:58;4977:18;;33787:53:0::1;;;;;;;;;33870:14;::::0;;33895:25;;;;33938:41:::1;::::0;;5180:25:1;;;5236:2;5221:18;;5214:34;;;33938:41:0::1;::::0;5153:18:1;33938:41:0::1;;;;;;;;33776:211;33709:278:::0;:::o;12562:283::-;12683:4;2644:10;12741:37;12757:4;2644:10;12772:5;12741:15;:37::i;:::-;12789:26;12799:4;12805:2;12809:5;12789:9;:26::i;:::-;-1:-1:-1;12833:4:0;;12562:283;-1:-1:-1;;;;12562:283:0:o;20696:103::-;19907:13;:11;:13::i;:::-;20761:30:::1;20788:1;20761:18;:30::i;:::-;20696:103::o:0;28996:239::-;19907:13;:11;:13::i;:::-;-1:-1:-1;;;;;29116:37:0;::::1;;::::0;;;:28:::1;:37;::::0;;;;;:46;;-1:-1:-1;;29116:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29180:47;;29116:46;;:37;29180:47:::1;::::0;::::1;28996:239:::0;;:::o;9661:95::-;9708:13;9741:7;9734:14;;;;;:::i;11038:182::-;11107:4;2644:10;11163:27;2644:10;11180:2;11184:5;11163:9;:27::i;27807:303::-;19907:13;:11;:13::i;:::-;-1:-1:-1;;;;;27895:23:0;::::1;27887:69;;;::::0;-1:-1:-1;;;27887:69:0;;5461:2:1;27887:69:0::1;::::0;::::1;5443:21:1::0;5500:2;5480:18;;;5473:30;5539:34;5519:18;;;5512:62;-1:-1:-1;;;5590:18:1;;;5583:31;5631:19;;27887:69:0::1;5259:397:1::0;27887:69:0::1;27987:15;::::0;;-1:-1:-1;;;;;28013:27:0;;::::1;-1:-1:-1::0;;;;;;28013:27:0;::::1;::::0;::::1;::::0;;;28058:44:::1;::::0;27987:15;::::1;::::0;28013:27;27987:15;;28058:44:::1;::::0;27967:17:::1;::::0;28058:44:::1;27876:234;27807:303:::0;:::o;34829:326::-;19907:13;:11;:13::i;:::-;34939:1:::1;34924:12;:16;34916:61;;;::::0;-1:-1:-1;;;34916:61:0;;5863:2:1;34916:61:0::1;::::0;::::1;5845:21:1::0;;;5882:18;;;5875:30;5941:34;5921:18;;;5914:62;5993:18;;34916:61:0::1;5661:356:1::0;34916:61:0::1;35011:19;::::0;;35041:34;;;;35093:54:::1;::::0;;5180:25:1;;;5236:2;5221:18;;5214:34;;;35093:54:0::1;::::0;5153:18:1;35093:54:0::1;5006:248:1::0;30212:592:0;19907:13;:11;:13::i;:::-;30379:2:::1;30359:16;:22;;;;:49;;;;;30406:2;30385:17;:23;;;;30359:49;30351:103;;;::::0;-1:-1:-1;;;30351:103:0;;6224:2:1;30351:103:0::1;::::0;::::1;6206:21:1::0;6263:2;6243:18;;;6236:30;6302:34;6282:18;;;6275:62;-1:-1:-1;;;6353:18:1;;;6346:38;6401:19;;30351:103:0::1;6022:404:1::0;30351:103:0::1;30483:15;::::0;;-1:-1:-1;;;;30602:36:0;;-1:-1:-1;;;30483:15:0::1;30557:34:::0;;::::1;::::0;::::1;-1:-1:-1::0;;;;30602:36:0;;;;;-1:-1:-1;;;30602:36:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;30656:140:::1;::::0;;30483:15;;::::1;::::0;::::1;6646:36:1::0;;;30714:15:0;;::::1;::::0;::::1;6713:2:1::0;6698:18;;6691:45;30528:16:0;;;::::1;::::0;::::1;6752:18:1::0;;;6745:45;;;30769:16:0;::::1;::::0;;::::1;6821:2:1::0;6806:18;;6799:45;30483:15:0;30528:16;30656:140:::1;::::0;6633:3:1;6618:19;30656:140:0::1;;;;;;;30340:464;;30212:592:::0;;:::o;28446:181::-;19907:13;:11;:13::i;:::-;-1:-1:-1;;;;;28530:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;:35;;-1:-1:-1;;28530:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28583:36;;28530:35;;:26;28583:36:::1;::::0;::::1;28446:181:::0;;:::o;31429:332::-;19907:13;:11;:13::i;:::-;31567:15:::1;::::0;31559:52:::1;::::0;31511:21:::1;::::0;31493:15:::1;::::0;-1:-1:-1;;;;;31567:15:0;;::::1;::::0;31511:21;;31493:15;31559:52;31493:15;31559:52;31511:21;31567:15;31559:52:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31543:68;;;31630:4;31622:32;;;::::0;-1:-1:-1;;;31622:32:0;;7267:2:1;31622:32:0::1;::::0;::::1;7249:21:1::0;7306:2;7286:18;;;7279:30;-1:-1:-1;;;7325:18:1;;;7318:45;7380:18;;31622:32:0::1;7065:339:1::0;31622:32:0::1;31737:15;::::0;31680:73:::1;::::0;-1:-1:-1;;;;;31737:15:0;;::::1;::::0;31680:73:::1;::::0;::::1;::::0;7611:2:1;7593:21;;;7650:2;7630:18;;;7623:30;7689:34;7684:2;7669:18;;7662:62;-1:-1:-1;;;7755:2:1;7740:18;;7733:42;7807:3;7792:19;;7409:408;31680:73:0::1;;;;;;;;31482:279;;31429:332::o:0;32599:405::-;19907:13;:11;:13::i;:::-;32737:4:::1;-1:-1:-1::0;;;;;32712:30:0;::::1;::::0;32704:97:::1;;;::::0;-1:-1:-1;;;32704:97:0;;8024:2:1;32704:97:0::1;::::0;::::1;8006:21:1::0;8063:2;8043:18;;;8036:30;8102:34;8082:18;;;8075:62;-1:-1:-1;;;8153:18:1;;;8146:52;8215:19;;32704:97:0::1;7822:418:1::0;32704:97:0::1;32855:15;::::0;32824:56:::1;::::0;-1:-1:-1;;;32824:56:0;;-1:-1:-1;;;;;32855:15:0;;::::1;32824:56;::::0;::::1;8419:51:1::0;8486:18;;;8479:34;;;32812:9:0::1;::::0;32824:30;::::1;::::0;::::1;::::0;8392:18:1;;32824:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32812:68;;32899:4;32891:32;;;::::0;-1:-1:-1;;;32891:32:0;;7267:2:1;32891:32:0::1;::::0;::::1;7249:21:1::0;7306:2;7286:18;;;7279:30;-1:-1:-1;;;7325:18:1;;;7318:45;7380:18;;32891:32:0::1;7065:339:1::0;32891:32:0::1;32941:55;::::0;;8986:21:1;;;9043:2;9023:18;;;9016:30;9082:34;9077:2;9062:18;;9055:62;-1:-1:-1;;;9148:3:1;9133:19;;9126:38;9231:4;9216:20;;9209:36;;;32941:55:0;;::::1;::::0;;;;9196:3:1;32941:55:0;;::::1;32693:311;32599:405:::0;;:::o;20954:220::-;19907:13;:11;:13::i;:::-;-1:-1:-1;;;;;21039:22:0;::::1;21035:93;;21085:31;::::0;-1:-1:-1;;;21085:31:0;;21113:1:::1;21085:31;::::0;::::1;1306:51:1::0;1279:18;;21085:31:0::1;1137:226:1::0;21035:93:0::1;21138:28;21157:8;21138:18;:28::i;:::-;20954:220:::0;:::o;16116:130::-;16201:37;16210:5;16217:7;16226:5;16233:4;16201:8;:37::i;:::-;16116:130;;;:::o;20186:166::-;20094:6;;-1:-1:-1;;;;;20094:6:0;2644:10;20246:23;20242:103;;20293:40;;-1:-1:-1;;;20293:40:0;;2644:10;20293:40;;;1306:51:1;1279:18;;20293:40:0;1137:226:1;17875:603:0;-1:-1:-1;;;;;11415:18:0;;;18009:24;11415:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18076:37:0;;18072:399;;18153:5;18134:16;:24;18130:214;;;18186:142;;-1:-1:-1;;;18186:142:0;;-1:-1:-1;;;;;9476:32:1;;18186:142:0;;;9458:51:1;9525:18;;;9518:34;;;9568:18;;;9561:34;;;9431:18;;18186:142:0;9256:345:1;18130:214:0;18387:57;18396:5;18403:7;18431:5;18412:16;:24;18438:5;18387:8;:57::i;:::-;17998:480;17875:603;;;:::o;13230:308::-;-1:-1:-1;;;;;13314:18:0;;13310:88;;13356:30;;-1:-1:-1;;;13356:30:0;;13383:1;13356:30;;;1306:51:1;1279:18;;13356:30:0;1137:226:1;13310:88:0;-1:-1:-1;;;;;13412:16:0;;13408:88;;13452:32;;-1:-1:-1;;;13452:32:0;;13481:1;13452:32;;;1306:51:1;1279:18;;13452:32:0;1137:226:1;13408:88:0;13506:24;13514:4;13520:2;13524:5;13506:7;:24::i;21334:191::-;21427:6;;;-1:-1:-1;;;;;21444:17:0;;;-1:-1:-1;;;;;;21444:17:0;;;;;;;21477:40;;21427:6;;;21444:17;21427:6;;21477:40;;21408:16;;21477:40;21397:128;21334:191;:::o;17097:486::-;-1:-1:-1;;;;;17253:19:0;;17249:91;;17296:32;;-1:-1:-1;;;17296:32:0;;17325:1;17296:32;;;1306:51:1;1279:18;;17296:32:0;1137:226:1;17249:91:0;-1:-1:-1;;;;;17354:21:0;;17350:92;;17399:31;;-1:-1:-1;;;17399:31:0;;17427:1;17399:31;;;1306:51:1;1279:18;;17399:31:0;1137:226:1;17350:92:0;-1:-1:-1;;;;;17452:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;17498:78;;;;17549:7;-1:-1:-1;;;;;17533:31:0;17542:5;-1:-1:-1;;;;;17533:31:0;;17558:5;17533:31;;;;1514:25:1;;1502:2;1487:18;;1368:177;17533:31:0;;;;;;;;17097:486;;;;:::o;25780:763::-;25914:13;-1:-1:-1;;;;;25906:21:0;:4;-1:-1:-1;;;;;25906:21:0;;:44;;;;25937:13;-1:-1:-1;;;;;25931:19:0;:2;-1:-1:-1;;;;;25931:19:0;;25906:44;25905:101;;;;-1:-1:-1;;;;;;25957:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;25984:21:0;;;;;;:17;:21;;;;;;;;25957:48;25955:51;25905:101;:123;;;;-1:-1:-1;26011:17:0;;;;26010:18;25905:123;25901:461;;;26045:16;26073:13;-1:-1:-1;;;;;26065:21:0;:4;-1:-1:-1;;;;;26065:21:0;;26064:96;;26136:16;;26156:3;;26128:24;;-1:-1:-1;;;26136:16:0;;;;26128:5;:24;:::i;:::-;26127:32;;;;:::i;:::-;26064:96;;;26100:15;;26119:3;;26092:23;;-1:-1:-1;;;26100:15:0;;;;26092:5;:23;:::i;:::-;26091:31;;;;:::i;:::-;26045:115;-1:-1:-1;26175:17:0;26045:115;26175:17;;:::i;:::-;;;26219:13;-1:-1:-1;;;;;26213:19:0;:2;-1:-1:-1;;;;;26213:19:0;;26209:81;;26260:14;:12;:14::i;:::-;26306:44;26320:4;26334;26341:8;26306:13;:44::i;:::-;26030:332;25901:461;-1:-1:-1;;;;;26381:32:0;;;;;;:28;:32;;;;;;;;;:77;;-1:-1:-1;26444:14:0;;-1:-1:-1;;;;;10807:18:0;;10780:7;10807:18;;;;;;;;;;;26418:21;;:5;:21;:::i;:::-;26417:41;;26381:77;26372:122;;;;-1:-1:-1;;;26372:122:0;;10598:2:1;26372:122:0;;;10580:21:1;10637:2;10617:18;;;10610:30;10676:32;10656:18;;;10649:60;10726:18;;26372:122:0;10396:354:1;26372:122:0;26505:30;26519:4;26525:2;26529:5;26505:13;:30::i;26647:287::-;26734:4;26690:23;10807:18;;;;;;;;;;;26774:19;;26755:38;;26751:176;;26810:34;26828:15;26810:17;:34::i;:::-;26867:15;;26859:56;;-1:-1:-1;;;;;26867:15:0;;;;26893:21;26859:56;;;;;26867:15;26859:56;26867:15;26859:56;26893:21;26867:15;26859:56;;;;;;;;;;;;;;;;;;;;;26679:255;26647:287::o;13862:1135::-;-1:-1:-1;;;;;13952:18:0;;13948:552;;14106:5;14090:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;13948:552:0;;-1:-1:-1;13948:552:0;;-1:-1:-1;;;;;14166:15:0;;14144:19;14166:15;;;;;;;;;;;14200:19;;;14196:117;;;14247:50;;-1:-1:-1;;;14247:50:0;;-1:-1:-1;;;;;9476:32:1;;14247:50:0;;;9458:51:1;9525:18;;;9518:34;;;9568:18;;;9561:34;;;9431:18;;14247:50:0;9256:345:1;14196:117:0;-1:-1:-1;;;;;14436:15:0;;:9;:15;;;;;;;;;;14454:19;;;;14436:37;;13948:552;-1:-1:-1;;;;;14516:16:0;;14512:435;;14682:12;:21;;;;;;;14512:435;;;-1:-1:-1;;;;;14898:13:0;;:9;:13;;;;;;;;;;:22;;;;;;14512:435;14979:2;-1:-1:-1;;;;;14964:25:0;14973:4;-1:-1:-1;;;;;14964:25:0;;14983:5;14964:25;;;;1514::1;;1502:2;1487:18;;1368:177;14964:25:0;;;;;;;;13862:1135;;;:::o;27042:496::-;23545:17;:24;;-1:-1:-1;;23545:24:0;23565:4;23545:24;;;27145:16:::1;::::0;;27159:1:::1;27145:16:::0;;;;;::::1;::::0;;-1:-1:-1;;27145:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;27145:16:0::1;27121:40;;27190:4;27172;27177:1;27172:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;27172:23:0::1;;;-1:-1:-1::0;;;;;27172:23:0::1;;;::::0;::::1;27216:15;-1:-1:-1::0;;;;;27216:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27206:4;27211:1;27206:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;27206:32:0::1;;;-1:-1:-1::0;;;;;27206:32:0::1;;;::::0;::::1;27251:62;27268:4;27283:15;27301:11;27251:8;:62::i;:::-;-1:-1:-1::0;;;;;27326:15:0::1;:66;;27407:11:::0;27433:1:::1;27449:4:::0;27476::::1;27497:21;:15;27515:3;27497:21;:::i;:::-;27326:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;23592:17:0;:25;;-1:-1:-1;;23592:25:0;;;-1:-1:-1;;;;27042:496:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1550:226::-;1609:6;1662:2;1650:9;1641:7;1637:23;1633:32;1630:52;;;1678:1;1675;1668:12;1630:52;-1:-1:-1;1723:23:1;;1550:226;-1:-1:-1;1550:226:1:o;1781:508::-;1858:6;1866;1874;1927:2;1915:9;1906:7;1902:23;1898:32;1895:52;;;1943:1;1940;1933:12;1895:52;1982:9;1969:23;2001:31;2026:5;2001:31;:::i;:::-;2051:5;-1:-1:-1;2108:2:1;2093:18;;2080:32;2121:33;2080:32;2121:33;:::i;:::-;1781:508;;2173:7;;-1:-1:-1;;;2253:2:1;2238:18;;;;2225:32;;1781:508::o;2691:247::-;2750:6;2803:2;2791:9;2782:7;2778:23;2774:32;2771:52;;;2819:1;2816;2809:12;2771:52;2858:9;2845:23;2877:31;2902:5;2877:31;:::i;:::-;2927:5;2691:247;-1:-1:-1;;;2691:247:1:o;2943:118::-;3029:5;3022:13;3015:21;3008:5;3005:32;2995:60;;3051:1;3048;3041:12;3066:382;3131:6;3139;3192:2;3180:9;3171:7;3167:23;3163:32;3160:52;;;3208:1;3205;3198:12;3160:52;3247:9;3234:23;3266:31;3291:5;3266:31;:::i;:::-;3316:5;-1:-1:-1;3373:2:1;3358:18;;3345:32;3386:30;3345:32;3386:30;:::i;:::-;3435:7;3425:17;;;3066:382;;;;;:::o;3453:156::-;3519:20;;3579:4;3568:16;;3558:27;;3548:55;;3599:1;3596;3589:12;3548:55;3453:156;;;:::o;3614:252::-;3678:6;3686;3739:2;3727:9;3718:7;3714:23;3710:32;3707:52;;;3755:1;3752;3745:12;3707:52;3778:27;3795:9;3778:27;:::i;:::-;3768:37;;3824:36;3856:2;3845:9;3841:18;3824:36;:::i;:::-;3814:46;;3614:252;;;;;:::o;3871:388::-;3939:6;3947;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4055:9;4042:23;4074:31;4099:5;4074:31;:::i;:::-;4124:5;-1:-1:-1;4181:2:1;4166:18;;4153:32;4194:33;4153:32;4194:33;:::i;4264:380::-;4343:1;4339:12;;;;4386;;;4407:61;;4461:4;4453:6;4449:17;4439:27;;4407:61;4514:2;4506:6;4503:14;4483:18;4480:38;4477:161;;4560:10;4555:3;4551:20;4548:1;4541:31;4595:4;4592:1;4585:15;4623:4;4620:1;4613:15;4477:161;;4264:380;;;:::o;8524:245::-;8591:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:52;;;8660:1;8657;8650:12;8612:52;8692:9;8686:16;8711:28;8733:5;8711:28;:::i;9606:127::-;9667:10;9662:3;9658:20;9655:1;9648:31;9698:4;9695:1;9688:15;9722:4;9719:1;9712:15;9738:168;9811:9;;;9842;;9859:15;;;9853:22;;9839:37;9829:71;;9880:18;;:::i;9911:217::-;9951:1;9977;9967:132;;10021:10;10016:3;10012:20;10009:1;10002:31;10056:4;10053:1;10046:15;10084:4;10081:1;10074:15;9967:132;-1:-1:-1;10113:9:1;;9911:217::o;10133:128::-;10200:9;;;10221:11;;;10218:37;;;10235:18;;:::i;10266:125::-;10331:9;;;10352:10;;;10349:36;;;10365:18;;:::i;10887:127::-;10948:10;10943:3;10939:20;10936:1;10929:31;10979:4;10976:1;10969:15;11003:4;11000:1;10993:15;11019:251;11089:6;11142:2;11130:9;11121:7;11117:23;11113:32;11110:52;;;11158:1;11155;11148:12;11110:52;11190:9;11184:16;11209:31;11234:5;11209:31;:::i;11275:959::-;11537:4;11585:3;11574:9;11570:19;11616:6;11605:9;11598:25;11659:6;11654:2;11643:9;11639:18;11632:34;11702:3;11697:2;11686:9;11682:18;11675:31;11726:6;11761;11755:13;11792:6;11784;11777:22;11830:3;11819:9;11815:19;11808:26;;11869:2;11861:6;11857:15;11843:29;;11890:1;11900:195;11914:6;11911:1;11908:13;11900:195;;;11979:13;;-1:-1:-1;;;;;11975:39:1;11963:52;;12044:2;12070:15;;;;12035:12;;;;12011:1;11929:9;11900:195;;;-1:-1:-1;;;;;;;12151:32:1;;;;12146:2;12131:18;;12124:60;-1:-1:-1;;12215:3:1;12200:19;12193:35;12112:3;11275:959;-1:-1:-1;;;11275:959:1:o

Swarm Source

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