ETH Price: $3,177.25 (+2.95%)

Token

TAB (TAB)
 

Overview

Max Total Supply

1,000,000,000 TAB

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,000,000 TAB

Value
$0.00
0xdbd96dc9f1ef67c773a9bc44416a3aa1a8d08c3d
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:
TAB

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : X.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

//  _____  _    ____
// |_   _|/ \  | __ )
//   | | / _ \ |  _ \
//   | |/ ___ \| |_) |
//   |_/_/   \_\____/
//
// Twitter: https://twitter.com/TABerc20
// Website: https://www.tabbot.io/
// Community Telegram: https://t.me/TABPortal
// Tab Telegram Bot: https://t.me/AITradingAssistantBot
// Gitbook: https://tab-1.gitbook.io/tab

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IDex.sol";

contract TAB is ERC20, Ownable {
    using SafeERC20 for IERC20;
    using Address for address payable;

    IRouter public router;
    address public pair;

    bool private swapping;
    bool public tradingEnabled;
    bool internal limits = true;

    address public immutable taxWallet =
        0x3CA5463e8c8C8B70afCA3297DeC02CF42496e096;

    uint256 public constant maxTxAmount = 20_000_000 ether;
    uint256 public constant maxHoldingAmount = 20_000_000 ether;
    uint8 public totalBuyTax = 20;
    uint8 public totalSellTax = 20;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event FeesCollected(uint256 indexed amount);

    constructor() ERC20("TAB", "TAB") {
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        _setAutomatedMarketMakerPair(_pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(taxWallet, true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 860_000_000 * (10 ** 18));
        _mint(address(this), 140_000_000 * (10 ** 18));
    }

    receive() external payable {}

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Fuk: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function updateTaxes(
        uint8 _totalBuyTax,
        uint8 _totalSellTax
    ) external onlyOwner {
        require(
            _totalBuyTax <= 20 && _totalSellTax <= 20,
            "Cannot set taxes higher than 20%"
        );
        totalBuyTax = _totalBuyTax;
        totalSellTax = _totalSellTax;
    }

    function renounceOwnership() public virtual override {
        totalBuyTax = 4;
        totalSellTax = 4;
        super.renounceOwnership();
    }

    function removeLimits() external onlyOwner {
        limits = false;
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IRouter(newRouter);
    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(
        address newPair,
        bool value
    ) external onlyOwner {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != value,
            "FS: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[newPair] = value;

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    //////////////////////
    // Getter Functions //
    //////////////////////

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

    ////////////////////////
    // Transfer Functions //
    ////////////////////////

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

        if (!_isExcludedFromFees[from] && limits) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );

            if (automatedMarketMakerPairs[from])
                require(
                    balanceOf(to) + amount <= maxHoldingAmount,
                    "Max holding amount"
                );
        }

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        uint256 swapAmount = contractTokenBalance > amount
            ? amount
            : contractTokenBalance;

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

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }

        super._transfer(from, to, amount);
    }

    function swapAndLiquify(uint256 tokens) private {
        if (tokens > 0) {
            uint256 ETHbalance = swapTokensForETH(tokens);
            emit FeesCollected(ETHbalance);
        }
    }

    function swapTokensForETH(
        uint256 tokenAmount
    ) private returns (uint256 ETHbalance) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), tokenAmount);
        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

        ETHbalance = address(this).balance;
        payable(taxWallet).sendValue(ETHbalance);

        return ETHbalance;
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

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

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

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

        _beforeTokenTransfer(account, address(0), amount);

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 10 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 6 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 10 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 8 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 10 of 10 : IDex.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

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

    function token0() external view returns (address);
}

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

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_totalBuyTax","type":"uint8"},{"internalType":"uint8","name":"_totalSellTax","type":"uint8"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600760166101000a81548160ff021916908315150217905550733ca5463e8c8c8b70afca3297dec02cf42496e09673ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506014600760176101000a81548160ff021916908360ff1602179055506014600760186101000a81548160ff021916908360ff160217905550348015620000ab57600080fd5b506040518060400160405280600381526020017f54414200000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5441420000000000000000000000000000000000000000000000000000000000815250816003908162000129919062000c11565b5080600490816200013b919062000c11565b5050506200015e620001526200041160201b60201c565b6200041960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb919062000d62565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000253573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000279919062000d62565b6040518363ffffffff1660e01b81526004016200029892919062000da5565b6020604051808303816000875af1158015620002b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002de919062000d62565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000375816001620004df60201b60201c565b62000397620003896200061560201b60201c565b60016200063f60201b60201c565b620003aa3060016200063f60201b60201c565b620003bf60805160016200063f60201b60201c565b620003ec620003d36200061560201b60201c565b6b02c760156ab86e48dc0000006200078f60201b60201c565b62000409306a73ce27351811f40c0000006200078f60201b60201c565b5050620010c9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000574576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056b9062000e59565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200064f620008fc60201b60201c565b801515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620006e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006db9062000ef1565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000783919062000f30565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000801576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f89062000f9d565b60405180910390fd5b62000815600083836200098d60201b60201c565b806002600082825462000829919062000fee565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008dc91906200103a565b60405180910390a3620008f8600083836200099260201b60201c565b5050565b6200090c6200041160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009326200061560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200098b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200098290620010a7565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a1957607f821691505b60208210810362000a2f5762000a2e620009d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a5a565b62000aa5868362000a5a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000af262000aec62000ae68462000abd565b62000ac7565b62000abd565b9050919050565b6000819050919050565b62000b0e8362000ad1565b62000b2662000b1d8262000af9565b84845462000a67565b825550505050565b600090565b62000b3d62000b2e565b62000b4a81848462000b03565b505050565b5b8181101562000b725762000b6660008262000b33565b60018101905062000b50565b5050565b601f82111562000bc15762000b8b8162000a35565b62000b968462000a4a565b8101602085101562000ba6578190505b62000bbe62000bb58562000a4a565b83018262000b4f565b50505b505050565b600082821c905092915050565b600062000be66000198460080262000bc6565b1980831691505092915050565b600062000c01838362000bd3565b9150826002028217905092915050565b62000c1c8262000997565b67ffffffffffffffff81111562000c385762000c37620009a2565b5b62000c44825462000a00565b62000c5182828562000b76565b600060209050601f83116001811462000c89576000841562000c74578287015190505b62000c80858262000bf3565b86555062000cf0565b601f19841662000c998662000a35565b60005b8281101562000cc35784890151825560018201915060208501945060208101905062000c9c565b8683101562000ce3578489015162000cdf601f89168262000bd3565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d2a8262000cfd565b9050919050565b62000d3c8162000d1d565b811462000d4857600080fd5b50565b60008151905062000d5c8162000d31565b92915050565b60006020828403121562000d7b5762000d7a62000cf8565b5b600062000d8b8482850162000d4b565b91505092915050565b62000d9f8162000d1d565b82525050565b600060408201905062000dbc600083018562000d94565b62000dcb602083018462000d94565b9392505050565b600082825260208201905092915050565b7f46533a204175746f6d61746564206d61726b6574206d616b657220706169722060008201527f697320616c72656164792073657420746f20746861742076616c756500000000602082015250565b600062000e41603c8362000dd2565b915062000e4e8262000de3565b604082019050919050565b6000602082019050818103600083015262000e748162000e32565b9050919050565b7f46756b3a204163636f756e7420697320616c7265616479207468652076616c7560008201527f65206f6620276578636c75646564270000000000000000000000000000000000602082015250565b600062000ed9602f8362000dd2565b915062000ee68262000e7b565b604082019050919050565b6000602082019050818103600083015262000f0c8162000eca565b9050919050565b60008115159050919050565b62000f2a8162000f13565b82525050565b600060208201905062000f47600083018462000f1f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f85601f8362000dd2565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ffb8262000abd565b9150620010088362000abd565b925082820190508082111562001023576200102262000fbf565b5b92915050565b620010348162000abd565b82525050565b600060208201905062001051600083018462001029565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200108f60208362000dd2565b91506200109c8262001057565b602082019050919050565b60006020820190508181036000830152620010c28162001080565b9050919050565b608051613497620010ec60003960008181610846015261211e01526134976000f3fe6080604052600436106101d15760003560e01c80638a8c523c116100f7578063a8aa1b3111610095578063c851cc3211610064578063c851cc3214610689578063dd62ed3e146106b2578063f2fde38b146106ef578063f887ea4014610718576101d8565b8063a8aa1b31146105bb578063a9059cbb146105e6578063b62496f514610623578063c024666814610660576101d8565b806395d89b41116100d157806395d89b41146105015780639a7a23d61461052c5780639eba640e14610555578063a457c2d71461057e576101d8565b80638a8c523c146104945780638c0b5e22146104ab5780638da5cb5b146104d6576101d8565b8063395093511161016f57806370a082311161013e57806370a08231146103fe578063715018a61461043b578063751039fc1461045257806389f9a1d314610469576101d8565b8063395093511461032e57806346469afb1461036b5780634ada218b146103965780634fbee193146103c1576101d8565b80631bff7898116101ab5780631bff78981461027057806323b872dd1461029b5780632dc0562d146102d8578063313ce56714610303576101d8565b806306fdde03146101dd578063095ea7b31461020857806318160ddd14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610743565b6040516101ff91906122f5565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906123b0565b6107d5565b60405161023c919061240b565b60405180910390f35b34801561025157600080fd5b5061025a6107f8565b6040516102679190612435565b60405180910390f35b34801561027c57600080fd5b50610285610802565b604051610292919061246c565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190612487565b610815565b6040516102cf919061240b565b60405180910390f35b3480156102e457600080fd5b506102ed610844565b6040516102fa91906124e9565b60405180910390f35b34801561030f57600080fd5b50610318610868565b604051610325919061246c565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906123b0565b610871565b604051610362919061240b565b60405180910390f35b34801561037757600080fd5b506103806108a8565b60405161038d919061246c565b60405180910390f35b3480156103a257600080fd5b506103ab6108bb565b6040516103b8919061240b565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612504565b6108ce565b6040516103f5919061240b565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190612504565b610924565b6040516104329190612435565b60405180910390f35b34801561044757600080fd5b5061045061096c565b005b34801561045e57600080fd5b506104676109ae565b005b34801561047557600080fd5b5061047e6109d3565b60405161048b9190612435565b60405180910390f35b3480156104a057600080fd5b506104a96109e2565b005b3480156104b757600080fd5b506104c0610a57565b6040516104cd9190612435565b60405180910390f35b3480156104e257600080fd5b506104eb610a66565b6040516104f891906124e9565b60405180910390f35b34801561050d57600080fd5b50610516610a90565b60405161052391906122f5565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e919061255d565b610b22565b005b34801561056157600080fd5b5061057c600480360381019061057791906125c9565b610b38565b005b34801561058a57600080fd5b506105a560048036038101906105a091906123b0565b610bd1565b6040516105b2919061240b565b60405180910390f35b3480156105c757600080fd5b506105d0610c48565b6040516105dd91906124e9565b60405180910390f35b3480156105f257600080fd5b5061060d600480360381019061060891906123b0565b610c6e565b60405161061a919061240b565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612504565b610c91565b604051610657919061240b565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061255d565b610cb1565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612504565b610df4565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612609565b610e40565b6040516106e69190612435565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612504565b610ec7565b005b34801561072457600080fd5b5061072d610f4a565b60405161073a91906126a8565b60405180910390f35b606060038054610752906126f2565b80601f016020809104026020016040519081016040528092919081815260200182805461077e906126f2565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b6000806107e0610f70565b90506107ed818585610f78565b600191505092915050565b6000600254905090565b600760189054906101000a900460ff1681565b600080610820610f70565b905061082d858285611141565b6108388585856111cd565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006012905090565b60008061087c610f70565b905061089d81858561088e8589610e40565b6108989190612752565b610f78565b600191505092915050565b600760179054906101000a900460ff1681565b600760159054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6004600760176101000a81548160ff021916908360ff1602179055506004600760186101000a81548160ff021916908360ff1602179055506109ac61198c565b565b6109b66119a0565b6000600760166101000a81548160ff021916908315150217905550565b6a108b2a2c2802909400000081565b6109ea6119a0565b600760159054906101000a900460ff1615610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906127d2565b60405180910390fd5b6001600760156101000a81548160ff021916908315150217905550565b6a108b2a2c2802909400000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a9f906126f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610acb906126f2565b8015610b185780601f10610aed57610100808354040283529160200191610b18565b820191906000526020600020905b815481529060010190602001808311610afb57829003601f168201915b5050505050905090565b610b2a6119a0565b610b348282611a1e565b5050565b610b406119a0565b60148260ff1611158015610b58575060148160ff1611155b610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e9061283e565b60405180910390fd5b81600760176101000a81548160ff021916908360ff16021790555080600760186101000a81548160ff021916908360ff1602179055505050565b600080610bdc610f70565b90506000610bea8286610e40565b905083811015610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c26906128d0565b60405180910390fd5b610c3c8286868403610f78565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c79610f70565b9050610c868185856111cd565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b610cb96119a0565b801515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290612962565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610de8919061240b565b60405180910390a25050565b610dfc6119a0565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ecf6119a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906129f4565b60405180910390fd5b610f4781611b51565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90612a86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90612b18565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111349190612435565b60405180910390a3505050565b600061114d8484610e40565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c757818110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612b84565b60405180910390fd5b6111c68484848403610f78565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390612c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290612ca8565b60405180910390fd5b600081116112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590612d3a565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113545750600760169054906101000a900460ff165b1561145c576a108b2a2c280290940000008111156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612dcc565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561145b576a108b2a2c280290940000008161140f84610924565b6114199190612752565b111561145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612e38565b60405180910390fd5b5b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115005750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156115195750600760149054906101000a900460ff16155b1561156e57600760159054906101000a900460ff1661156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490612ea4565b60405180910390fd5b5b600061157930610924565b9050600082821161158a578161158c565b825b9050600760149054906101000a900460ff161580156115f45750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561164a5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116a05750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116e5576001600760146101000a81548160ff0219169083151502179055506116c981611c17565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061179b5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156117a557600090505b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118495750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561185357600090505b8015611979576000600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118de576064600760189054906101000a900460ff1660ff16866118cd9190612ec4565b6118d79190612f35565b905061195e565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561195d576064600760179054906101000a900460ff1660ff16866119509190612ec4565b61195a9190612f35565b90505b5b808561196a9190612f66565b9450611977873083611c5f565b505b611984868686611c5f565b505050505050565b6119946119a0565b61199e6000611b51565b565b6119a8610f70565b73ffffffffffffffffffffffffffffffffffffffff166119c6610a66565b73ffffffffffffffffffffffffffffffffffffffff1614611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390612fe6565b60405180910390fd5b565b801515600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613078565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811115611c5c576000611c2b82611ed5565b9050807f860c0aa5520013080c2f65981705fcdea474d9f7c3daf954656ed5e65d692d1f60405160405180910390a2505b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590612c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490612ca8565b60405180910390fd5b611d48838383612167565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc59061310a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ebc9190612435565b60405180910390a3611ecf84848461216c565b50505050565b600080600267ffffffffffffffff811115611ef357611ef261312a565b5b604051908082528060200260200182016040528015611f215781602001602082028036833780820191505090505b5090503081600081518110611f3957611f38613159565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fe0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612004919061319d565b8160018151811061201857612017613159565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061207f30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610f78565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016120e39594939291906132c3565b600060405180830381600087803b1580156120fd57600080fd5b505af1158015612111573d6000803e3d6000fd5b50505050479150612161827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661217190919063ffffffff16565b50919050565b505050565b505050565b804710156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90613369565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121da906133ba565b60006040518083038185875af1925050503d8060008114612217576040519150601f19603f3d011682016040523d82523d6000602084013e61221c565b606091505b5050905080612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790613441565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561229f578082015181840152602081019050612284565b60008484015250505050565b6000601f19601f8301169050919050565b60006122c782612265565b6122d18185612270565b93506122e1818560208601612281565b6122ea816122ab565b840191505092915050565b6000602082019050818103600083015261230f81846122bc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123478261231c565b9050919050565b6123578161233c565b811461236257600080fd5b50565b6000813590506123748161234e565b92915050565b6000819050919050565b61238d8161237a565b811461239857600080fd5b50565b6000813590506123aa81612384565b92915050565b600080604083850312156123c7576123c6612317565b5b60006123d585828601612365565b92505060206123e68582860161239b565b9150509250929050565b60008115159050919050565b612405816123f0565b82525050565b600060208201905061242060008301846123fc565b92915050565b61242f8161237a565b82525050565b600060208201905061244a6000830184612426565b92915050565b600060ff82169050919050565b61246681612450565b82525050565b6000602082019050612481600083018461245d565b92915050565b6000806000606084860312156124a05761249f612317565b5b60006124ae86828701612365565b93505060206124bf86828701612365565b92505060406124d08682870161239b565b9150509250925092565b6124e38161233c565b82525050565b60006020820190506124fe60008301846124da565b92915050565b60006020828403121561251a57612519612317565b5b600061252884828501612365565b91505092915050565b61253a816123f0565b811461254557600080fd5b50565b60008135905061255781612531565b92915050565b6000806040838503121561257457612573612317565b5b600061258285828601612365565b925050602061259385828601612548565b9150509250929050565b6125a681612450565b81146125b157600080fd5b50565b6000813590506125c38161259d565b92915050565b600080604083850312156125e0576125df612317565b5b60006125ee858286016125b4565b92505060206125ff858286016125b4565b9150509250929050565b600080604083850312156126205761261f612317565b5b600061262e85828601612365565b925050602061263f85828601612365565b9150509250929050565b6000819050919050565b600061266e6126696126648461231c565b612649565b61231c565b9050919050565b600061268082612653565b9050919050565b600061269282612675565b9050919050565b6126a281612687565b82525050565b60006020820190506126bd6000830184612699565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061270a57607f821691505b60208210810361271d5761271c6126c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061275d8261237a565b91506127688361237a565b92508282019050808211156127805761277f612723565b5b92915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006127bc601783612270565b91506127c782612786565b602082019050919050565b600060208201905081810360008301526127eb816127af565b9050919050565b7f43616e6e6f742073657420746178657320686967686572207468616e20323025600082015250565b6000612828602083612270565b9150612833826127f2565b602082019050919050565b600060208201905081810360008301526128578161281b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128ba602583612270565b91506128c58261285e565b604082019050919050565b600060208201905081810360008301526128e9816128ad565b9050919050565b7f46756b3a204163636f756e7420697320616c7265616479207468652076616c7560008201527f65206f6620276578636c75646564270000000000000000000000000000000000602082015250565b600061294c602f83612270565b9150612957826128f0565b604082019050919050565b6000602082019050818103600083015261297b8161293f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129de602683612270565b91506129e982612982565b604082019050919050565b60006020820190508181036000830152612a0d816129d1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a70602483612270565b9150612a7b82612a14565b604082019050919050565b60006020820190508181036000830152612a9f81612a63565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b02602283612270565b9150612b0d82612aa6565b604082019050919050565b60006020820190508181036000830152612b3181612af5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b6e601d83612270565b9150612b7982612b38565b602082019050919050565b60006020820190508181036000830152612b9d81612b61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c00602583612270565b9150612c0b82612ba4565b604082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c92602383612270565b9150612c9d82612c36565b604082019050919050565b60006020820190508181036000830152612cc181612c85565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d24602983612270565b9150612d2f82612cc8565b604082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612db6602883612270565b9150612dc182612d5a565b604082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f4d617820686f6c64696e6720616d6f756e740000000000000000000000000000600082015250565b6000612e22601283612270565b9150612e2d82612dec565b602082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000612e8e601283612270565b9150612e9982612e58565b602082019050919050565b60006020820190508181036000830152612ebd81612e81565b9050919050565b6000612ecf8261237a565b9150612eda8361237a565b9250828202612ee88161237a565b91508282048414831517612eff57612efe612723565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f408261237a565b9150612f4b8361237a565b925082612f5b57612f5a612f06565b5b828204905092915050565b6000612f718261237a565b9150612f7c8361237a565b9250828203905081811115612f9457612f93612723565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fd0602083612270565b9150612fdb82612f9a565b602082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f46533a204175746f6d61746564206d61726b6574206d616b657220706169722060008201527f697320616c72656164792073657420746f20746861742076616c756500000000602082015250565b6000613062603c83612270565b915061306d82613006565b604082019050919050565b6000602082019050818103600083015261309181613055565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130f4602683612270565b91506130ff82613098565b604082019050919050565b60006020820190508181036000830152613123816130e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506131978161234e565b92915050565b6000602082840312156131b3576131b2612317565b5b60006131c184828501613188565b91505092915050565b6000819050919050565b60006131ef6131ea6131e5846131ca565b612649565b61237a565b9050919050565b6131ff816131d4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61323a8161233c565b82525050565b600061324c8383613231565b60208301905092915050565b6000602082019050919050565b600061327082613205565b61327a8185613210565b935061328583613221565b8060005b838110156132b657815161329d8882613240565b97506132a883613258565b925050600181019050613289565b5085935050505092915050565b600060a0820190506132d86000830188612426565b6132e560208301876131f6565b81810360408301526132f78186613265565b905061330660608301856124da565b6133136080830184612426565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613353601d83612270565b915061335e8261331d565b602082019050919050565b6000602082019050818103600083015261338281613346565b9050919050565b600081905092915050565b50565b60006133a4600083613389565b91506133af82613394565b600082019050919050565b60006133c582613397565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061342b603a83612270565b9150613436826133cf565b604082019050919050565b6000602082019050818103600083015261345a8161341e565b905091905056fea2646970667358221220d84f85362fe5208bc6eec59a016cd7d655297cc25eb9932ab9986c7d56f30eda64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80638a8c523c116100f7578063a8aa1b3111610095578063c851cc3211610064578063c851cc3214610689578063dd62ed3e146106b2578063f2fde38b146106ef578063f887ea4014610718576101d8565b8063a8aa1b31146105bb578063a9059cbb146105e6578063b62496f514610623578063c024666814610660576101d8565b806395d89b41116100d157806395d89b41146105015780639a7a23d61461052c5780639eba640e14610555578063a457c2d71461057e576101d8565b80638a8c523c146104945780638c0b5e22146104ab5780638da5cb5b146104d6576101d8565b8063395093511161016f57806370a082311161013e57806370a08231146103fe578063715018a61461043b578063751039fc1461045257806389f9a1d314610469576101d8565b8063395093511461032e57806346469afb1461036b5780634ada218b146103965780634fbee193146103c1576101d8565b80631bff7898116101ab5780631bff78981461027057806323b872dd1461029b5780632dc0562d146102d8578063313ce56714610303576101d8565b806306fdde03146101dd578063095ea7b31461020857806318160ddd14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610743565b6040516101ff91906122f5565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906123b0565b6107d5565b60405161023c919061240b565b60405180910390f35b34801561025157600080fd5b5061025a6107f8565b6040516102679190612435565b60405180910390f35b34801561027c57600080fd5b50610285610802565b604051610292919061246c565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190612487565b610815565b6040516102cf919061240b565b60405180910390f35b3480156102e457600080fd5b506102ed610844565b6040516102fa91906124e9565b60405180910390f35b34801561030f57600080fd5b50610318610868565b604051610325919061246c565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906123b0565b610871565b604051610362919061240b565b60405180910390f35b34801561037757600080fd5b506103806108a8565b60405161038d919061246c565b60405180910390f35b3480156103a257600080fd5b506103ab6108bb565b6040516103b8919061240b565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612504565b6108ce565b6040516103f5919061240b565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190612504565b610924565b6040516104329190612435565b60405180910390f35b34801561044757600080fd5b5061045061096c565b005b34801561045e57600080fd5b506104676109ae565b005b34801561047557600080fd5b5061047e6109d3565b60405161048b9190612435565b60405180910390f35b3480156104a057600080fd5b506104a96109e2565b005b3480156104b757600080fd5b506104c0610a57565b6040516104cd9190612435565b60405180910390f35b3480156104e257600080fd5b506104eb610a66565b6040516104f891906124e9565b60405180910390f35b34801561050d57600080fd5b50610516610a90565b60405161052391906122f5565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e919061255d565b610b22565b005b34801561056157600080fd5b5061057c600480360381019061057791906125c9565b610b38565b005b34801561058a57600080fd5b506105a560048036038101906105a091906123b0565b610bd1565b6040516105b2919061240b565b60405180910390f35b3480156105c757600080fd5b506105d0610c48565b6040516105dd91906124e9565b60405180910390f35b3480156105f257600080fd5b5061060d600480360381019061060891906123b0565b610c6e565b60405161061a919061240b565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612504565b610c91565b604051610657919061240b565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061255d565b610cb1565b005b34801561069557600080fd5b506106b060048036038101906106ab9190612504565b610df4565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612609565b610e40565b6040516106e69190612435565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612504565b610ec7565b005b34801561072457600080fd5b5061072d610f4a565b60405161073a91906126a8565b60405180910390f35b606060038054610752906126f2565b80601f016020809104026020016040519081016040528092919081815260200182805461077e906126f2565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b6000806107e0610f70565b90506107ed818585610f78565b600191505092915050565b6000600254905090565b600760189054906101000a900460ff1681565b600080610820610f70565b905061082d858285611141565b6108388585856111cd565b60019150509392505050565b7f0000000000000000000000003ca5463e8c8c8b70afca3297dec02cf42496e09681565b60006012905090565b60008061087c610f70565b905061089d81858561088e8589610e40565b6108989190612752565b610f78565b600191505092915050565b600760179054906101000a900460ff1681565b600760159054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6004600760176101000a81548160ff021916908360ff1602179055506004600760186101000a81548160ff021916908360ff1602179055506109ac61198c565b565b6109b66119a0565b6000600760166101000a81548160ff021916908315150217905550565b6a108b2a2c2802909400000081565b6109ea6119a0565b600760159054906101000a900460ff1615610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906127d2565b60405180910390fd5b6001600760156101000a81548160ff021916908315150217905550565b6a108b2a2c2802909400000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a9f906126f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610acb906126f2565b8015610b185780601f10610aed57610100808354040283529160200191610b18565b820191906000526020600020905b815481529060010190602001808311610afb57829003601f168201915b5050505050905090565b610b2a6119a0565b610b348282611a1e565b5050565b610b406119a0565b60148260ff1611158015610b58575060148160ff1611155b610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e9061283e565b60405180910390fd5b81600760176101000a81548160ff021916908360ff16021790555080600760186101000a81548160ff021916908360ff1602179055505050565b600080610bdc610f70565b90506000610bea8286610e40565b905083811015610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c26906128d0565b60405180910390fd5b610c3c8286868403610f78565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c79610f70565b9050610c868185856111cd565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b610cb96119a0565b801515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290612962565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610de8919061240b565b60405180910390a25050565b610dfc6119a0565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ecf6119a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906129f4565b60405180910390fd5b610f4781611b51565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90612a86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90612b18565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111349190612435565b60405180910390a3505050565b600061114d8484610e40565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c757818110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612b84565b60405180910390fd5b6111c68484848403610f78565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390612c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290612ca8565b60405180910390fd5b600081116112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590612d3a565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113545750600760169054906101000a900460ff165b1561145c576a108b2a2c280290940000008111156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612dcc565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561145b576a108b2a2c280290940000008161140f84610924565b6114199190612752565b111561145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612e38565b60405180910390fd5b5b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115005750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156115195750600760149054906101000a900460ff16155b1561156e57600760159054906101000a900460ff1661156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490612ea4565b60405180910390fd5b5b600061157930610924565b9050600082821161158a578161158c565b825b9050600760149054906101000a900460ff161580156115f45750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561164a5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116a05750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116e5576001600760146101000a81548160ff0219169083151502179055506116c981611c17565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061179b5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156117a557600090505b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118495750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561185357600090505b8015611979576000600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118de576064600760189054906101000a900460ff1660ff16866118cd9190612ec4565b6118d79190612f35565b905061195e565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561195d576064600760179054906101000a900460ff1660ff16866119509190612ec4565b61195a9190612f35565b90505b5b808561196a9190612f66565b9450611977873083611c5f565b505b611984868686611c5f565b505050505050565b6119946119a0565b61199e6000611b51565b565b6119a8610f70565b73ffffffffffffffffffffffffffffffffffffffff166119c6610a66565b73ffffffffffffffffffffffffffffffffffffffff1614611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390612fe6565b60405180910390fd5b565b801515600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613078565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811115611c5c576000611c2b82611ed5565b9050807f860c0aa5520013080c2f65981705fcdea474d9f7c3daf954656ed5e65d692d1f60405160405180910390a2505b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590612c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490612ca8565b60405180910390fd5b611d48838383612167565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc59061310a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ebc9190612435565b60405180910390a3611ecf84848461216c565b50505050565b600080600267ffffffffffffffff811115611ef357611ef261312a565b5b604051908082528060200260200182016040528015611f215781602001602082028036833780820191505090505b5090503081600081518110611f3957611f38613159565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fe0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612004919061319d565b8160018151811061201857612017613159565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061207f30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610f78565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016120e39594939291906132c3565b600060405180830381600087803b1580156120fd57600080fd5b505af1158015612111573d6000803e3d6000fd5b50505050479150612161827f0000000000000000000000003ca5463e8c8c8b70afca3297dec02cf42496e09673ffffffffffffffffffffffffffffffffffffffff1661217190919063ffffffff16565b50919050565b505050565b505050565b804710156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90613369565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121da906133ba565b60006040518083038185875af1925050503d8060008114612217576040519150601f19603f3d011682016040523d82523d6000602084013e61221c565b606091505b5050905080612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790613441565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561229f578082015181840152602081019050612284565b60008484015250505050565b6000601f19601f8301169050919050565b60006122c782612265565b6122d18185612270565b93506122e1818560208601612281565b6122ea816122ab565b840191505092915050565b6000602082019050818103600083015261230f81846122bc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123478261231c565b9050919050565b6123578161233c565b811461236257600080fd5b50565b6000813590506123748161234e565b92915050565b6000819050919050565b61238d8161237a565b811461239857600080fd5b50565b6000813590506123aa81612384565b92915050565b600080604083850312156123c7576123c6612317565b5b60006123d585828601612365565b92505060206123e68582860161239b565b9150509250929050565b60008115159050919050565b612405816123f0565b82525050565b600060208201905061242060008301846123fc565b92915050565b61242f8161237a565b82525050565b600060208201905061244a6000830184612426565b92915050565b600060ff82169050919050565b61246681612450565b82525050565b6000602082019050612481600083018461245d565b92915050565b6000806000606084860312156124a05761249f612317565b5b60006124ae86828701612365565b93505060206124bf86828701612365565b92505060406124d08682870161239b565b9150509250925092565b6124e38161233c565b82525050565b60006020820190506124fe60008301846124da565b92915050565b60006020828403121561251a57612519612317565b5b600061252884828501612365565b91505092915050565b61253a816123f0565b811461254557600080fd5b50565b60008135905061255781612531565b92915050565b6000806040838503121561257457612573612317565b5b600061258285828601612365565b925050602061259385828601612548565b9150509250929050565b6125a681612450565b81146125b157600080fd5b50565b6000813590506125c38161259d565b92915050565b600080604083850312156125e0576125df612317565b5b60006125ee858286016125b4565b92505060206125ff858286016125b4565b9150509250929050565b600080604083850312156126205761261f612317565b5b600061262e85828601612365565b925050602061263f85828601612365565b9150509250929050565b6000819050919050565b600061266e6126696126648461231c565b612649565b61231c565b9050919050565b600061268082612653565b9050919050565b600061269282612675565b9050919050565b6126a281612687565b82525050565b60006020820190506126bd6000830184612699565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061270a57607f821691505b60208210810361271d5761271c6126c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061275d8261237a565b91506127688361237a565b92508282019050808211156127805761277f612723565b5b92915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006127bc601783612270565b91506127c782612786565b602082019050919050565b600060208201905081810360008301526127eb816127af565b9050919050565b7f43616e6e6f742073657420746178657320686967686572207468616e20323025600082015250565b6000612828602083612270565b9150612833826127f2565b602082019050919050565b600060208201905081810360008301526128578161281b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128ba602583612270565b91506128c58261285e565b604082019050919050565b600060208201905081810360008301526128e9816128ad565b9050919050565b7f46756b3a204163636f756e7420697320616c7265616479207468652076616c7560008201527f65206f6620276578636c75646564270000000000000000000000000000000000602082015250565b600061294c602f83612270565b9150612957826128f0565b604082019050919050565b6000602082019050818103600083015261297b8161293f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129de602683612270565b91506129e982612982565b604082019050919050565b60006020820190508181036000830152612a0d816129d1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a70602483612270565b9150612a7b82612a14565b604082019050919050565b60006020820190508181036000830152612a9f81612a63565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b02602283612270565b9150612b0d82612aa6565b604082019050919050565b60006020820190508181036000830152612b3181612af5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b6e601d83612270565b9150612b7982612b38565b602082019050919050565b60006020820190508181036000830152612b9d81612b61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c00602583612270565b9150612c0b82612ba4565b604082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c92602383612270565b9150612c9d82612c36565b604082019050919050565b60006020820190508181036000830152612cc181612c85565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d24602983612270565b9150612d2f82612cc8565b604082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612db6602883612270565b9150612dc182612d5a565b604082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f4d617820686f6c64696e6720616d6f756e740000000000000000000000000000600082015250565b6000612e22601283612270565b9150612e2d82612dec565b602082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000612e8e601283612270565b9150612e9982612e58565b602082019050919050565b60006020820190508181036000830152612ebd81612e81565b9050919050565b6000612ecf8261237a565b9150612eda8361237a565b9250828202612ee88161237a565b91508282048414831517612eff57612efe612723565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f408261237a565b9150612f4b8361237a565b925082612f5b57612f5a612f06565b5b828204905092915050565b6000612f718261237a565b9150612f7c8361237a565b9250828203905081811115612f9457612f93612723565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fd0602083612270565b9150612fdb82612f9a565b602082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f46533a204175746f6d61746564206d61726b6574206d616b657220706169722060008201527f697320616c72656164792073657420746f20746861742076616c756500000000602082015250565b6000613062603c83612270565b915061306d82613006565b604082019050919050565b6000602082019050818103600083015261309181613055565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130f4602683612270565b91506130ff82613098565b604082019050919050565b60006020820190508181036000830152613123816130e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506131978161234e565b92915050565b6000602082840312156131b3576131b2612317565b5b60006131c184828501613188565b91505092915050565b6000819050919050565b60006131ef6131ea6131e5846131ca565b612649565b61237a565b9050919050565b6131ff816131d4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61323a8161233c565b82525050565b600061324c8383613231565b60208301905092915050565b6000602082019050919050565b600061327082613205565b61327a8185613210565b935061328583613221565b8060005b838110156132b657815161329d8882613240565b97506132a883613258565b925050600181019050613289565b5085935050505092915050565b600060a0820190506132d86000830188612426565b6132e560208301876131f6565b81810360408301526132f78186613265565b905061330660608301856124da565b6133136080830184612426565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613353601d83612270565b915061335e8261331d565b602082019050919050565b6000602082019050818103600083015261338281613346565b9050919050565b600081905092915050565b50565b60006133a4600083613389565b91506133af82613394565b600082019050919050565b60006133c582613397565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061342b603a83612270565b9150613436826133cf565b604082019050919050565b6000602082019050818103600083015261345a8161341e565b905091905056fea2646970667358221220d84f85362fe5208bc6eec59a016cd7d655297cc25eb9932ab9986c7d56f30eda64736f6c63430008130033

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.