ETH Price: $3,454.47 (-0.76%)
Gas: 10 Gwei

Token

AI Girlfriend (AIGF)
 

Overview

Max Total Supply

100,000,000 AIGF

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
50,645.11673645 AIGF

Value
$0.00
0x2b6688583bc895a3b509b1d990210fc87009e002
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:
AIGF

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 2022-12-12
*/

/**

Meet your new AI Girlfriend. 
Always by your side, make sure to treat her right!
Add her to your group: @AIGirlfriend_bot

 • TG: https://t.me/aigfeth
 • Web: https://aigirlfriend.io
 • Twitter: https://twitter.com/aigfeth 

*/

// 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 AIGF is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "AI Girlfriend";
    string private _symbol = "AIGF";
    uint8 private _decimals = 9;
    uint256 private _supply = 100000000;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForMarketing = 3;
    uint256 public maxTxAmount = 2000000 * 10**_decimals;
    uint256 public maxWalletAmount = 2000000 * 10**_decimals;
    address internal marketingWallet = 0xE047560d1232f16cd8De60b0d72B9C8663C32981;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 1000000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 200000 * 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;
    }

    /**
     * @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,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        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 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":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[],"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"}]

610100604052600d60c09081526c10524811da5c9b199c9a595b99609a1b60e0526006906200002f908262000657565b5060408051808201909152600481526320a4a3a360e11b60208201526007906200005a908262000657565b506008805460ff191660099081179091556305f5e10081556000600a9081556003600b556200008a919062000838565b6200009990621e848062000850565b600c55600854620000af9060ff16600a62000838565b620000be90621e848062000850565b600d55600e80546001600160a01b03191673e047560d1232f16cd8de60b0d72b9c8663c329811790556000600f55600854620000ff9060ff16600a62000838565b6200010e90620f424062000850565b601155600854620001249060ff16600a62000838565b620001339062030d4062000850565b6012553480156200014357600080fd5b50600680546200015390620005c8565b80601f01602080910402602001604051908101604052809291908181526020018280546200018190620005c8565b8015620001d25780601f10620001a657610100808354040283529160200191620001d2565b820191906000526020600020905b815481529060010190602001808311620001b457829003601f168201915b505050505060078054620001e690620005c8565b80601f01602080910402602001604051908101604052809291908181526020018280546200021490620005c8565b8015620002655780601f10620002395761010080835404028352916020019162000265565b820191906000526020600020905b8154815290600101906020018083116200024757829003601f168201915b505050505081600390816200027b919062000657565b5060046200028a828262000657565b505050620002a7620002a16200049660201b60201c565b6200049a565b600854620002d6903390620002c19060ff16600a62000838565b600954620002d0919062000850565b620004ec565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000354919062000872565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c8919062000872565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000416573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043c919062000872565b6001600160a01b0390811660a05290811660808190526000908152601060205260408082208054600160ff1991821681179092553384528284208054821683179055600e54909416835291208054909216179055620008b3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200055b91906200089d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005dd57607f821691505b602082108103620005fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065257600081815260208120601f850160051c810160208610156200062d5750805b601f850160051c820191505b818110156200064e5782815560010162000639565b5050505b505050565b81516001600160401b03811115620006735762000673620005b2565b6200068b81620006848454620005c8565b8462000604565b602080601f831160018114620006c35760008415620006aa5750858301515b600019600386901b1c1916600185901b1785556200064e565b600085815260208120601f198616915b82811015620006f457888601518255948401946001909101908401620006d3565b5085821015620007135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200077a5781600019048211156200075e576200075e62000723565b808516156200076c57918102915b93841c93908002906200073e565b509250929050565b600082620007935750600162000832565b81620007a25750600062000832565b8160018114620007bb5760028114620007c657620007e6565b600191505062000832565b60ff841115620007da57620007da62000723565b50506001821b62000832565b5060208310610133831016604e8410600b84101617156200080b575081810a62000832565b62000817838362000739565b80600019048211156200082e576200082e62000723565b0290505b92915050565b60006200084960ff84168362000782565b9392505050565b60008160001904831182151516156200086d576200086d62000723565b500290565b6000602082840312156200088557600080fd5b81516001600160a01b03811681146200084957600080fd5b8082018082111562000832576200083262000723565b60805160a0516116bc620009186000396000818161028f015281816109d801528181610a1301528181610a5d0152610c2c0152600081816101c801528181610f4001528181610ff901528181611028015281816111bd01526111e401526116bc6000f3fe60806040526004361061014f5760003560e01c806381bfdcca116100b6578063aa4bde281161006f578063aa4bde28146103dd578063af8af690146103f3578063bb85c6d114610413578063dd62ed3e14610433578063f2fde38b14610453578063f345bd851461047357600080fd5b806381bfdcca146103345780638c0b5e22146103545780638da5cb5b1461036a57806395d89b4114610388578063a457c2d71461039d578063a9059cbb146103bd57600080fd5b80633950935111610108578063395093511461025d57806349bd5a5e1461027d578063527ffabd146102b1578063677daa57146102c757806370a08231146102e7578063715018a61461031d57600080fd5b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd1461020257806323b872dd14610221578063313ce5671461024157600080fd5b3661015657005b600080fd5b34801561016757600080fd5b50610170610489565b60405161017d91906112c7565b60405180910390f35b34801561019257600080fd5b506101a66101a136600461132a565b61051b565b604051901515815260200161017d565b3480156101c257600080fd5b506101ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161017d565b34801561020e57600080fd5b506002545b60405190815260200161017d565b34801561022d57600080fd5b506101a661023c366004611356565b610535565b34801561024d57600080fd5b506040516009815260200161017d565b34801561026957600080fd5b506101a661027836600461132a565b610559565b34801561028957600080fd5b506101ea7f000000000000000000000000000000000000000000000000000000000000000081565b3480156102bd57600080fd5b50610213600b5481565b3480156102d357600080fd5b506101a66102e2366004611397565b61057b565b3480156102f357600080fd5b506102136103023660046113b0565b6001600160a01b031660009081526020819052604090205490565b34801561032957600080fd5b5061033261058e565b005b34801561034057600080fd5b506101a661034f366004611397565b6105a2565b34801561036057600080fd5b50610213600c5481565b34801561037657600080fd5b506005546001600160a01b03166101ea565b34801561039457600080fd5b506101706105b5565b3480156103a957600080fd5b506101a66103b836600461132a565b6105c4565b3480156103c957600080fd5b506101a66103d836600461132a565b610644565b3480156103e957600080fd5b50610213600d5481565b3480156103ff57600080fd5b506101a661040e3660046113d4565b610652565b34801561041f57600080fd5b506101a661042e3660046113b0565b6106db565b34801561043f57600080fd5b5061021361044e3660046113f6565b61070a565b34801561045f57600080fd5b5061033261046e3660046113b0565b610735565b34801561047f57600080fd5b50610213600a5481565b6060600380546104989061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546104c49061142f565b80156105115780601f106104e657610100808354040283529160200191610511565b820191906000526020600020905b8154815290600101906020018083116104f457829003601f168201915b5050505050905090565b6000336105298185856107ae565b60019150505b92915050565b6000336105438582856108d2565b61054e85858561094c565b506001949350505050565b60003361052981858561056c838361070a565b610576919061147f565b6107ae565b6000610585610d92565b50600c55600190565b610596610d92565b6105a06000610dec565b565b60006105ac610d92565b50600d55600190565b6060600480546104989061142f565b600033816105d2828661070a565b9050838110156106375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61054e82868684036107ae565b60003361052981858561094c565b600061065c610d92565b6064610668838561147f565b11156106cc5760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b606482015260840161062e565b50600a91909155600b55600190565b60006106e5610d92565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61073d610d92565b6001600160a01b0381166107a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062e565b6107ab81610dec565b50565b6001600160a01b0383166108105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161062e565b6001600160a01b0382166108715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161062e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108de848461070a565b9050600019811461094657818110156109395760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161062e565b61094684848484036107ae565b50505050565b6001600160a01b0383166109725760405162461bcd60e51b815260040161062e90611492565b6001600160a01b0382166109985760405162461bcd60e51b815260040161062e906114d7565b806109b8846001600160a01b031660009081526020819052604090205490565b10156109d65760405162461bcd60e51b815260040161062e9061151a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610a4757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610a56575060135460ff16155b15610d82577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610b6757600f54306000908152602081905260408120549091610ab291611560565b90506011548110610ac857610ac8601154610e3e565b601254600f5410610b6557610ade601254610edc565b601254600f6000828254610af29190611560565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b635760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b604482015260640161062e565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610ba657506001600160a01b03831660009081526010602052604090205460ff165b15610bb2575080610d77565b600c54821115610c2a5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000606482015260840161062e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610cf657600d546001600160a01b038416600090815260208190526040902054610c89908461147f565b1115610cf65760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b606482015260840161062e565b60006064600b5484610d089190611573565b610d129190611592565b905060006064600a5485610d269190611573565b610d309190611592565b9050610d3c818361147f565b610d469085611560565b925081600f6000828254610d5a919061147f565b90915550610d7490508630610d6f848661147f565b6110be565b50505b6109468484836110be565b610d8d8383836110be565b505050565b6005546001600160a01b031633146105a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e58600283611592565b90506000610e668284611560565b905047610e7283610edc565b6000610e7e8247611560565b9050610e8a83826111aa565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f1e57610f1e6115b4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc091906115ca565b81600181518110610fd357610fd36115b4565b60200260200101906001600160a01b031690816001600160a01b03168152505061101e307f0000000000000000000000000000000000000000000000000000000000000000846107ae565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947836000843061105e4261012c61147f565b6040518663ffffffff1660e01b815260040161107e9594939291906115e7565b600060405180830381600087803b15801561109857600080fd5b505af11580156110ac573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b0383166110e45760405162461bcd60e51b815260040161062e90611492565b6001600160a01b03821661110a5760405162461bcd60e51b815260040161062e906114d7565b6001600160a01b038316600090815260208190526040902054818110156111435760405162461bcd60e51b815260040161062e9061151a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff191660011790556111e2307f0000000000000000000000000000000000000000000000000000000000000000846107ae565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806112296005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611291573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112b69190611658565b50506013805460ff19169055505050565b600060208083528351808285015260005b818110156112f4578581018301518582016040015282016112d8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107ab57600080fd5b6000806040838503121561133d57600080fd5b823561134881611315565b946020939093013593505050565b60008060006060848603121561136b57600080fd5b833561137681611315565b9250602084013561138681611315565b929592945050506040919091013590565b6000602082840312156113a957600080fd5b5035919050565b6000602082840312156113c257600080fd5b81356113cd81611315565b9392505050565b600080604083850312156113e757600080fd5b50508035926020909101359150565b6000806040838503121561140957600080fd5b823561141481611315565b9150602083013561142481611315565b809150509250929050565b600181811c9082168061144357607f821691505b60208210810361146357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052f5761052f611469565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561052f5761052f611469565b600081600019048311821515161561158d5761158d611469565b500290565b6000826115af57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156115dc57600080fd5b81516113cd81611315565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116375784516001600160a01b031683529383019391830191600101611612565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561166d57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207680bd8e9539059447832653dbd6fc51f04c363d341a73d277b0fe525265ae4a64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c806381bfdcca116100b6578063aa4bde281161006f578063aa4bde28146103dd578063af8af690146103f3578063bb85c6d114610413578063dd62ed3e14610433578063f2fde38b14610453578063f345bd851461047357600080fd5b806381bfdcca146103345780638c0b5e22146103545780638da5cb5b1461036a57806395d89b4114610388578063a457c2d71461039d578063a9059cbb146103bd57600080fd5b80633950935111610108578063395093511461025d57806349bd5a5e1461027d578063527ffabd146102b1578063677daa57146102c757806370a08231146102e7578063715018a61461031d57600080fd5b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd1461020257806323b872dd14610221578063313ce5671461024157600080fd5b3661015657005b600080fd5b34801561016757600080fd5b50610170610489565b60405161017d91906112c7565b60405180910390f35b34801561019257600080fd5b506101a66101a136600461132a565b61051b565b604051901515815260200161017d565b3480156101c257600080fd5b506101ea7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161017d565b34801561020e57600080fd5b506002545b60405190815260200161017d565b34801561022d57600080fd5b506101a661023c366004611356565b610535565b34801561024d57600080fd5b506040516009815260200161017d565b34801561026957600080fd5b506101a661027836600461132a565b610559565b34801561028957600080fd5b506101ea7f00000000000000000000000049243d611a843e64fdd31dad6694a0a9b806aa8881565b3480156102bd57600080fd5b50610213600b5481565b3480156102d357600080fd5b506101a66102e2366004611397565b61057b565b3480156102f357600080fd5b506102136103023660046113b0565b6001600160a01b031660009081526020819052604090205490565b34801561032957600080fd5b5061033261058e565b005b34801561034057600080fd5b506101a661034f366004611397565b6105a2565b34801561036057600080fd5b50610213600c5481565b34801561037657600080fd5b506005546001600160a01b03166101ea565b34801561039457600080fd5b506101706105b5565b3480156103a957600080fd5b506101a66103b836600461132a565b6105c4565b3480156103c957600080fd5b506101a66103d836600461132a565b610644565b3480156103e957600080fd5b50610213600d5481565b3480156103ff57600080fd5b506101a661040e3660046113d4565b610652565b34801561041f57600080fd5b506101a661042e3660046113b0565b6106db565b34801561043f57600080fd5b5061021361044e3660046113f6565b61070a565b34801561045f57600080fd5b5061033261046e3660046113b0565b610735565b34801561047f57600080fd5b50610213600a5481565b6060600380546104989061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546104c49061142f565b80156105115780601f106104e657610100808354040283529160200191610511565b820191906000526020600020905b8154815290600101906020018083116104f457829003601f168201915b5050505050905090565b6000336105298185856107ae565b60019150505b92915050565b6000336105438582856108d2565b61054e85858561094c565b506001949350505050565b60003361052981858561056c838361070a565b610576919061147f565b6107ae565b6000610585610d92565b50600c55600190565b610596610d92565b6105a06000610dec565b565b60006105ac610d92565b50600d55600190565b6060600480546104989061142f565b600033816105d2828661070a565b9050838110156106375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61054e82868684036107ae565b60003361052981858561094c565b600061065c610d92565b6064610668838561147f565b11156106cc5760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c061746572207468616e2031303609c1b606482015260840161062e565b50600a91909155600b55600190565b60006106e5610d92565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61073d610d92565b6001600160a01b0381166107a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062e565b6107ab81610dec565b50565b6001600160a01b0383166108105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161062e565b6001600160a01b0382166108715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161062e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108de848461070a565b9050600019811461094657818110156109395760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161062e565b61094684848484036107ae565b50505050565b6001600160a01b0383166109725760405162461bcd60e51b815260040161062e90611492565b6001600160a01b0382166109985760405162461bcd60e51b815260040161062e906114d7565b806109b8846001600160a01b031660009081526020819052604090205490565b10156109d65760405162461bcd60e51b815260040161062e9061151a565b7f00000000000000000000000049243d611a843e64fdd31dad6694a0a9b806aa886001600160a01b0316836001600160a01b03161480610a4757507f00000000000000000000000049243d611a843e64fdd31dad6694a0a9b806aa886001600160a01b0316826001600160a01b0316145b8015610a56575060135460ff16155b15610d82577f00000000000000000000000049243d611a843e64fdd31dad6694a0a9b806aa886001600160a01b0316836001600160a01b031614610b6757600f54306000908152602081905260408120549091610ab291611560565b90506011548110610ac857610ac8601154610e3e565b601254600f5410610b6557610ade601254610edc565b601254600f6000828254610af29190611560565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b635760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b604482015260640161062e565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610ba657506001600160a01b03831660009081526010602052604090205460ff165b15610bb2575080610d77565b600c54821115610c2a5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000606482015260840161062e565b7f00000000000000000000000049243d611a843e64fdd31dad6694a0a9b806aa886001600160a01b0316846001600160a01b031603610cf657600d546001600160a01b038416600090815260208190526040902054610c89908461147f565b1115610cf65760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b606482015260840161062e565b60006064600b5484610d089190611573565b610d129190611592565b905060006064600a5485610d269190611573565b610d309190611592565b9050610d3c818361147f565b610d469085611560565b925081600f6000828254610d5a919061147f565b90915550610d7490508630610d6f848661147f565b6110be565b50505b6109468484836110be565b610d8d8383836110be565b505050565b6005546001600160a01b031633146105a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e58600283611592565b90506000610e668284611560565b905047610e7283610edc565b6000610e7e8247611560565b9050610e8a83826111aa565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f1e57610f1e6115b4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc091906115ca565b81600181518110610fd357610fd36115b4565b60200260200101906001600160a01b031690816001600160a01b03168152505061101e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846107ae565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947836000843061105e4261012c61147f565b6040518663ffffffff1660e01b815260040161107e9594939291906115e7565b600060405180830381600087803b15801561109857600080fd5b505af11580156110ac573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b0383166110e45760405162461bcd60e51b815260040161062e90611492565b6001600160a01b03821661110a5760405162461bcd60e51b815260040161062e906114d7565b6001600160a01b038316600090815260208190526040902054818110156111435760405162461bcd60e51b815260040161062e9061151a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff191660011790556111e2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846107ae565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806112296005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611291573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112b69190611658565b50506013805460ff19169055505050565b600060208083528351808285015260005b818110156112f4578581018301518582016040015282016112d8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107ab57600080fd5b6000806040838503121561133d57600080fd5b823561134881611315565b946020939093013593505050565b60008060006060848603121561136b57600080fd5b833561137681611315565b9250602084013561138681611315565b929592945050506040919091013590565b6000602082840312156113a957600080fd5b5035919050565b6000602082840312156113c257600080fd5b81356113cd81611315565b9392505050565b600080604083850312156113e757600080fd5b50508035926020909101359150565b6000806040838503121561140957600080fd5b823561141481611315565b9150602083013561142481611315565b809150509250929050565b600181811c9082168061144357607f821691505b60208210810361146357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052f5761052f611469565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561052f5761052f611469565b600081600019048311821515161561158d5761158d611469565b500290565b6000826115af57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156115dc57600080fd5b81516113cd81611315565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116375784516001600160a01b031683529383019391830191600101611612565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561166d57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207680bd8e9539059447832653dbd6fc51f04c363d341a73d277b0fe525265ae4a64736f6c63430008100033

Deployed Bytecode Sourcemap

28397:7206:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18115:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20389:244;;;;;;;;;;-1:-1:-1;20389:244:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20389:244:0;1023:187:1;29055:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;29055:51:0;1215:229:1;19253:110:0;;;;;;;;;;-1:-1:-1;19343:12:0;;19253:110;;;1595:25:1;;;1583:2;1568:18;19253:110:0;1449:177:1;21213:297:0;;;;;;;;;;-1:-1:-1;21213:297:0;;;;;:::i;:::-;;:::i;19096:92::-;;;;;;;;;;-1:-1:-1;19096:92:0;;19179:1;2234:36:1;;2222:2;2207:18;19096:92:0;2092:184:1;22929:272:0;;;;;;;;;;-1:-1:-1;22929:272:0;;;;;:::i;:::-;;:::i;29113:38::-;;;;;;;;;;;;;;;28721:34;;;;;;;;;;;;;;;;35175:182;;;;;;;;;;-1:-1:-1;35175:182:0;;;;;:::i;:::-;;:::i;18280:177::-;;;;;;;;;;-1:-1:-1;18280:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18431:18:0;18399:7;18431:18;;;;;;;;;;;;18280:177;15374:103;;;;;;;;;;;;;:::i;:::-;;35365:198;;;;;;;;;;-1:-1:-1;35365:198:0;;;;;:::i;:::-;;:::i;28762:52::-;;;;;;;;;;;;;;;;14726:87;;;;;;;;;;-1:-1:-1;14799:6:0;;-1:-1:-1;;;;;14799:6:0;14726:87;;17939:106;;;;;;;;;;;;;:::i;22013:507::-;;;;;;;;;;-1:-1:-1;22013:507:0;;;;;:::i;:::-;;:::i;19833:236::-;;;;;;;;;;-1:-1:-1;19833:236:0;;;;;:::i;:::-;;:::i;28821:56::-;;;;;;;;;;;;;;;;34775:392;;;;;;;;;;-1:-1:-1;34775:392:0;;;;;:::i;:::-;;:::i;34585:182::-;;;;;;;;;;-1:-1:-1;34585:182:0;;;;;:::i;:::-;;:::i;19426:201::-;;;;;;;;;;-1:-1:-1;19426:201:0;;;;;:::i;:::-;;:::i;15632:238::-;;;;;;;;;;-1:-1:-1;15632:238:0;;;;;:::i;:::-;;:::i;28680:34::-;;;;;;;;;;;;;;;;18115:102;18171:13;18204:5;18197:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18115:102;:::o;20389:244::-;20510:4;13599:10;20571:32;13599:10;20587:7;20596:6;20571:8;:32::i;:::-;20621:4;20614:11;;;20389:244;;;;;:::o;21213:297::-;21346:4;13599:10;21404:38;21420:4;13599:10;21435:6;21404:15;:38::i;:::-;21453:27;21463:4;21469:2;21473:6;21453:9;:27::i;:::-;-1:-1:-1;21498:4:0;;21213:297;-1:-1:-1;;;;21213:297:0:o;22929:272::-;23046:4;13599:10;23107:64;13599:10;23123:7;23160:10;23132:25;13599:10;23123:7;23132:9;:25::i;:::-;:38;;;;:::i;:::-;23107:8;:64::i;35175:182::-;35277:4;14612:13;:11;:13::i;:::-;-1:-1:-1;35299:11:0::1;:26:::0;35345:4:::1;::::0;35175:182::o;15374:103::-;14612:13;:11;:13::i;:::-;15439:30:::1;15466:1;15439:18;:30::i;:::-;15374:103::o:0;35365:198::-;35475:4;14612:13;:11;:13::i;:::-;-1:-1:-1;35497:15:0::1;:34:::0;35551:4:::1;::::0;35365:198::o;17939:106::-;17997:13;18030:7;18023:14;;;;;:::i;22013:507::-;22135:4;13599:10;22135:4;22223:25;13599:10;22240:7;22223:9;:25::i;:::-;22196:52;;22301:15;22281:16;:35;;22259:122;;;;-1:-1:-1;;;22259:122:0;;4421:2:1;22259:122:0;;;4403:21:1;4460:2;4440:18;;;4433:30;4499:34;4479:18;;;4472:62;-1:-1:-1;;;4550:18:1;;;4543:35;4595:19;;22259:122:0;;;;;;;;;22417:60;22426:5;22433:7;22461:15;22442:16;:34;22417:8;:60::i;19833:236::-;19950:4;13599:10;20011:28;13599:10;20028:2;20032:6;20011:9;:28::i;34775:392::-;34923:4;14612:13;:11;:13::i;:::-;34992:3:::1;34954:33;34971:16:::0;34954;:33:::1;:::i;:::-;34953:42;;34945:100;;;::::0;-1:-1:-1;;;34945:100:0;;4827:2:1;34945:100:0::1;::::0;::::1;4809:21:1::0;4866:2;4846:18;;;4839:30;4905:34;4885:18;;;4878:62;-1:-1:-1;;;4956:18:1;;;4949:43;5009:19;;34945:100:0::1;4625:409:1::0;34945:100:0::1;-1:-1:-1::0;35056:15:0::1;:34:::0;;;;35101:15:::1;:34:::0;35155:4:::1;::::0;34775:392::o;34585:182::-;34688:4;14612:13;:11;:13::i;:::-;-1:-1:-1;34710:15:0::1;:27:::0;;-1:-1:-1;;;;;34710:27:0;::::1;-1:-1:-1::0;;;;;;34710:27:0;;::::1;;::::0;;;34585:182;;;:::o;19426:201::-;-1:-1:-1;;;;;19592:18:0;;;19560:7;19592:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19426:201::o;15632:238::-;14612:13;:11;:13::i;:::-;-1:-1:-1;;;;;15735:22:0;::::1;15713:110;;;::::0;-1:-1:-1;;;15713:110:0;;5241:2:1;15713:110:0::1;::::0;::::1;5223:21:1::0;5280:2;5260:18;;;5253:30;5319:34;5299:18;;;5292:62;-1:-1:-1;;;5370:18:1;;;5363:36;5416:19;;15713:110:0::1;5039:402:1::0;15713:110:0::1;15834:28;15853:8;15834:18;:28::i;:::-;15632:238:::0;:::o;25236:380::-;-1:-1:-1;;;;;25372:19:0;;25364:68;;;;-1:-1:-1;;;25364:68:0;;5648:2:1;25364:68:0;;;5630:21:1;5687:2;5667:18;;;5660:30;5726:34;5706:18;;;5699:62;-1:-1:-1;;;5777:18:1;;;5770:34;5821:19;;25364:68:0;5446:400:1;25364:68:0;-1:-1:-1;;;;;25451:21:0;;25443:68;;;;-1:-1:-1;;;25443:68:0;;6053:2:1;25443:68:0;;;6035:21:1;6092:2;6072:18;;;6065:30;6131:34;6111:18;;;6104:62;-1:-1:-1;;;6182:18:1;;;6175:32;6224:19;;25443:68:0;5851:398:1;25443:68:0;-1:-1:-1;;;;;25524:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25576:32;;1595:25:1;;;25576:32:0;;1568:18:1;25576:32:0;;;;;;;25236:380;;;:::o;25907:502::-;26042:24;26069:25;26079:5;26086:7;26069:9;:25::i;:::-;26042:52;;-1:-1:-1;;26109:16:0;:37;26105:297;;26209:6;26189:16;:26;;26163:117;;;;-1:-1:-1;;;26163:117:0;;6456:2:1;26163:117:0;;;6438:21:1;6495:2;6475:18;;;6468:30;6534:31;6514:18;;;6507:59;6583:18;;26163:117:0;6254:353:1;26163:117:0;26324:51;26333:5;26340:7;26368:6;26349:16;:25;26324:8;:51::i;:::-;26031:378;25907:502;;;:::o;31036:2149::-;-1:-1:-1;;;;;31134:18:0;;31126:68;;;;-1:-1:-1;;;31126:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31213:16:0;;31205:64;;;;-1:-1:-1;;;31205:64:0;;;;;;;:::i;:::-;31307:6;31288:15;31298:4;-1:-1:-1;;;;;18431:18:0;18399:7;18431:18;;;;;;;;;;;;18280:177;31288:15;:25;;31280:76;;;;-1:-1:-1;;;31280:76:0;;;;;;;:::i;:::-;31382:13;-1:-1:-1;;;;;31374:21:0;:4;-1:-1:-1;;;;;31374:21:0;;:44;;;;31405:13;-1:-1:-1;;;;;31399:19:0;:2;-1:-1:-1;;;;;31399:19:0;;31374:44;31373:67;;;;-1:-1:-1;31424:16:0;;;;31423:17;31373:67;31369:1809;;;31469:13;-1:-1:-1;;;;;31461:21:0;:4;-1:-1:-1;;;;;31461:21:0;;31457:686;;31565:18;;31556:4;31503:32;18431:18;;;;;;;;;;;31503:32;;31538:45;;;:::i;:::-;31503:80;;31634:30;;31606:24;:58;31602:154;;31689:47;31705:30;;31689:15;:47::i;:::-;31802:24;;31779:18;;31778:48;31774:354;;31851:43;31869:24;;31851:17;:43::i;:::-;31939:24;;31917:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;32006:15:0;;31998:52;;31986:9;;-1:-1:-1;;;;;32006:15:0;;32028:21;31998:52;;;;;31986:9;31998:52;31986:9;31998:52;32028:21;32006:15;31998:52;;;;;;;31986:64;;32081:4;32073:35;;;;-1:-1:-1;;;32073:35:0;;8164:2:1;32073:35:0;;;8146:21:1;8203:2;8183:18;;;8176:30;-1:-1:-1;;;8222:18:1;;;8215:48;8280:18;;32073:35:0;7962:342:1;32073:35:0;31828:300;31774:354;31484:659;31457:686;-1:-1:-1;;;;;32200:24:0;;32159:22;32200:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32228:22:0;;;;;;:18;:22;;;;;;;;32200:50;32196:839;;;-1:-1:-1;32288:6:0;32196:839;;;32367:11;;32357:6;:21;;32349:91;;;;-1:-1:-1;;;32349:91:0;;8511:2:1;32349:91:0;;;8493:21:1;8550:2;8530:18;;;8523:30;8589:34;8569:18;;;8562:62;8660:27;8640:18;;;8633:55;8705:19;;32349:91:0;8309:421:1;32349:91:0;32470:13;-1:-1:-1;;;;;32462:21:0;:4;-1:-1:-1;;;;;32462:21:0;;32459:178;;32543:15;;-1:-1:-1;;;;;18431:18:0;;18399:7;18431:18;;;;;;;;;;;32516:22;;:6;:22;:::i;:::-;32515:43;;32507:110;;;;-1:-1:-1;;;32507:110:0;;8937:2:1;32507:110:0;;;8919:21:1;8976:2;8956:18;;;8949:30;9015:34;8995:18;;;8988:62;-1:-1:-1;;;9066:18:1;;;9059:52;9128:19;;32507:110:0;8735:418:1;32507:110:0;32657:22;32712:3;32693:15;;32684:6;:24;;;;:::i;:::-;32683:32;;;;:::i;:::-;32657:59;;32735:22;32790:3;32771:15;;32762:6;:24;;;;:::i;:::-;32761:32;;;;:::i;:::-;32735:59;-1:-1:-1;32840:31:0;32735:59;32840:14;:31;:::i;:::-;32830:42;;:6;:42;:::i;:::-;32813:59;;32913:14;32891:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32948:71:0;;-1:-1:-1;32964:4:0;32978;32986:31;33003:14;32986;:31;:::i;:::-;32948:15;:71::i;:::-;32330:705;;32196:839;33049:41;33065:4;33071:2;33075:14;33049:15;:41::i;31369:1809::-;33133:33;33149:4;33155:2;33159:6;33133:15;:33::i;:::-;31036:2149;;;:::o;14891:132::-;14799:6;;-1:-1:-1;;;;;14799:6:0;13599:10;14955:23;14947:68;;;;-1:-1:-1;;;14947:68:0;;9755:2:1;14947:68:0;;;9737:21:1;;;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;9885:18;;14947:68:0;9553:356:1;16030:191:0;16123:6;;;-1:-1:-1;;;;;16140:17:0;;;-1:-1:-1;;;;;;16140:17:0;;;;;;;16173:40;;16123:6;;;16140:17;16123:6;;16173:40;;16104:16;;16173:40;16093:128;16030:191;:::o;33193:474::-;29613:16;:23;;-1:-1:-1;;29613:23:0;29632:4;29613:23;;;:16;33295:24:::1;33318:1;33295:20:::0;:24:::1;:::i;:::-;33279:41:::0;-1:-1:-1;33331:17:0::1;33352:27;33279:41:::0;33352:20;:27:::1;:::i;:::-;33331:49:::0;-1:-1:-1;33418:21:0::1;33452:23;33470:4:::0;33452:17:::1;:23::i;:::-;33488:18;33510:38;33534:14:::0;33510:21:::1;:38;:::i;:::-;33488:61;;33562:36;33576:9;33587:10;33562:13;:36::i;:::-;33616:43;::::0;;10116:25:1;;;10172:2;10157:18;;10150:34;;;10200:18;;;10193:34;;;33616:43:0::1;::::0;10104:2:1;10089:18;33616:43:0::1;;;;;;;-1:-1:-1::0;;29659:16:0;:24;;-1:-1:-1;;29659:24:0;;;-1:-1:-1;;;33193:474:0:o;33675:496::-;29613:16;:23;;-1:-1:-1;;29613:23:0;29632:4;29613:23;;;33778:16:::1;::::0;;33792:1:::1;33778:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33778:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33778:16:0::1;33754:40;;33823:4;33805;33810:1;33805:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33805:23:0::1;;;-1:-1:-1::0;;;;;33805:23:0::1;;;::::0;::::1;33849:15;-1:-1:-1::0;;;;;33849:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33839:4;33844:1;33839:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33839:32:0::1;;;-1:-1:-1::0;;;;;33839:32:0::1;;;::::0;::::1;33884:62;33901:4;33916:15;33934:11;33884:8;:62::i;:::-;-1:-1:-1::0;;;;;33959:15:0::1;:66;;34040:11:::0;34066:1:::1;34082:4:::0;34109::::1;34130:21;:15;34148:3;34130:21;:::i;:::-;33959:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29659:16:0;:24;;-1:-1:-1;;29659:24:0;;;-1:-1:-1;;;;33675:496:0:o;26417:776::-;-1:-1:-1;;;;;26548:18:0;;26540:68;;;;-1:-1:-1;;;26540:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26627:16:0;;26619:64;;;;-1:-1:-1;;;26619:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26718:15:0;;26696:19;26718:15;;;;;;;;;;;26766:21;;;;26744:109;;;;-1:-1:-1;;;26744:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26889:15:0;;;:9;:15;;;;;;;;;;;26907:20;;;26889:38;;27107:13;;;;;;;;;;:23;;;;;;27159:26;;1595:25:1;;;27107:13:0;;27159:26;;1568:18:1;27159:26:0;;;;;;;26529:664;26417:776;;;:::o;34179:398::-;29613:16;:23;;-1:-1:-1;;29613:23:0;29632:4;29613:23;;;34296:62:::1;34313:4;34328:15;34346:11:::0;34296:8:::1;:62::i;:::-;34371:15;-1:-1:-1::0;;;;;34371:31:0::1;;34410:9;34443:4;34463:11;34489:1;34505::::0;34521:7:::1;14799:6:::0;;-1:-1:-1;;;;;14799:6:0;;14726:87;34521:7:::1;34371:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;34371:198:0;;;-1:-1:-1;;;;;12102:15:1;;;34371:198:0::1;::::0;::::1;12084:34:1::0;12134:18;;;12127:34;;;;12177:18;;;12170:34;;;;12220:18;;;12213:34;12284:15;;;12263:19;;;12256:44;34543:15:0::1;12316:19:1::0;;;12309:35;12018:19;;34371:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29659:16:0;:24;;-1:-1:-1;;29659:24:0;;;-1:-1:-1;;;34179:398: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:380::-;3651:1;3647:12;;;;3694;;;3715:61;;3769:4;3761:6;3757:17;3747:27;;3715:61;3822:2;3814:6;3811:14;3791:18;3788:38;3785:161;;3868:10;3863:3;3859:20;3856:1;3849:31;3903:4;3900:1;3893:15;3931:4;3928:1;3921:15;3785:161;;3572:380;;;:::o;3957:127::-;4018:10;4013:3;4009:20;4006:1;3999:31;4049:4;4046:1;4039:15;4073:4;4070:1;4063:15;4089:125;4154:9;;;4175:10;;;4172:36;;;4188:18;;:::i;6612:401::-;6814:2;6796:21;;;6853:2;6833:18;;;6826:30;6892:34;6887:2;6872:18;;6865:62;-1:-1:-1;;;6958:2:1;6943:18;;6936:35;7003:3;6988:19;;6612:401::o;7018:399::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:33;7407:3;7392:19;;7018:399::o;7422:402::-;7624:2;7606:21;;;7663:2;7643:18;;;7636:30;7702:34;7697:2;7682:18;;7675:62;-1:-1:-1;;;7768:2:1;7753:18;;7746:36;7814:3;7799:19;;7422:402::o;7829:128::-;7896:9;;;7917:11;;;7914:37;;;7931:18;;:::i;9158:168::-;9198:7;9264:1;9260;9256:6;9252:14;9249:1;9246:21;9241:1;9234:9;9227:17;9223:45;9220:71;;;9271:18;;:::i;:::-;-1:-1:-1;9311:9:1;;9158:168::o;9331:217::-;9371:1;9397;9387:132;;9441:10;9436:3;9432:20;9429:1;9422:31;9476:4;9473:1;9466:15;9504:4;9501:1;9494:15;9387:132;-1:-1:-1;9533:9:1;;9331:217::o;10370:127::-;10431:10;10426:3;10422:20;10419:1;10412:31;10462:4;10459:1;10452:15;10486:4;10483:1;10476:15;10502:251;10572:6;10625:2;10613:9;10604:7;10600:23;10596:32;10593:52;;;10641:1;10638;10631:12;10593:52;10673:9;10667:16;10692:31;10717:5;10692:31;:::i;10758:980::-;11020:4;11068:3;11057:9;11053:19;11099:6;11088:9;11081:25;11125:2;11163:6;11158:2;11147:9;11143:18;11136:34;11206:3;11201:2;11190:9;11186:18;11179:31;11230:6;11265;11259:13;11296:6;11288;11281:22;11334:3;11323:9;11319:19;11312:26;;11373:2;11365:6;11361:15;11347:29;;11394:1;11404:195;11418:6;11415:1;11412:13;11404:195;;;11483:13;;-1:-1:-1;;;;;11479:39:1;11467:52;;11574:15;;;;11539:12;;;;11515:1;11433:9;11404:195;;;-1:-1:-1;;;;;;;11655:32:1;;;;11650:2;11635:18;;11628:60;-1:-1:-1;;;11719:3:1;11704:19;11697:35;11616:3;10758:980;-1:-1:-1;;;10758:980:1:o;12355:306::-;12443:6;12451;12459;12512:2;12500:9;12491:7;12487:23;12483:32;12480:52;;;12528:1;12525;12518:12;12480:52;12557:9;12551:16;12541:26;;12607:2;12596:9;12592:18;12586:25;12576:35;;12651:2;12640:9;12636:18;12630:25;12620:35;;12355:306;;;;;:::o

Swarm Source

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