ETH Price: $3,117.89 (-5.52%)
 

Overview

Max Total Supply

1,000,000 $AILY

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: $AILY 2
Balance
0.000000024 $AILY

Value
$0.00
0x94fecdc5ac59c0704921f3bdb86e3d7716873692
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AILY

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-16
*/

/**

Telegram :https://t.me/AILoveYouERC
Website : https://ailoveyou.net/
Twitter : https://twitter.com/AILoveYouERC

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

        emit Transfer(from, to, amount);
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
 contract AILY is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "AI Love You";
    string private _symbol = "$AILY";
    uint8 private _decimals = 10;
    uint256 private _supply = 100000;
    uint256 public taxForLiquidity = 10;
    uint256 public taxForMarketing = 30;
    uint256 public maxTxAmount = 1000 * 10**_decimals;
    uint256 public maxWalletAmount = 1000 * 10**_decimals;
    address public marketingWallet = 0x7B7f48E3a47ffE255dbDA12d6BD0C653c2D27e30;
    address public autoLiquidityReceiver = 0x5DC9ABde03C73f4Eb7aD63AA9f69E39754BeFE1f;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 7000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 5000 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
        _isExcludedFromFee[autoLiquidityReceiver] = true;
    
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            autoLiquidityReceiver,
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }
    function changeLiquidityWallet(address newautoLWallet)
        public
        onlyOwner
        returns (bool)
    {
        autoLiquidityReceiver = newautoLWallet;
        return true;
    }
    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }
    function setIsExcludedFromFee(address account, bool newValue) public onlyOwner 
    {
        _isExcludedFromFee[account] = newValue;
        
        
        }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoLiquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newautoLWallet","type":"address"}],"name":"changeLiquidityWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newValue","type":"bool"}],"name":"setIsExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600b60c09081526a4149204c6f766520596f7560a81b60e0526006906200002d908262000682565b506040805180820190915260058152642441494c5960d81b602082015260079062000059908262000682565b506008805460ff1916600a908117909155620186a0600955808055601e600b5562000085908062000863565b62000093906103e86200087b565b600c55600854620000a99060ff16600a62000863565b620000b7906103e86200087b565b600d55600e80546001600160a01b0319908116737b7f48e3a47ffe255dbda12d6bd0c653c2d27e3017909155600f8054909116735dc9abde03c73f4eb7ad63aa9f69e39754befe1f17905560006010556008546200011a9060ff16600a62000863565b6200012890611b586200087b565b6012556008546200013e9060ff16600a62000863565b6200014c906113886200087b565b6013553480156200015c57600080fd5b50600680546200016c90620005f3565b80601f01602080910402602001604051908101604052809291908181526020018280546200019a90620005f3565b8015620001eb5780601f10620001bf57610100808354040283529160200191620001eb565b820191906000526020600020905b815481529060010190602001808311620001cd57829003601f168201915b505050505060078054620001ff90620005f3565b80601f01602080910402602001604051908101604052809291908181526020018280546200022d90620005f3565b80156200027e5780601f1062000252576101008083540402835291602001916200027e565b820191906000526020600020905b8154815290600101906020018083116200026057829003601f168201915b5050505050816003908162000294919062000682565b506004620002a3828262000682565b505050620002c0620002ba620004c160201b60201c565b620004c5565b600854620002ef903390620002da9060ff16600a62000863565b600954620002e991906200087b565b62000517565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000347573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036d91906200089d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e191906200089d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200042f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045591906200089d565b6001600160a01b0390811660a05290811660808190526000908152601160205260408082208054600160ff1991821681179092553384528284208054821683179055600e54851684528284208054821683179055600f54909416835291208054909216179055620008de565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620005869190620008c8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060857607f821691505b6020821081036200062957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067d57600081815260208120601f850160051c81016020861015620006585750805b601f850160051c820191505b81811015620006795782815560010162000664565b5050505b505050565b81516001600160401b038111156200069e576200069e620005dd565b620006b681620006af8454620005f3565b846200062f565b602080601f831160018114620006ee5760008415620006d55750858301515b600019600386901b1c1916600185901b17855562000679565b600085815260208120601f198616915b828110156200071f57888601518255948401946001909101908401620006fe565b50858210156200073e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007a55781600019048211156200078957620007896200074e565b808516156200079757918102915b93841c939080029062000769565b509250929050565b600082620007be575060016200085d565b81620007cd575060006200085d565b8160018114620007e65760028114620007f15762000811565b60019150506200085d565b60ff8411156200080557620008056200074e565b50506001821b6200085d565b5060208310610133831016604e8410600b841016171562000836575081810a6200085d565b62000842838362000764565b80600019048211156200085957620008596200074e565b0290505b92915050565b60006200087460ff841683620007ad565b9392505050565b60008160001904831182151516156200089857620008986200074e565b500290565b600060208284031215620008b057600080fd5b81516001600160a01b03811681146200087457600080fd5b808201808211156200085d576200085d6200074e565b60805160a05161181d62000943600039600081816102fb01528181610b2601528181610b6101528181610bab0152610d7a0152600081816102340152818161108e01528181611147015281816111760152818161130b0152611373015261181d6000f3fe6080604052600436106101bb5760003560e01c806381bfdcca116100ec578063af8af6901161008a578063dd62ed3e11610064578063dd62ed3e146104ff578063ef422a181461051f578063f2fde38b1461053f578063f345bd851461055f57600080fd5b8063af8af6901461049f578063bb85c6d1146104bf578063ca33e64c146104df57600080fd5b806395d89b41116100c657806395d89b4114610434578063a457c2d714610449578063a9059cbb14610469578063aa4bde281461048957600080fd5b806381bfdcca146103e05780638c0b5e22146104005780638da5cb5b1461041657600080fd5b806349bd5a5e1161015957806370a082311161013357806370a0823114610353578063715018a61461038957806375f0a874146103a05780637ba54f1f146103c057600080fd5b806349bd5a5e146102e9578063527ffabd1461031d578063677daa571461033357600080fd5b806318160ddd1161019557806318160ddd1461026e57806323b872dd1461028d578063313ce567146102ad57806339509351146102c957600080fd5b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610575565b6040516101e991906113f5565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611458565b610607565b60405190151581526020016101e9565b34801561022e57600080fd5b506102567f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101e9565b34801561027a57600080fd5b506002545b6040519081526020016101e9565b34801561029957600080fd5b506102126102a8366004611484565b610621565b3480156102b957600080fd5b50604051600981526020016101e9565b3480156102d557600080fd5b506102126102e4366004611458565b610645565b3480156102f557600080fd5b506102567f000000000000000000000000000000000000000000000000000000000000000081565b34801561032957600080fd5b5061027f600b5481565b34801561033f57600080fd5b5061021261034e3660046114c5565b610667565b34801561035f57600080fd5b5061027f61036e3660046114de565b6001600160a01b031660009081526020819052604090205490565b34801561039557600080fd5b5061039e61067a565b005b3480156103ac57600080fd5b50600e54610256906001600160a01b031681565b3480156103cc57600080fd5b506102126103db3660046114de565b61068e565b3480156103ec57600080fd5b506102126103fb3660046114c5565b6106bd565b34801561040c57600080fd5b5061027f600c5481565b34801561042257600080fd5b506005546001600160a01b0316610256565b34801561044057600080fd5b506101dc6106d0565b34801561045557600080fd5b50610212610464366004611458565b6106df565b34801561047557600080fd5b50610212610484366004611458565b61075f565b34801561049557600080fd5b5061027f600d5481565b3480156104ab57600080fd5b506102126104ba366004611502565b61076d565b3480156104cb57600080fd5b506102126104da3660046114de565b6107f6565b3480156104eb57600080fd5b50600f54610256906001600160a01b031681565b34801561050b57600080fd5b5061027f61051a366004611524565b610825565b34801561052b57600080fd5b5061039e61053a36600461155d565b610850565b34801561054b57600080fd5b5061039e61055a3660046114de565b610883565b34801561056b57600080fd5b5061027f600a5481565b60606003805461058490611590565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611590565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000336106158185856108fc565b60019150505b92915050565b60003361062f858285610a20565b61063a858585610a9a565b506001949350505050565b6000336106158185856106588383610825565b61066291906115e0565b6108fc565b6000610671610ee0565b50600c55600190565b610682610ee0565b61068c6000610f3a565b565b6000610698610ee0565b50600f80546001600160a01b0383166001600160a01b03199091161790556001919050565b60006106c7610ee0565b50600d55600190565b60606004805461058490611590565b600033816106ed8286610825565b9050838110156107525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61063a82868684036108fc565b600033610615818585610a9a565b6000610777610ee0565b606461078383856115e0565b11156107e75760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610749565b50600a91909155600b55600190565b6000610800610ee0565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610858610ee0565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b61088b610ee0565b6001600160a01b0381166108f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610749565b6108f981610f3a565b50565b6001600160a01b03831661095e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610749565b6001600160a01b0382166109bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610749565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a2c8484610825565b90506000198114610a945781811015610a875760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610749565b610a9484848484036108fc565b50505050565b6001600160a01b038316610ac05760405162461bcd60e51b8152600401610749906115f3565b6001600160a01b038216610ae65760405162461bcd60e51b815260040161074990611638565b80610b06846001600160a01b031660009081526020819052604090205490565b1015610b245760405162461bcd60e51b81526004016107499061167b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610b9557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610ba4575060145460ff16155b15610ed0577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610cb557601054306000908152602081905260408120549091610c00916116c1565b90506012548110610c1657610c16601254610f8c565b60135460105410610cb357610c2c60135461102a565b60135460106000828254610c4091906116c1565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610cb15760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610749565b505b505b6001600160a01b03831660009081526011602052604081205460ff1680610cf457506001600160a01b03831660009081526011602052604090205460ff165b15610d00575080610ec5565b600c54821115610d785760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610749565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610e4457600d546001600160a01b038416600090815260208190526040902054610dd790846115e0565b1115610e445760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610749565b60006064600b5484610e5691906116d4565b610e6091906116f3565b905060006064600a5485610e7491906116d4565b610e7e91906116f3565b9050610e8a81836115e0565b610e9490856116c1565b92508160106000828254610ea891906115e0565b90915550610ec290508630610ebd84866115e0565b61120c565b50505b610a9484848361120c565b610edb83838361120c565b505050565b6005546001600160a01b0316331461068c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610749565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6014805460ff191660011790556000610fa66002836116f3565b90506000610fb482846116c1565b905047610fc08361102a565b6000610fcc82476116c1565b9050610fd883826112f8565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506014805460ff19169055505050565b6014805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061106c5761106c611715565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110e919061172b565b8160018151811061112157611121611715565b60200260200101906001600160a01b031690816001600160a01b03168152505061116c307f0000000000000000000000000000000000000000000000000000000000000000846108fc565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306111ac4261012c6115e0565b6040518663ffffffff1660e01b81526004016111cc959493929190611748565b600060405180830381600087803b1580156111e657600080fd5b505af11580156111fa573d6000803e3d6000fd5b50506014805460ff1916905550505050565b6001600160a01b0383166112325760405162461bcd60e51b8152600401610749906115f3565b6001600160a01b0382166112585760405162461bcd60e51b815260040161074990611638565b6001600160a01b038316600090815260208190526040902054818110156112915760405162461bcd60e51b81526004016107499061167b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6014805460ff19166001179055611330307f0000000000000000000000000000000000000000000000000000000000000000846108fc565b600f5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156113bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113e491906117b9565b50506014805460ff19169055505050565b600060208083528351808285015260005b8181101561142257858101830151858201604001528201611406565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108f957600080fd5b6000806040838503121561146b57600080fd5b823561147681611443565b946020939093013593505050565b60008060006060848603121561149957600080fd5b83356114a481611443565b925060208401356114b481611443565b929592945050506040919091013590565b6000602082840312156114d757600080fd5b5035919050565b6000602082840312156114f057600080fd5b81356114fb81611443565b9392505050565b6000806040838503121561151557600080fd5b50508035926020909101359150565b6000806040838503121561153757600080fd5b823561154281611443565b9150602083013561155281611443565b809150509250929050565b6000806040838503121561157057600080fd5b823561157b81611443565b91506020830135801515811461155257600080fd5b600181811c908216806115a457607f821691505b6020821081036115c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561061b5761061b6115ca565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561061b5761061b6115ca565b60008160001904831182151516156116ee576116ee6115ca565b500290565b60008261171057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561173d57600080fd5b81516114fb81611443565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117985784516001600160a01b031683529383019391830191600101611773565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156117ce57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122075267db67d397a068a82e66880b56391d14681d49c3e1c5c18a4fe88f3d695ba64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806381bfdcca116100ec578063af8af6901161008a578063dd62ed3e11610064578063dd62ed3e146104ff578063ef422a181461051f578063f2fde38b1461053f578063f345bd851461055f57600080fd5b8063af8af6901461049f578063bb85c6d1146104bf578063ca33e64c146104df57600080fd5b806395d89b41116100c657806395d89b4114610434578063a457c2d714610449578063a9059cbb14610469578063aa4bde281461048957600080fd5b806381bfdcca146103e05780638c0b5e22146104005780638da5cb5b1461041657600080fd5b806349bd5a5e1161015957806370a082311161013357806370a0823114610353578063715018a61461038957806375f0a874146103a05780637ba54f1f146103c057600080fd5b806349bd5a5e146102e9578063527ffabd1461031d578063677daa571461033357600080fd5b806318160ddd1161019557806318160ddd1461026e57806323b872dd1461028d578063313ce567146102ad57806339509351146102c957600080fd5b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610575565b6040516101e991906113f5565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611458565b610607565b60405190151581526020016101e9565b34801561022e57600080fd5b506102567f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101e9565b34801561027a57600080fd5b506002545b6040519081526020016101e9565b34801561029957600080fd5b506102126102a8366004611484565b610621565b3480156102b957600080fd5b50604051600981526020016101e9565b3480156102d557600080fd5b506102126102e4366004611458565b610645565b3480156102f557600080fd5b506102567f00000000000000000000000094fecdc5ac59c0704921f3bdb86e3d771687369281565b34801561032957600080fd5b5061027f600b5481565b34801561033f57600080fd5b5061021261034e3660046114c5565b610667565b34801561035f57600080fd5b5061027f61036e3660046114de565b6001600160a01b031660009081526020819052604090205490565b34801561039557600080fd5b5061039e61067a565b005b3480156103ac57600080fd5b50600e54610256906001600160a01b031681565b3480156103cc57600080fd5b506102126103db3660046114de565b61068e565b3480156103ec57600080fd5b506102126103fb3660046114c5565b6106bd565b34801561040c57600080fd5b5061027f600c5481565b34801561042257600080fd5b506005546001600160a01b0316610256565b34801561044057600080fd5b506101dc6106d0565b34801561045557600080fd5b50610212610464366004611458565b6106df565b34801561047557600080fd5b50610212610484366004611458565b61075f565b34801561049557600080fd5b5061027f600d5481565b3480156104ab57600080fd5b506102126104ba366004611502565b61076d565b3480156104cb57600080fd5b506102126104da3660046114de565b6107f6565b3480156104eb57600080fd5b50600f54610256906001600160a01b031681565b34801561050b57600080fd5b5061027f61051a366004611524565b610825565b34801561052b57600080fd5b5061039e61053a36600461155d565b610850565b34801561054b57600080fd5b5061039e61055a3660046114de565b610883565b34801561056b57600080fd5b5061027f600a5481565b60606003805461058490611590565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611590565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000336106158185856108fc565b60019150505b92915050565b60003361062f858285610a20565b61063a858585610a9a565b506001949350505050565b6000336106158185856106588383610825565b61066291906115e0565b6108fc565b6000610671610ee0565b50600c55600190565b610682610ee0565b61068c6000610f3a565b565b6000610698610ee0565b50600f80546001600160a01b0383166001600160a01b03199091161790556001919050565b60006106c7610ee0565b50600d55600190565b60606004805461058490611590565b600033816106ed8286610825565b9050838110156107525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61063a82868684036108fc565b600033610615818585610a9a565b6000610777610ee0565b606461078383856115e0565b11156107e75760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b6064820152608401610749565b50600a91909155600b55600190565b6000610800610ee0565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610858610ee0565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b61088b610ee0565b6001600160a01b0381166108f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610749565b6108f981610f3a565b50565b6001600160a01b03831661095e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610749565b6001600160a01b0382166109bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610749565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a2c8484610825565b90506000198114610a945781811015610a875760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610749565b610a9484848484036108fc565b50505050565b6001600160a01b038316610ac05760405162461bcd60e51b8152600401610749906115f3565b6001600160a01b038216610ae65760405162461bcd60e51b815260040161074990611638565b80610b06846001600160a01b031660009081526020819052604090205490565b1015610b245760405162461bcd60e51b81526004016107499061167b565b7f00000000000000000000000094fecdc5ac59c0704921f3bdb86e3d77168736926001600160a01b0316836001600160a01b03161480610b9557507f00000000000000000000000094fecdc5ac59c0704921f3bdb86e3d77168736926001600160a01b0316826001600160a01b0316145b8015610ba4575060145460ff16155b15610ed0577f00000000000000000000000094fecdc5ac59c0704921f3bdb86e3d77168736926001600160a01b0316836001600160a01b031614610cb557601054306000908152602081905260408120549091610c00916116c1565b90506012548110610c1657610c16601254610f8c565b60135460105410610cb357610c2c60135461102a565b60135460106000828254610c4091906116c1565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610cb15760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610749565b505b505b6001600160a01b03831660009081526011602052604081205460ff1680610cf457506001600160a01b03831660009081526011602052604090205460ff165b15610d00575080610ec5565b600c54821115610d785760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610749565b7f00000000000000000000000094fecdc5ac59c0704921f3bdb86e3d77168736926001600160a01b0316846001600160a01b031603610e4457600d546001600160a01b038416600090815260208190526040902054610dd790846115e0565b1115610e445760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610749565b60006064600b5484610e5691906116d4565b610e6091906116f3565b905060006064600a5485610e7491906116d4565b610e7e91906116f3565b9050610e8a81836115e0565b610e9490856116c1565b92508160106000828254610ea891906115e0565b90915550610ec290508630610ebd84866115e0565b61120c565b50505b610a9484848361120c565b610edb83838361120c565b505050565b6005546001600160a01b0316331461068c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610749565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6014805460ff191660011790556000610fa66002836116f3565b90506000610fb482846116c1565b905047610fc08361102a565b6000610fcc82476116c1565b9050610fd883826112f8565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506014805460ff19169055505050565b6014805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061106c5761106c611715565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110e919061172b565b8160018151811061112157611121611715565b60200260200101906001600160a01b031690816001600160a01b03168152505061116c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108fc565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306111ac4261012c6115e0565b6040518663ffffffff1660e01b81526004016111cc959493929190611748565b600060405180830381600087803b1580156111e657600080fd5b505af11580156111fa573d6000803e3d6000fd5b50506014805460ff1916905550505050565b6001600160a01b0383166112325760405162461bcd60e51b8152600401610749906115f3565b6001600160a01b0382166112585760405162461bcd60e51b815260040161074990611638565b6001600160a01b038316600090815260208190526040902054818110156112915760405162461bcd60e51b81526004016107499061167b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6014805460ff19166001179055611330307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108fc565b600f5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156113bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113e491906117b9565b50506014805460ff19169055505050565b600060208083528351808285015260005b8181101561142257858101830151858201604001528201611406565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108f957600080fd5b6000806040838503121561146b57600080fd5b823561147681611443565b946020939093013593505050565b60008060006060848603121561149957600080fd5b83356114a481611443565b925060208401356114b481611443565b929592945050506040919091013590565b6000602082840312156114d757600080fd5b5035919050565b6000602082840312156114f057600080fd5b81356114fb81611443565b9392505050565b6000806040838503121561151557600080fd5b50508035926020909101359150565b6000806040838503121561153757600080fd5b823561154281611443565b9150602083013561155281611443565b809150509250929050565b6000806040838503121561157057600080fd5b823561157b81611443565b91506020830135801515811461155257600080fd5b600181811c908216806115a457607f821691505b6020821081036115c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561061b5761061b6115ca565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561061b5761061b6115ca565b60008160001904831182151516156116ee576116ee6115ca565b500290565b60008261171057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561173d57600080fd5b81516114fb81611443565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117985784516001600160a01b031683529383019391830191600101611773565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156117ce57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122075267db67d397a068a82e66880b56391d14681d49c3e1c5c18a4fe88f3d695ba64736f6c63430008100033

Deployed Bytecode Sourcemap

28275:7733:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17993:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20267:244;;;;;;;;;;-1:-1:-1;20267:244:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20267:244:0;1023:187:1;29012:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;29012:51:0;1215:229:1;19131:110:0;;;;;;;;;;-1:-1:-1;19221:12:0;;19131:110;;;1595:25:1;;;1583:2;1568:18;19131:110:0;1449:177:1;21091:297:0;;;;;;;;;;-1:-1:-1;21091:297:0;;;;;:::i;:::-;;:::i;18974:92::-;;;;;;;;;;-1:-1:-1;18974:92:0;;19057:1;2234:36:1;;2222:2;2207:18;18974:92:0;2092:184:1;22807:272:0;;;;;;;;;;-1:-1:-1;22807:272:0;;;;;:::i;:::-;;:::i;29070:38::-;;;;;;;;;;;;;;;28597:35;;;;;;;;;;;;;;;;35580:182;;;;;;;;;;-1:-1:-1;35580:182:0;;;;;:::i;:::-;;:::i;18158:177::-;;;;;;;;;;-1:-1:-1;18158:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18309:18:0;18277:7;18309:18;;;;;;;;;;;;18158:177;15252:103;;;;;;;;;;;;;:::i;:::-;;28755:75;;;;;;;;;;-1:-1:-1;28755:75:0;;;;-1:-1:-1;;;;;28755:75:0;;;34804:198;;;;;;;;;;-1:-1:-1;34804:198:0;;;;;:::i;:::-;;:::i;35770:::-;;;;;;;;;;-1:-1:-1;35770:198:0;;;;;:::i;:::-;;:::i;28639:49::-;;;;;;;;;;;;;;;;14604:87;;;;;;;;;;-1:-1:-1;14677:6:0;;-1:-1:-1;;;;;14677:6:0;14604:87;;17817:106;;;;;;;;;;;;;:::i;21891:507::-;;;;;;;;;;-1:-1:-1;21891:507:0;;;;;:::i;:::-;;:::i;19711:236::-;;;;;;;;;;-1:-1:-1;19711:236:0;;;;;:::i;:::-;;:::i;28695:53::-;;;;;;;;;;;;;;;;35008:392;;;;;;;;;;-1:-1:-1;35008:392:0;;;;;:::i;:::-;;:::i;34616:182::-;;;;;;;;;;-1:-1:-1;34616:182:0;;;;;:::i;:::-;;:::i;28837:81::-;;;;;;;;;;-1:-1:-1;28837:81:0;;;;-1:-1:-1;;;;;28837:81:0;;;19304:201;;;;;;;;;;-1:-1:-1;19304:201:0;;;;;:::i;:::-;;:::i;35406:166::-;;;;;;;;;;-1:-1:-1;35406:166:0;;;;;:::i;:::-;;:::i;15510:238::-;;;;;;;;;;-1:-1:-1;15510:238:0;;;;;:::i;:::-;;:::i;28555:35::-;;;;;;;;;;;;;;;;17993:102;18049:13;18082:5;18075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17993:102;:::o;20267:244::-;20388:4;13477:10;20449:32;13477:10;20465:7;20474:6;20449:8;:32::i;:::-;20499:4;20492:11;;;20267:244;;;;;:::o;21091:297::-;21224:4;13477:10;21282:38;21298:4;13477:10;21313:6;21282:15;:38::i;:::-;21331:27;21341:4;21347:2;21351:6;21331:9;:27::i;:::-;-1:-1:-1;21376:4:0;;21091:297;-1:-1:-1;;;;21091:297:0:o;22807:272::-;22924:4;13477:10;22985:64;13477:10;23001:7;23038:10;23010:25;13477:10;23001:7;23010:9;:25::i;:::-;:38;;;;:::i;:::-;22985:8;:64::i;35580:182::-;35682:4;14490:13;:11;:13::i;:::-;-1:-1:-1;35704:11:0::1;:26:::0;35750:4:::1;::::0;35580:182::o;15252:103::-;14490:13;:11;:13::i;:::-;15317:30:::1;15344:1;15317:18;:30::i;:::-;15252:103::o:0;34804:198::-;34912:4;14490:13;:11;:13::i;:::-;-1:-1:-1;34934:21:0::1;:38:::0;;-1:-1:-1;;;;;34934:38:0;::::1;-1:-1:-1::0;;;;;;34934:38:0;;::::1;;::::0;;;34804:198;;;:::o;35770:::-;35880:4;14490:13;:11;:13::i;:::-;-1:-1:-1;35902:15:0::1;:34:::0;35956:4:::1;::::0;35770:198::o;17817:106::-;17875:13;17908:7;17901:14;;;;;:::i;21891:507::-;22013:4;13477:10;22013:4;22101:25;13477:10;22118:7;22101:9;:25::i;:::-;22074:52;;22179:15;22159:16;:35;;22137:122;;;;-1:-1:-1;;;22137:122:0;;4842:2:1;22137:122:0;;;4824:21:1;4881:2;4861:18;;;4854:30;4920:34;4900:18;;;4893:62;-1:-1:-1;;;4971:18:1;;;4964:35;5016:19;;22137:122:0;;;;;;;;;22295:60;22304:5;22311:7;22339:15;22320:16;:34;22295:8;:60::i;19711:236::-;19828:4;13477:10;19889:28;13477:10;19906:2;19910:6;19889:9;:28::i;35008:392::-;35156:4;14490:13;:11;:13::i;:::-;35225:3:::1;35187:33;35204:16:::0;35187;:33:::1;:::i;:::-;35186:42;;35178:100;;;::::0;-1:-1:-1;;;35178:100:0;;5248:2:1;35178:100:0::1;::::0;::::1;5230:21:1::0;5287:2;5267:18;;;5260:30;5326:34;5306:18;;;5299:62;-1:-1:-1;;;5377:18:1;;;5370:43;5430:19;;35178:100:0::1;5046:409:1::0;35178:100:0::1;-1:-1:-1::0;35289:15:0::1;:34:::0;;;;35334:15:::1;:34:::0;35388:4:::1;::::0;35008:392::o;34616:182::-;34719:4;14490:13;:11;:13::i;:::-;-1:-1:-1;34741:15:0::1;:27:::0;;-1:-1:-1;;;;;34741:27:0;::::1;-1:-1:-1::0;;;;;;34741:27:0;;::::1;;::::0;;;34616:182;;;:::o;19304:201::-;-1:-1:-1;;;;;19470:18:0;;;19438:7;19470:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19304:201::o;35406:166::-;14490:13;:11;:13::i;:::-;-1:-1:-1;;;;;35502:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;35502:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35406:166::o;15510:238::-;14490:13;:11;:13::i;:::-;-1:-1:-1;;;;;15613:22:0;::::1;15591:110;;;::::0;-1:-1:-1;;;15591:110:0;;5662:2:1;15591:110:0::1;::::0;::::1;5644:21:1::0;5701:2;5681:18;;;5674:30;5740:34;5720:18;;;5713:62;-1:-1:-1;;;5791:18:1;;;5784:36;5837:19;;15591:110:0::1;5460:402:1::0;15591:110:0::1;15712:28;15731:8;15712:18;:28::i;:::-;15510:238:::0;:::o;25114:380::-;-1:-1:-1;;;;;25250:19:0;;25242:68;;;;-1:-1:-1;;;25242:68:0;;6069:2:1;25242:68:0;;;6051:21:1;6108:2;6088:18;;;6081:30;6147:34;6127:18;;;6120:62;-1:-1:-1;;;6198:18:1;;;6191:34;6242:19;;25242:68:0;5867:400:1;25242:68:0;-1:-1:-1;;;;;25329:21:0;;25321:68;;;;-1:-1:-1;;;25321:68:0;;6474:2:1;25321:68:0;;;6456:21:1;6513:2;6493:18;;;6486:30;6552:34;6532:18;;;6525:62;-1:-1:-1;;;6603:18:1;;;6596:32;6645:19;;25321:68:0;6272:398:1;25321:68:0;-1:-1:-1;;;;;25402:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25454:32;;1595:25:1;;;25454:32:0;;1568:18:1;25454:32:0;;;;;;;25114:380;;;:::o;25785:502::-;25920:24;25947:25;25957:5;25964:7;25947:9;:25::i;:::-;25920:52;;-1:-1:-1;;25987:16:0;:37;25983:297;;26087:6;26067:16;:26;;26041:117;;;;-1:-1:-1;;;26041:117:0;;6877:2:1;26041:117:0;;;6859:21:1;6916:2;6896:18;;;6889:30;6955:31;6935:18;;;6928:59;7004:18;;26041:117:0;6675:353:1;26041:117:0;26202:51;26211:5;26218:7;26246:6;26227:16;:25;26202:8;:51::i;:::-;25909:378;25785:502;;;:::o;31053:2149::-;-1:-1:-1;;;;;31151:18:0;;31143:68;;;;-1:-1:-1;;;31143:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31230:16:0;;31222:64;;;;-1:-1:-1;;;31222:64:0;;;;;;;:::i;:::-;31324:6;31305:15;31315:4;-1:-1:-1;;;;;18309:18:0;18277:7;18309:18;;;;;;;;;;;;18158:177;31305:15;:25;;31297:76;;;;-1:-1:-1;;;31297:76:0;;;;;;;:::i;:::-;31399:13;-1:-1:-1;;;;;31391:21:0;:4;-1:-1:-1;;;;;31391:21:0;;:44;;;;31422:13;-1:-1:-1;;;;;31416:19:0;:2;-1:-1:-1;;;;;31416:19:0;;31391:44;31390:67;;;;-1:-1:-1;31441:16:0;;;;31440:17;31390:67;31386:1809;;;31486:13;-1:-1:-1;;;;;31478:21:0;:4;-1:-1:-1;;;;;31478:21:0;;31474:686;;31582:18;;31573:4;31520:32;18309:18;;;;;;;;;;;31520:32;;31555:45;;;:::i;:::-;31520:80;;31651:30;;31623:24;:58;31619:154;;31706:47;31722:30;;31706:15;:47::i;:::-;31819:24;;31796:18;;31795:48;31791:354;;31868:43;31886:24;;31868:17;:43::i;:::-;31956:24;;31934:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;32023:15:0;;32015:52;;32003:9;;-1:-1:-1;;;;;32023:15:0;;32045:21;32015:52;;;;;32003:9;32015:52;32003:9;32015:52;32045:21;32023:15;32015:52;;;;;;;32003:64;;32098:4;32090:35;;;;-1:-1:-1;;;32090:35:0;;8585:2:1;32090:35:0;;;8567:21:1;8624:2;8604:18;;;8597:30;-1:-1:-1;;;8643:18:1;;;8636:48;8701:18;;32090:35:0;8383:342:1;32090:35:0;31845:300;31791:354;31501:659;31474:686;-1:-1:-1;;;;;32217:24:0;;32176:22;32217:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32245:22:0;;;;;;:18;:22;;;;;;;;32217:50;32213:839;;;-1:-1:-1;32305:6:0;32213:839;;;32384:11;;32374:6;:21;;32366:91;;;;-1:-1:-1;;;32366:91:0;;8932:2:1;32366:91:0;;;8914:21:1;8971:2;8951:18;;;8944:30;9010:34;8990:18;;;8983:62;9081:27;9061:18;;;9054:55;9126:19;;32366:91:0;8730:421:1;32366:91:0;32487:13;-1:-1:-1;;;;;32479:21:0;:4;-1:-1:-1;;;;;32479:21:0;;32476:178;;32560:15;;-1:-1:-1;;;;;18309:18:0;;18277:7;18309:18;;;;;;;;;;;32533:22;;:6;:22;:::i;:::-;32532:43;;32524:110;;;;-1:-1:-1;;;32524:110:0;;9358:2:1;32524:110:0;;;9340:21:1;9397:2;9377:18;;;9370:30;9436:34;9416:18;;;9409:62;-1:-1:-1;;;9487:18:1;;;9480:52;9549:19;;32524:110:0;9156:418:1;32524:110:0;32674:22;32729:3;32710:15;;32701:6;:24;;;;:::i;:::-;32700:32;;;;:::i;:::-;32674:59;;32752:22;32807:3;32788:15;;32779:6;:24;;;;:::i;:::-;32778:32;;;;:::i;:::-;32752:59;-1:-1:-1;32857:31:0;32752:59;32857:14;:31;:::i;:::-;32847:42;;:6;:42;:::i;:::-;32830:59;;32930:14;32908:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32965:71:0;;-1:-1:-1;32981:4:0;32995;33003:31;33020:14;33003;:31;:::i;:::-;32965:15;:71::i;:::-;32347:705;;32213:839;33066:41;33082:4;33088:2;33092:14;33066:15;:41::i;31386:1809::-;33150:33;33166:4;33172:2;33176:6;33150:15;:33::i;:::-;31053:2149;;;:::o;14769:132::-;14677:6;;-1:-1:-1;;;;;14677:6:0;13477:10;14833:23;14825:68;;;;-1:-1:-1;;;14825:68:0;;10176:2:1;14825:68:0;;;10158:21:1;;;10195:18;;;10188:30;10254:34;10234:18;;;10227:62;10306:18;;14825:68:0;9974:356:1;15908:191:0;16001:6;;;-1:-1:-1;;;;;16018:17:0;;;-1:-1:-1;;;;;;16018:17:0;;;;;;;16051:40;;16001:6;;;16018:17;16001:6;;16051:40;;15982:16;;16051:40;15971:128;15908:191;:::o;33210:474::-;29565:16;:23;;-1:-1:-1;;29565:23:0;29584:4;29565:23;;;:16;33312:24:::1;33335:1;33312:20:::0;:24:::1;:::i;:::-;33296:41:::0;-1:-1:-1;33348:17:0::1;33369:27;33296:41:::0;33369:20;:27:::1;:::i;:::-;33348:49:::0;-1:-1:-1;33435:21:0::1;33469:23;33487:4:::0;33469:17:::1;:23::i;:::-;33505:18;33527:38;33551:14:::0;33527:21:::1;:38;:::i;:::-;33505:61;;33579:36;33593:9;33604:10;33579:13;:36::i;:::-;33633:43;::::0;;10537:25:1;;;10593:2;10578:18;;10571:34;;;10621:18;;;10614:34;;;33633:43:0::1;::::0;10525:2:1;10510:18;33633:43:0::1;;;;;;;-1:-1:-1::0;;29611:16:0;:24;;-1:-1:-1;;29611:24:0;;;-1:-1:-1;;;33210:474:0:o;33692:496::-;29565:16;:23;;-1:-1:-1;;29565:23:0;29584:4;29565:23;;;33795:16:::1;::::0;;33809:1:::1;33795:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33795:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33795:16:0::1;33771:40;;33840:4;33822;33827:1;33822:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33822:23:0::1;;;-1:-1:-1::0;;;;;33822:23:0::1;;;::::0;::::1;33866:15;-1:-1:-1::0;;;;;33866:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33856:4;33861:1;33856:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33856:32:0::1;;;-1:-1:-1::0;;;;;33856:32:0::1;;;::::0;::::1;33901:62;33918:4;33933:15;33951:11;33901:8;:62::i;:::-;-1:-1:-1::0;;;;;33976:15:0::1;:66;;34057:11:::0;34083:1:::1;34099:4:::0;34126::::1;34147:21;:15;34165:3;34147:21;:::i;:::-;33976:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29611:16:0;:24;;-1:-1:-1;;29611:24:0;;;-1:-1:-1;;;;33692:496:0:o;26295:776::-;-1:-1:-1;;;;;26426:18:0;;26418:68;;;;-1:-1:-1;;;26418:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26505:16:0;;26497:64;;;;-1:-1:-1;;;26497:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26596:15:0;;26574:19;26596:15;;;;;;;;;;;26644:21;;;;26622:109;;;;-1:-1:-1;;;26622:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26767:15:0;;;:9;:15;;;;;;;;;;;26785:20;;;26767:38;;26985:13;;;;;;;;;;:23;;;;;;27037:26;;1595:25:1;;;26985:13:0;;27037:26;;1568:18:1;27037:26:0;;;;;;;26407:664;26295:776;;;:::o;34196:412::-;29565:16;:23;;-1:-1:-1;;29565:23:0;29584:4;29565:23;;;34313:62:::1;34330:4;34345:15;34363:11:::0;34313:8:::1;:62::i;:::-;34538:21;::::0;34388:212:::1;::::0;-1:-1:-1;;;34388:212:0;;34460:4:::1;34388:212;::::0;::::1;12505:34:1::0;12555:18;;;12548:34;;;34506:1:0::1;12598:18:1::0;;;12591:34;;;12641:18;;;12634:34;-1:-1:-1;;;;;34538:21:0;;::::1;12684:19:1::0;;;12677:44;34574:15:0::1;12737:19:1::0;;;12730:35;34388:15:0::1;:31:::0;;::::1;::::0;::::1;::::0;34427:9;;12439:19:1;;34388:212:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29611:16:0;:24;;-1:-1:-1;;29611:24:0;;;-1:-1:-1;;;34196:412:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:180::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;-1:-1:-1;2640:23:1;;2489:180;-1:-1:-1;2489:180:1:o;2674:247::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2841:9;2828:23;2860:31;2885:5;2860:31;:::i;:::-;2910:5;2674:247;-1:-1:-1;;;2674:247:1:o;2926:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:388::-;3247:6;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:31;3407:5;3382:31;:::i;:::-;3432:5;-1:-1:-1;3489:2:1;3474:18;;3461:32;3502:33;3461:32;3502:33;:::i;:::-;3554:7;3544:17;;;3179:388;;;;;:::o;3572:416::-;3637:6;3645;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;3753:9;3740:23;3772:31;3797:5;3772:31;:::i;:::-;3822:5;-1:-1:-1;3879:2:1;3864:18;;3851:32;3921:15;;3914:23;3902:36;;3892:64;;3952:1;3949;3942:12;3993:380;4072:1;4068:12;;;;4115;;;4136:61;;4190:4;4182:6;4178:17;4168:27;;4136:61;4243:2;4235:6;4232:14;4212:18;4209:38;4206:161;;4289:10;4284:3;4280:20;4277:1;4270:31;4324:4;4321:1;4314:15;4352:4;4349:1;4342:15;4206:161;;3993:380;;;:::o;4378:127::-;4439:10;4434:3;4430:20;4427:1;4420:31;4470:4;4467:1;4460:15;4494:4;4491:1;4484:15;4510:125;4575:9;;;4596:10;;;4593:36;;;4609:18;;:::i;7033:401::-;7235:2;7217:21;;;7274:2;7254:18;;;7247:30;7313:34;7308:2;7293:18;;7286:62;-1:-1:-1;;;7379:2:1;7364:18;;7357:35;7424:3;7409:19;;7033:401::o;7439:399::-;7641:2;7623:21;;;7680:2;7660:18;;;7653:30;7719:34;7714:2;7699:18;;7692:62;-1:-1:-1;;;7785:2:1;7770:18;;7763:33;7828:3;7813:19;;7439:399::o;7843:402::-;8045:2;8027:21;;;8084:2;8064:18;;;8057:30;8123:34;8118:2;8103:18;;8096:62;-1:-1:-1;;;8189:2:1;8174:18;;8167:36;8235:3;8220:19;;7843:402::o;8250:128::-;8317:9;;;8338:11;;;8335:37;;;8352:18;;:::i;9579:168::-;9619:7;9685:1;9681;9677:6;9673:14;9670:1;9667:21;9662:1;9655:9;9648:17;9644:45;9641:71;;;9692:18;;:::i;:::-;-1:-1:-1;9732:9:1;;9579:168::o;9752:217::-;9792:1;9818;9808:132;;9862:10;9857:3;9853:20;9850:1;9843:31;9897:4;9894:1;9887:15;9925:4;9922:1;9915:15;9808:132;-1:-1:-1;9954:9:1;;9752:217::o;10791:127::-;10852:10;10847:3;10843:20;10840:1;10833:31;10883:4;10880:1;10873:15;10907:4;10904:1;10897:15;10923:251;10993:6;11046:2;11034:9;11025:7;11021:23;11017:32;11014:52;;;11062:1;11059;11052:12;11014:52;11094:9;11088:16;11113:31;11138:5;11113:31;:::i;11179:980::-;11441:4;11489:3;11478:9;11474:19;11520:6;11509:9;11502:25;11546:2;11584:6;11579:2;11568:9;11564:18;11557:34;11627:3;11622:2;11611:9;11607:18;11600:31;11651:6;11686;11680:13;11717:6;11709;11702:22;11755:3;11744:9;11740:19;11733:26;;11794:2;11786:6;11782:15;11768:29;;11815:1;11825:195;11839:6;11836:1;11833:13;11825:195;;;11904:13;;-1:-1:-1;;;;;11900:39:1;11888:52;;11995:15;;;;11960:12;;;;11936:1;11854:9;11825:195;;;-1:-1:-1;;;;;;;12076:32:1;;;;12071:2;12056:18;;12049:60;-1:-1:-1;;;12140:3:1;12125:19;12118:35;12037:3;11179:980;-1:-1:-1;;;11179:980:1:o;12776:306::-;12864:6;12872;12880;12933:2;12921:9;12912:7;12908:23;12904:32;12901:52;;;12949:1;12946;12939:12;12901:52;12978:9;12972:16;12962:26;;13028:2;13017:9;13013:18;13007:25;12997:35;;13072:2;13061:9;13057:18;13051:25;13041:35;;12776:306;;;;;:::o

Swarm Source

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