ETH Price: $4,040.65 (+4.79%)

Token

ERC-20: Stealth AI (STEALTH)
 

Overview

Max Total Supply

690,000,000 STEALTH

Holders

445

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
STEALTH

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-19
*/

/**

    APPLE APP STORE: https://apps.apple.com/us/app/stealth-ai/id6737063179
    Website: https://stealthai.org
    X: https://x.com/StealthAI_eth
    Telegram: https://t.me/StealthAi_eth 
    Gitbook: https://stealthai-organization.gitbook.io/stealthai.org/

**/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.28;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

/**
 * @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 v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

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

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

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

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

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

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed,
        uint256 tokenId
    );

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    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 returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal {
        _approve(owner, spender, value, true);
    }

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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

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

    function WETH() external pure returns (address);

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

contract STEALTH is Ownable, ERC20 {
    IUniswapV2Router public immutable uniswapV2Router;

    address public constant ZERO_ADDRESS = address(0);
    address public constant DEAD_ADDRESS = address(0xdEaD);

    address public immutable uniswapV2Pair;
    address public operationsWallet;
    address public developmentWallet;

    bool public isLimitsEnabled;
    bool public isCooldownEnabled;
    bool public isTaxEnabled;
    bool private inSwapBack;
    bool public isLaunched;

    uint256 public launchBlock;
    uint256 public launchTime;

    uint256 private lastSwapBackExecutionBlock;

    uint256 public constant MAX_FEE = 25;

    uint256 public maxBuy;
    uint256 public maxSell;
    uint256 public maxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyFee;
    uint256 public sellFee;
    uint256 public transferFee;

    mapping(address => bool) public isBot;
    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public isExcludedFromLimits;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event Launch();
    event SetOperationsWallet(address newWallet, address oldWallet);
    event SetDevelopmentWallet(address newWallet, address oldWallet);
    event SetLimitsEnabled(bool status);
    event SetCooldownEnabled(bool status);
    event SetTaxesEnabled(bool status);
    event SetMaxBuy(uint256 amount);
    event SetMaxSell(uint256 amount);
    event SetMaxWallet(uint256 amount);
    event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue);
    event SetBuyFees(uint256 newValue, uint256 oldValue);
    event SetSellFees(uint256 newValue, uint256 oldValue);
    event SetTransferFees(uint256 newValue, uint256 oldValue);
    event ExcludeFromFees(address account, bool isExcluded);
    event ExcludeFromLimits(address account, bool isExcluded);
    event SetBots(address account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address pair, bool value);
    event WithdrawStuckTokens(address token, uint256 amount);

    error AlreadyLaunched();
    error InvalidSender();
    error AddressZero();
    error AmountTooLow();
    error AmountTooHigh();
    error FeeTooHigh();
    error AMMAlreadySet();
    error NoNativeTokens();
    error NoTokens();
    error FailedToWithdrawNativeTokens();
    error BotDetected();
    error TransferDelay();
    error MaxBuyAmountExceed();
    error MaxSellAmountExceed();
    error MaxWalletAmountExceed();
    error NotLaunched();

    modifier lockSwapBack() {
        inSwapBack = true;
        _;
        inSwapBack = false;
    }

    constructor() Ownable(msg.sender) ERC20("Stealth AI", "STEALTH") {
        address sender = msg.sender;
        _mint(sender, 690_000_000 ether);
        uint256 totalSupply = totalSupply();

        operationsWallet = 0x29c2d263230741d450A3dBA8F09bc07A8d9e71b3;
        developmentWallet = 0xa083087A0E43D30ECd2e9314F584b498FfB49Dc9;

        address uniswapFeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c;

        maxBuy = (totalSupply * 100) / 100;
        maxSell = (totalSupply * 100) / 100;
        maxWallet = (totalSupply * 100) / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        isLimitsEnabled = false;
        isCooldownEnabled = false;
        isTaxEnabled = true;

        buyFee = 5;
        sellFee = 5;
        transferFee = 0;

        uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        _setAutomatedMarketMakerPair(uniswapV2Pair, true);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdEaD), true);
        _excludeFromFees(sender, true);
        _excludeFromFees(operationsWallet, true);
        _excludeFromFees(developmentWallet, true);
        _excludeFromFees(uniswapFeeCollector, true);
        _excludeFromLimits(address(this), true);
        _excludeFromLimits(address(0xdEaD), true);
        _excludeFromLimits(sender, true);
        _excludeFromLimits(operationsWallet, true);
        _excludeFromLimits(developmentWallet, true);
        _excludeFromLimits(uniswapFeeCollector, true);
    }

    receive() external payable {}

    fallback() external payable {}

    function launch() external onlyOwner {
        require(!isLaunched, AlreadyLaunched());
        isLaunched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
        emit Launch();
    }

    function setOperationsWallet(address _operationsWallet) external {
        require(msg.sender == operationsWallet, InvalidSender());
        require(_operationsWallet != address(0), AddressZero());
        address oldWallet = operationsWallet;
        operationsWallet = _operationsWallet;
        emit SetOperationsWallet(operationsWallet, oldWallet);
    }

    function setDevelopmentWallet(address _developmentWallet) external {
        require(msg.sender == developmentWallet, InvalidSender());
        require(_developmentWallet != address(0), AddressZero());
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit SetDevelopmentWallet(developmentWallet, oldWallet);
    }

    function setLimitsEnabled(bool value) external onlyOwner {
        isLimitsEnabled = value;
        emit SetLimitsEnabled(value);
    }

    function setCooldownEnabled(bool value) external onlyOwner {
        isCooldownEnabled = value;
        emit SetCooldownEnabled(value);
    }

    function setTaxesEnabled(bool value) external onlyOwner {
        isTaxEnabled = value;
        emit SetTaxesEnabled(value);
    }

    function setMaxBuy(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow());
        maxBuy = amount;
        emit SetMaxBuy(maxBuy);
    }

    function setMaxSell(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow());
        maxSell = amount;
        emit SetMaxSell(maxSell);
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 3) / 1000), AmountTooLow());
        maxWallet = amount;
        emit SetMaxWallet(maxWallet);
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        uint256 _totalSupply = totalSupply();
        require(amount >= (_totalSupply * 1) / 1000000, AmountTooLow());
        require(amount <= (_totalSupply * 5) / 1000, AmountTooHigh());
        uint256 oldValue = swapTokensAtAmount;
        swapTokensAtAmount = amount;
        emit SetSwapTokensAtAmount(amount, oldValue);
    }

    function setBuyFees(uint256 _buyFee) external onlyOwner {
        require(_buyFee <= MAX_FEE, FeeTooHigh());
        uint256 oldValue = buyFee;
        buyFee = _buyFee;
        emit SetBuyFees(_buyFee, oldValue);
    }

    function setSellFees(uint256 _sellFee) external onlyOwner {
        require(_sellFee <= MAX_FEE, FeeTooHigh());
        uint256 oldValue = sellFee;
        sellFee = _sellFee;
        emit SetSellFees(_sellFee, oldValue);
    }

    function setTransferFees(uint256 _transferFee) external onlyOwner {
        require(_transferFee <= MAX_FEE, FeeTooHigh());
        uint256 oldValue = transferFee;
        transferFee = _transferFee;
        emit SetTransferFees(_transferFee, oldValue);
    }

    function excludeFromFees(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromFees(accounts[i], value);
        }
    }

    function excludeFromLimits(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromLimits(accounts[i], value);
        }
    }

    function setBots(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (!automatedMarketMakerPairs[accounts[i]]) &&
                (accounts[i] != address(uniswapV2Router)) &&
                (accounts[i] != address(this)) &&
                (accounts[i] != address(0)) &&
                (!isExcludedFromFees[accounts[i]] &&
                    !isExcludedFromLimits[accounts[i]])
            ) _setBots(accounts[i], value);
        }
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        external
        onlyOwner
    {
        require(!automatedMarketMakerPairs[pair], AMMAlreadySet());
        _setAutomatedMarketMakerPair(pair, value);
    }

    function withdrawStuckTokens(address _token) external onlyOwner {
        address sender = msg.sender;
        uint256 amount;
        if (_token == address(0)) {
            bool success;
            amount = address(this).balance;
            require(amount > 0, NoNativeTokens());
            (success, ) = address(sender).call{value: amount}("");
            require(success, FailedToWithdrawNativeTokens());
        } else {
            amount = IERC20(_token).balanceOf(address(this));
            require(amount > 0, NoTokens());
            IERC20(_token).transfer(msg.sender, amount);
        }
        emit WithdrawStuckTokens(_token, amount);
    }

    function _transferOwnership(address newOwner) internal virtual override {
        address oldOwner = owner();
        if (oldOwner != address(0)) {
            _excludeFromFees(oldOwner, false);
            _excludeFromLimits(oldOwner, false);
        }
        _excludeFromFees(newOwner, true);
        _excludeFromLimits(newOwner, true);
        super._transferOwnership(newOwner);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        address sender = msg.sender;
        address origin = tx.origin;
        uint256 blockNumber = block.number;

        require(!isBot[from], BotDetected());
        require(sender == from || !isBot[sender], BotDetected());
        require(
            origin == from || origin == sender || !isBot[origin],
            BotDetected()
        );

        require(
            isLaunched ||
                isExcludedFromLimits[from] ||
                isExcludedFromLimits[to],
            NotLaunched()
        );

        bool limits = isLimitsEnabled &&
            !inSwapBack &&
            !(isExcludedFromLimits[from] || isExcludedFromLimits[to]);
        if (limits) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdEaD)
            ) {
                if (isCooldownEnabled) {
                    if (to != address(uniswapV2Router) && to != uniswapV2Pair) {
                        require(
                            _holderLastTransferTimestamp[origin] <
                                blockNumber - 3 &&
                                _holderLastTransferTimestamp[to] <
                                blockNumber - 3,
                            TransferDelay()
                        );
                        _holderLastTransferTimestamp[origin] = blockNumber;
                        _holderLastTransferTimestamp[to] = blockNumber;
                    }
                }

                if (
                    automatedMarketMakerPairs[from] && !isExcludedFromLimits[to]
                ) {
                    require(amount <= maxBuy, MaxBuyAmountExceed());
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        MaxWalletAmountExceed()
                    );
                } else if (
                    automatedMarketMakerPairs[to] && !isExcludedFromLimits[from]
                ) {
                    require(amount <= maxSell, MaxSellAmountExceed());
                } else if (!isExcludedFromLimits[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        MaxWalletAmountExceed()
                    );
                }
            }
        }

        bool takeFee = isTaxEnabled &&
            !inSwapBack &&
            !(isExcludedFromFees[from] || isExcludedFromFees[to]);

        if (takeFee) {
            uint256 fees = 0;
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fees = (amount * sellFee) / 100;
            } else if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fees = (amount * buyFee) / 100;
            } else if (
                !automatedMarketMakerPairs[to] &&
                !automatedMarketMakerPairs[from] &&
                transferFee > 0
            ) {
                fees = (amount * transferFee) / 100;
            }

            if (fees > 0) {
                amount -= fees;
                super._update(from, address(this), fees);
            }
        }

        uint256 balance = balanceOf(address(this));
        bool shouldSwap = balance >= swapTokensAtAmount;
        if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) {
            if (blockNumber > lastSwapBackExecutionBlock) {
                _swapBack(balance);
                lastSwapBackExecutionBlock = blockNumber;
            }
        }

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

    function _swapBack(uint256 balance) internal virtual lockSwapBack {
        bool success;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256 maxSwapAmount = swapTokensAtAmount * 20;

        if (balance > maxSwapAmount) {
            balance = maxSwapAmount;
        }

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balance,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 ethBalance = address(this).balance;

        uint256 ethForDevelopment = ethBalance / 4;

        uint256 ethForOperations = ethBalance - ethForDevelopment;

        (success, ) = address(operationsWallet).call{value: ethForOperations}(
            ""
        );

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}(
            ""
        );
    }

    function _excludeFromFees(address account, bool value) internal virtual {
        isExcludedFromFees[account] = value;
        emit ExcludeFromFees(account, value);
    }

    function _excludeFromLimits(address account, bool value) internal virtual {
        isExcludedFromLimits[account] = value;
        emit ExcludeFromLimits(account, value);
    }

    function _setBots(address account, bool value) internal virtual {
        isBot[account] = value;
        emit SetBots(account, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value)
        internal
        virtual
    {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferDelay","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","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":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405234801561000f575f5ffd5b50604080518082018252600a815269537465616c746820414960b01b602080830191909152825180840190935260078352660a6a88a8298a8960cb1b9083015290338061007657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61007f816103e7565b50600461008c8382611165565b5060056100998282611165565b503391506100b59050816b023ac12ef364587bf200000061042f565b5f6100bf60035490565b600680546001600160a01b03199081167329c2d263230741d450a3dba8f09bc07a8d9e71b3179091556007805490911673a083087a0e43d30ecd2e9314f584b498ffb49dc9179055905070fee13a103a10d593b9ae06b3e05f2e7e1c60646101278382611233565b6101319190611250565b600b5560646101408382611233565b61014a9190611250565b600c5560646101598382611233565b6101639190611250565b600d55612710610174836005611233565b61017e9190611250565b600e556007805462ffffff60a01b1916600160b01b1790556005600f8190556010555f601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101f7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021b919061126f565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610268573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028c919061126f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fa919061126f565b6001600160a01b031660a0819052610313906001610463565b610327306080515f196104c660201b60201c565b6103323060016104d8565b61033f61dead60016104d8565b61034a8360016104d8565b600654610361906001600160a01b031660016104d8565b600754610378906001600160a01b031660016104d8565b6103838160016104d8565b61038e306001610533565b61039b61dead6001610533565b6103a6836001610533565b6006546103bd906001600160a01b03166001610533565b6007546103d4906001600160a01b03166001610533565b6103df816001610533565b505050611346565b5f546001600160a01b0316801561040c57610402815f6104d8565b61040c815f610533565b6104178260016104d8565b610422826001610533565b61042b8261058e565b5050565b6001600160a01b0382166104585760405163ec442f0560e01b81525f600482015260240161006d565b61042b5f83836105dd565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104d38383836001610c7d565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016104ba565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016104ba565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff161561061c576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b0316148061065457506001600160a01b0383165f9081526012602052604090205460ff16155b610671576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b031614806106a25750826001600160a01b0316826001600160a01b0316145b806106c557506001600160a01b0382165f9081526012602052604090205460ff16155b6106e2576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff168061071157506001600160a01b0386165f9081526014602052604090205460ff165b8061073357506001600160a01b0385165f9081526014602052604090205460ff165b61075057604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff1680156107755750600754600160b81b900460ff16155b80156107bb57506001600160a01b0387165f9081526014602052604090205460ff16806107b957506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015610a79575f546001600160a01b038881169116148015906107ed57505f546001600160a01b03878116911614155b801561080157506001600160a01b03861615155b801561081857506001600160a01b03861661dead14155b15610a7957600754600160a81b900460ff16156108ff576080516001600160a01b0316866001600160a01b031614158015610867575060a0516001600160a01b0316866001600160a01b031614155b156108ff5761087760038361129c565b6001600160a01b0384165f908152601660205260409020541080156108bc57506108a260038361129c565b6001600160a01b0387165f90815260166020526040902054105b6108d957604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff16801561093e57506001600160a01b0386165f9081526014602052604090205460ff16155b156109af57600b5485111561096657604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f9081526001602052604090205461098b90876112af565b11156109aa5760405163d867451160e01b815260040160405180910390fd5b610a79565b6001600160a01b0386165f9081526015602052604090205460ff1680156109ee57506001600160a01b0387165f9081526014602052604090205460ff16155b15610a1657600c548511156109aa576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16610a7957600d546001600160a01b0387165f90815260016020526040902054610a5a90876112af565b1115610a795760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015610a9e5750600754600160b81b900460ff16155b8015610ae457506001600160a01b0388165f9081526013602052604090205460ff1680610ae257506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015610c05576001600160a01b0387165f9081526015602052604081205460ff168015610b1457505f601054115b15610b3a57606460105488610b299190611233565b610b339190611250565b9050610be6565b6001600160a01b0389165f9081526015602052604090205460ff168015610b6257505f600f54115b15610b77576064600f5488610b299190611233565b6001600160a01b0388165f9081526015602052604090205460ff16158015610bb757506001600160a01b0389165f9081526015602052604090205460ff16155b8015610bc457505f601154115b15610be657606460115488610bd99190611233565b610be39190611250565b90505b8015610c0357610bf6818861129c565b9650610c03893083610d50565b505b305f90815260016020526040902054600e54811015828015610c3f57506001600160a01b038a165f9081526015602052604090205460ff16155b8015610c485750805b15610c6657600a54851115610c6657610c6082610e76565b600a8590555b610c718a8a8a610d50565b50505050505050505050565b6001600160a01b038416610ca65760405163e602df0560e01b81525f600482015260240161006d565b6001600160a01b038316610ccf57604051634a1406b160e11b81525f600482015260240161006d565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610d4a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d4191815260200190565b60405180910390a35b50505050565b6001600160a01b038316610d7a578060035f828254610d6f91906112af565b90915550610dea9050565b6001600160a01b0383165f9081526001602052604090205481811015610dcc5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161006d565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610e0657600380548290039055610e24565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e6991815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610ec057610ec06112c2565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f1e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f42919061126f565b81600181518110610f5557610f556112c2565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e546014610f859190611233565b905080841115610f93578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401610fc99594939291906112d6565b5f604051808303815f87803b158015610fe0575f5ffd5b505af1158015610ff2573d5f5f3e3d5ffd5b504792505f91506110069050600483611250565b90505f611013828461129c565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f811461105e576040519150601f19603f3d011682016040523d82523d5f602084013e611063565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f81146110b0576040519150601f19603f3d011682016040523d82523d5f602084013e6110b5565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806110f657607f821691505b60208210810361111457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104d357805f5260205f20601f840160051c8101602085101561113f5750805b601f840160051c820191505b8181101561115e575f815560010161114b565b5050505050565b81516001600160401b0381111561117e5761117e6110ce565b6111928161118c84546110e2565b8461111a565b6020601f8211600181146111c4575f83156111ad5750848201515b5f19600385901b1c1916600184901b17845561115e565b5f84815260208120601f198516915b828110156111f357878501518255602094850194600190920191016111d3565b508482101561121057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761124a5761124a61121f565b92915050565b5f8261126a57634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561127f575f5ffd5b81516001600160a01b0381168114611295575f5ffd5b9392505050565b8181038181111561124a5761124a61121f565b8082018082111561124a5761124a61121f565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156113265783516001600160a01b03168352602093840193909201916001016112ff565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05161285b61138a5f395f81816104e60152611c6101525f81816103ac01528181610ed301528181611c240152818161228d0152612373015261285b5ff3fe60806040526004361061030d575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610958578063f53bc83514610977578063f8b45b0514610996578063fd72e22a146109ab57005b8063e6c1909b146108fa578063ee5ecc891461091a578063ef998cf01461093957005b8063d5759ba3116100c7578063d5759ba314610862578063dcf7aef314610882578063dd62ed3e146108a1578063e2f45605146108e557005b8063cb9637281461080f578063d00efb2f1461082e578063d26ed3e31461084357005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f514610799578063b8eb3546146107c7578063bc063e1a146107dc578063c04a5414146107f057005b8063acb2ad6f14610746578063ad29ffde1461075b578063afa4f3b21461077a57005b80638da5cb5b1461069a57806395927c25146106b657806395d89b41146106d55780639a7a23d6146106e95780639c0db5f314610708578063a9059cbb1461072757005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d61461063d578063715018a61461065257806372ac248614610666578063790ca4131461068557005b80635d0044ca146105ca5780636ca541e5146105e957806370a082311461060957005b8063538ba4f911610240578063538ba4f91461054b5780635932ead11461055e57806359512ab01461057d5780635cce86cd1461059c57005b806349bd5a5e146104d55780634e6fd6c4146105085780634fbee1931461051d57005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104585780633bbac5791461047357806341aea9de146104a157806347062402146104c057005b806323b872dd146104045780632b14ca5614610423578063307aebc91461043857005b806301339c211461030f57806306fdde0314610323578063095ea7b31461034d578063106a5a8f1461037c5780631694505e1461039b57806318160ddd146103e6575b005b34801561031a575f5ffd5b5061030d6109ca565b34801561032e575f5ffd5b50610337610a42565b60405161034491906124b5565b60405180910390f35b348015610358575f5ffd5b5061036c6103673660046124fe565b610ad2565b6040519015158152602001610344565b348015610387575f5ffd5b5061030d610396366004612535565b610aeb565b3480156103a6575f5ffd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610344565b3480156103f1575f5ffd5b506003545b604051908152602001610344565b34801561040f575f5ffd5b5061036c61041e3660046125b7565b610b3b565b34801561042e575f5ffd5b506103f660105481565b348015610443575f5ffd5b5060075461036c90600160c01b900460ff1681565b348015610463575f5ffd5b5060405160128152602001610344565b34801561047e575f5ffd5b5061036c61048d3660046125f5565b60126020525f908152604090205460ff1681565b3480156104ac575f5ffd5b5061030d6104bb366004612617565b610b5e565b3480156104cb575f5ffd5b506103f6600f5481565b3480156104e0575f5ffd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b348015610513575f5ffd5b506103ce61dead81565b348015610528575f5ffd5b5061036c6105373660046125f5565b60136020525f908152604090205460ff1681565b348015610556575f5ffd5b506103ce5f81565b348015610569575f5ffd5b5061030d610578366004612617565b610bbe565b348015610588575f5ffd5b5061030d610597366004612617565b610c13565b3480156105a7575f5ffd5b5061036c6105b63660046125f5565b60146020525f908152604090205460ff1681565b3480156105d5575f5ffd5b5061030d6105e4366004612632565b610c68565b3480156105f4575f5ffd5b5060075461036c90600160a81b900460ff1681565b348015610614575f5ffd5b506103f66106233660046125f5565b6001600160a01b03165f9081526001602052604090205490565b348015610648575f5ffd5b506103f6600b5481565b34801561065d575f5ffd5b5061030d610ce6565b348015610671575f5ffd5b5061030d6106803660046125f5565b610cf9565b348015610690575f5ffd5b506103f660095481565b3480156106a5575f5ffd5b505f546001600160a01b03166103ce565b3480156106c1575f5ffd5b5061030d6106d0366004612632565b610dab565b3480156106e0575f5ffd5b50610337610e13565b3480156106f4575f5ffd5b5061030d610703366004612649565b610e22565b348015610713575f5ffd5b5061030d610722366004612535565b610e71565b348015610732575f5ffd5b5061036c6107413660046124fe565b61107e565b348015610751575f5ffd5b506103f660115481565b348015610766575f5ffd5b5061030d610775366004612535565b61108b565b348015610785575f5ffd5b5061030d610794366004612632565b6110d5565b3480156107a4575f5ffd5b5061036c6107b33660046125f5565b60156020525f908152604090205460ff1681565b3480156107d2575f5ffd5b506103f6600c5481565b3480156107e7575f5ffd5b506103f6601981565b3480156107fb575f5ffd5b506007546103ce906001600160a01b031681565b34801561081a575f5ffd5b5061030d6108293660046125f5565b6111a1565b348015610839575f5ffd5b506103f660085481565b34801561084e575f5ffd5b5061030d61085d366004612632565b611386565b34801561086d575f5ffd5b5060075461036c90600160a01b900460ff1681565b34801561088d575f5ffd5b5061030d61089c366004612632565b6113ee565b3480156108ac575f5ffd5b506103f66108bb366004612680565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f0575f5ffd5b506103f6600e5481565b348015610905575f5ffd5b5060075461036c90600160b01b900460ff1681565b348015610925575f5ffd5b5061030d6109343660046125f5565b611456565b348015610944575f5ffd5b5061030d610953366004612632565b611500565b348015610963575f5ffd5b5061030d6109723660046125f5565b61157e565b348015610982575f5ffd5b5061030d610991366004612632565b6115c0565b3480156109a1575f5ffd5b506103f6600d5481565b3480156109b6575f5ffd5b506006546103ce906001600160a01b031681565b6109d261163e565b600754600160c01b900460ff16156109fd576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a51906126ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d906126ac565b8015610ac85780601f10610a9f57610100808354040283529160200191610ac8565b820191905f5260205f20905b815481529060010190602001808311610aab57829003601f168201915b5050505050905090565b5f33610adf81858561166a565b60019150505b92915050565b610af361163e565b5f5b82811015610b3557610b2d848483818110610b1257610b126126e4565b9050602002016020810190610b2791906125f5565b8361167c565b600101610af5565b50505050565b5f33610b488582856116d7565b610b5385858561174c565b506001949350505050565b610b6661163e565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bb390831515815260200190565b60405180910390a150565b610bc661163e565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bb390831515815260200190565b610c1b61163e565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bb390831515815260200190565b610c7061163e565b6103e8610c7c60035490565b610c8790600361270c565b610c919190612723565b811015610cb157604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bb3565b610cee61163e565b610cf75f6117a9565b565b6007546001600160a01b03163314610d2457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610d4b57604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610db361163e565b6019811115610dd55760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d9f565b606060058054610a51906126ac565b610e2a61163e565b6001600160a01b0382165f9081526015602052604090205460ff1615610e63576040516304eb79b560e31b815260040160405180910390fd5b610e6d82826117ed565b5050565b610e7961163e565b5f5b82811015610b355760155f858584818110610e9857610e986126e4565b9050602002016020810190610ead91906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f2e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610f0d57610f0d6126e4565b9050602002016020810190610f2291906125f5565b6001600160a01b031614155b8015610f69575030848483818110610f4857610f486126e4565b9050602002016020810190610f5d91906125f5565b6001600160a01b031614155b8015610fa457505f848483818110610f8357610f836126e4565b9050602002016020810190610f9891906125f5565b6001600160a01b031614155b8015611041575060135f858584818110610fc057610fc06126e4565b9050602002016020810190610fd591906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015611041575060145f85858481811061100e5761100e6126e4565b905060200201602081019061102391906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16155b156110765761107684848381811061105b5761105b6126e4565b905060200201602081019061107091906125f5565b83611848565b600101610e7b565b5f33610adf81858561174c565b61109361163e565b5f5b82811015610b35576110cd8484838181106110b2576110b26126e4565b90506020020160208101906110c791906125f5565b836118a3565b600101611095565b6110dd61163e565b5f6110e760035490565b9050620f42406110f882600161270c565b6111029190612723565b82101561112257604051631fbaba3560e01b815260040160405180910390fd5b6103e861113082600561270c565b61113a9190612723565b82111561115a5760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111a961163e565b335f6001600160a01b03831661124f5750475f816111da57604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611220576040519150601f19603f3d011682016040523d82523d5f602084013e611225565b606091505b5050809150508061124957604051633398652560e11b815260040160405180910390fd5b50611347565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611291573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b59190612742565b90505f81116112d75760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611321573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113459190612759565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611194565b61138e61163e565b60198111156113b05760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d9f565b6113f661163e565b60198111156114185760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d9f565b6006546001600160a01b0316331461148157604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166114a857604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d9f565b61150861163e565b6103e861151460035490565b61151f90600261270c565b6115299190612723565b81101561154957604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bb3565b61158661163e565b6001600160a01b0381166115b457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6115bd816117a9565b50565b6115c861163e565b6103e86115d460035490565b6115df90600261270c565b6115e99190612723565b81101561160957604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bb3565b5f546001600160a01b03163314610cf75760405163118cdaa760e01b81523360048201526024016115ab565b61167783838360016118fe565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d9f565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b35578181101561173e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016115ab565b610b3584848484035f6118fe565b6001600160a01b03831661177557604051634b637e8f60e11b81525f60048201526024016115ab565b6001600160a01b03821661179e5760405163ec442f0560e01b81525f60048201526024016115ab565b6116778383836119d0565b5f546001600160a01b031680156117ce576117c4815f6118a3565b6117ce815f61167c565b6117d98260016118a3565b6117e482600161167c565b610e6d826120ac565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d9f565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d9f565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d9f565b6001600160a01b0384166119275760405163e602df0560e01b81525f60048201526024016115ab565b6001600160a01b03831661195057604051634a1406b160e11b81525f60048201526024016115ab565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b3557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516119c291815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff1615611a0f576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b03161480611a4757506001600160a01b0383165f9081526012602052604090205460ff16155b611a64576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a955750826001600160a01b0316826001600160a01b0316145b80611ab857506001600160a01b0382165f9081526012602052604090205460ff16155b611ad5576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611b0457506001600160a01b0386165f9081526014602052604090205460ff165b80611b2657506001600160a01b0385165f9081526014602052604090205460ff165b611b4357604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b685750600754600160b81b900460ff16155b8015611bae57506001600160a01b0387165f9081526014602052604090205460ff1680611bac57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611ea8575f546001600160a01b03888116911614801590611be057505f546001600160a01b03878116911614155b8015611bf457506001600160a01b03861615155b8015611c0b57506001600160a01b03861661dead14155b15611ea857600754600160a81b900460ff1615611d2e577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614158015611c9657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b15611d2e57611ca6600383612774565b6001600160a01b0384165f90815260166020526040902054108015611ceb5750611cd1600383612774565b6001600160a01b0387165f90815260166020526040902054105b611d0857604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d6d57506001600160a01b0386165f9081526014602052604090205460ff16155b15611dde57600b54851115611d9557604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611dba9087612787565b1115611dd95760405163d867451160e01b815260040160405180910390fd5b611ea8565b6001600160a01b0386165f9081526015602052604090205460ff168015611e1d57506001600160a01b0387165f9081526014602052604090205460ff16155b15611e4557600c54851115611dd9576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611ea857600d546001600160a01b0387165f90815260016020526040902054611e899087612787565b1115611ea85760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611ecd5750600754600160b81b900460ff16155b8015611f1357506001600160a01b0388165f9081526013602052604090205460ff1680611f1157506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015612034576001600160a01b0387165f9081526015602052604081205460ff168015611f4357505f601054115b15611f6957606460105488611f58919061270c565b611f629190612723565b9050612015565b6001600160a01b0389165f9081526015602052604090205460ff168015611f9157505f600f54115b15611fa6576064600f5488611f58919061270c565b6001600160a01b0388165f9081526015602052604090205460ff16158015611fe657506001600160a01b0389165f9081526015602052604090205460ff16155b8015611ff357505f601154115b1561201557606460115488612008919061270c565b6120129190612723565b90505b8015612032576120258188612774565b96506120328930836120fb565b505b305f90815260016020526040902054600e5481101582801561206e57506001600160a01b038a165f9081526015602052604090205460ff16155b80156120775750805b1561209557600a548511156120955761208f82612221565b600a8590555b6120a08a8a8a6120fb565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316612125578060035f82825461211a9190612787565b909155506121959050565b6001600160a01b0383165f90815260016020526040902054818110156121775760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016115ab565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b0382166121b1576003805482900390556121cf565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161221491815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061226b5761226b6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230b919061279a565b8160018151811061231e5761231e6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54601461234e919061270c565b90508084111561235c578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123b09087905f908790309042906004016127b5565b5f604051808303815f87803b1580156123c7575f5ffd5b505af11580156123d9573d5f5f3e3d5ffd5b504792505f91506123ed9050600483612723565b90505f6123fa8284612774565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114612445576040519150601f19603f3d011682016040523d82523d5f602084013e61244a565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612497576040519150601f19603f3d011682016040523d82523d5f602084013e61249c565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146115bd575f5ffd5b5f5f6040838503121561250f575f5ffd5b823561251a816124ea565b946020939093013593505050565b80151581146115bd575f5ffd5b5f5f5f60408486031215612547575f5ffd5b833567ffffffffffffffff81111561255d575f5ffd5b8401601f8101861361256d575f5ffd5b803567ffffffffffffffff811115612583575f5ffd5b8660208260051b8401011115612597575f5ffd5b6020918201945092508401356125ac81612528565b809150509250925092565b5f5f5f606084860312156125c9575f5ffd5b83356125d4816124ea565b925060208401356125e4816124ea565b929592945050506040919091013590565b5f60208284031215612605575f5ffd5b8135612610816124ea565b9392505050565b5f60208284031215612627575f5ffd5b813561261081612528565b5f60208284031215612642575f5ffd5b5035919050565b5f5f6040838503121561265a575f5ffd5b8235612665816124ea565b9150602083013561267581612528565b809150509250929050565b5f5f60408385031215612691575f5ffd5b823561269c816124ea565b91506020830135612675816124ea565b600181811c908216806126c057607f821691505b6020821081036126de57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610ae557610ae56126f8565b5f8261273d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612752575f5ffd5b5051919050565b5f60208284031215612769575f5ffd5b815161261081612528565b81810381811115610ae557610ae56126f8565b80820180821115610ae557610ae56126f8565b5f602082840312156127aa575f5ffd5b8151612610816124ea565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156128055783516001600160a01b03168352602093840193909201916001016127de565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212200f8ce1d99956ca4c1bd28011926418055c994605167f832f4ab16a0d07a8743964736f6c634300081c0033

Deployed Bytecode

0x60806040526004361061030d575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610958578063f53bc83514610977578063f8b45b0514610996578063fd72e22a146109ab57005b8063e6c1909b146108fa578063ee5ecc891461091a578063ef998cf01461093957005b8063d5759ba3116100c7578063d5759ba314610862578063dcf7aef314610882578063dd62ed3e146108a1578063e2f45605146108e557005b8063cb9637281461080f578063d00efb2f1461082e578063d26ed3e31461084357005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f514610799578063b8eb3546146107c7578063bc063e1a146107dc578063c04a5414146107f057005b8063acb2ad6f14610746578063ad29ffde1461075b578063afa4f3b21461077a57005b80638da5cb5b1461069a57806395927c25146106b657806395d89b41146106d55780639a7a23d6146106e95780639c0db5f314610708578063a9059cbb1461072757005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d61461063d578063715018a61461065257806372ac248614610666578063790ca4131461068557005b80635d0044ca146105ca5780636ca541e5146105e957806370a082311461060957005b8063538ba4f911610240578063538ba4f91461054b5780635932ead11461055e57806359512ab01461057d5780635cce86cd1461059c57005b806349bd5a5e146104d55780634e6fd6c4146105085780634fbee1931461051d57005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104585780633bbac5791461047357806341aea9de146104a157806347062402146104c057005b806323b872dd146104045780632b14ca5614610423578063307aebc91461043857005b806301339c211461030f57806306fdde0314610323578063095ea7b31461034d578063106a5a8f1461037c5780631694505e1461039b57806318160ddd146103e6575b005b34801561031a575f5ffd5b5061030d6109ca565b34801561032e575f5ffd5b50610337610a42565b60405161034491906124b5565b60405180910390f35b348015610358575f5ffd5b5061036c6103673660046124fe565b610ad2565b6040519015158152602001610344565b348015610387575f5ffd5b5061030d610396366004612535565b610aeb565b3480156103a6575f5ffd5b506103ce7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610344565b3480156103f1575f5ffd5b506003545b604051908152602001610344565b34801561040f575f5ffd5b5061036c61041e3660046125b7565b610b3b565b34801561042e575f5ffd5b506103f660105481565b348015610443575f5ffd5b5060075461036c90600160c01b900460ff1681565b348015610463575f5ffd5b5060405160128152602001610344565b34801561047e575f5ffd5b5061036c61048d3660046125f5565b60126020525f908152604090205460ff1681565b3480156104ac575f5ffd5b5061030d6104bb366004612617565b610b5e565b3480156104cb575f5ffd5b506103f6600f5481565b3480156104e0575f5ffd5b506103ce7f00000000000000000000000056ed75429e0f20b3f646dd29a4f5c7df212b4db981565b348015610513575f5ffd5b506103ce61dead81565b348015610528575f5ffd5b5061036c6105373660046125f5565b60136020525f908152604090205460ff1681565b348015610556575f5ffd5b506103ce5f81565b348015610569575f5ffd5b5061030d610578366004612617565b610bbe565b348015610588575f5ffd5b5061030d610597366004612617565b610c13565b3480156105a7575f5ffd5b5061036c6105b63660046125f5565b60146020525f908152604090205460ff1681565b3480156105d5575f5ffd5b5061030d6105e4366004612632565b610c68565b3480156105f4575f5ffd5b5060075461036c90600160a81b900460ff1681565b348015610614575f5ffd5b506103f66106233660046125f5565b6001600160a01b03165f9081526001602052604090205490565b348015610648575f5ffd5b506103f6600b5481565b34801561065d575f5ffd5b5061030d610ce6565b348015610671575f5ffd5b5061030d6106803660046125f5565b610cf9565b348015610690575f5ffd5b506103f660095481565b3480156106a5575f5ffd5b505f546001600160a01b03166103ce565b3480156106c1575f5ffd5b5061030d6106d0366004612632565b610dab565b3480156106e0575f5ffd5b50610337610e13565b3480156106f4575f5ffd5b5061030d610703366004612649565b610e22565b348015610713575f5ffd5b5061030d610722366004612535565b610e71565b348015610732575f5ffd5b5061036c6107413660046124fe565b61107e565b348015610751575f5ffd5b506103f660115481565b348015610766575f5ffd5b5061030d610775366004612535565b61108b565b348015610785575f5ffd5b5061030d610794366004612632565b6110d5565b3480156107a4575f5ffd5b5061036c6107b33660046125f5565b60156020525f908152604090205460ff1681565b3480156107d2575f5ffd5b506103f6600c5481565b3480156107e7575f5ffd5b506103f6601981565b3480156107fb575f5ffd5b506007546103ce906001600160a01b031681565b34801561081a575f5ffd5b5061030d6108293660046125f5565b6111a1565b348015610839575f5ffd5b506103f660085481565b34801561084e575f5ffd5b5061030d61085d366004612632565b611386565b34801561086d575f5ffd5b5060075461036c90600160a01b900460ff1681565b34801561088d575f5ffd5b5061030d61089c366004612632565b6113ee565b3480156108ac575f5ffd5b506103f66108bb366004612680565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f0575f5ffd5b506103f6600e5481565b348015610905575f5ffd5b5060075461036c90600160b01b900460ff1681565b348015610925575f5ffd5b5061030d6109343660046125f5565b611456565b348015610944575f5ffd5b5061030d610953366004612632565b611500565b348015610963575f5ffd5b5061030d6109723660046125f5565b61157e565b348015610982575f5ffd5b5061030d610991366004612632565b6115c0565b3480156109a1575f5ffd5b506103f6600d5481565b3480156109b6575f5ffd5b506006546103ce906001600160a01b031681565b6109d261163e565b600754600160c01b900460ff16156109fd576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a51906126ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d906126ac565b8015610ac85780601f10610a9f57610100808354040283529160200191610ac8565b820191905f5260205f20905b815481529060010190602001808311610aab57829003601f168201915b5050505050905090565b5f33610adf81858561166a565b60019150505b92915050565b610af361163e565b5f5b82811015610b3557610b2d848483818110610b1257610b126126e4565b9050602002016020810190610b2791906125f5565b8361167c565b600101610af5565b50505050565b5f33610b488582856116d7565b610b5385858561174c565b506001949350505050565b610b6661163e565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bb390831515815260200190565b60405180910390a150565b610bc661163e565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bb390831515815260200190565b610c1b61163e565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bb390831515815260200190565b610c7061163e565b6103e8610c7c60035490565b610c8790600361270c565b610c919190612723565b811015610cb157604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bb3565b610cee61163e565b610cf75f6117a9565b565b6007546001600160a01b03163314610d2457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610d4b57604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610db361163e565b6019811115610dd55760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d9f565b606060058054610a51906126ac565b610e2a61163e565b6001600160a01b0382165f9081526015602052604090205460ff1615610e63576040516304eb79b560e31b815260040160405180910390fd5b610e6d82826117ed565b5050565b610e7961163e565b5f5b82811015610b355760155f858584818110610e9857610e986126e4565b9050602002016020810190610ead91906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f2e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610f0d57610f0d6126e4565b9050602002016020810190610f2291906125f5565b6001600160a01b031614155b8015610f69575030848483818110610f4857610f486126e4565b9050602002016020810190610f5d91906125f5565b6001600160a01b031614155b8015610fa457505f848483818110610f8357610f836126e4565b9050602002016020810190610f9891906125f5565b6001600160a01b031614155b8015611041575060135f858584818110610fc057610fc06126e4565b9050602002016020810190610fd591906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015611041575060145f85858481811061100e5761100e6126e4565b905060200201602081019061102391906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16155b156110765761107684848381811061105b5761105b6126e4565b905060200201602081019061107091906125f5565b83611848565b600101610e7b565b5f33610adf81858561174c565b61109361163e565b5f5b82811015610b35576110cd8484838181106110b2576110b26126e4565b90506020020160208101906110c791906125f5565b836118a3565b600101611095565b6110dd61163e565b5f6110e760035490565b9050620f42406110f882600161270c565b6111029190612723565b82101561112257604051631fbaba3560e01b815260040160405180910390fd5b6103e861113082600561270c565b61113a9190612723565b82111561115a5760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111a961163e565b335f6001600160a01b03831661124f5750475f816111da57604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611220576040519150601f19603f3d011682016040523d82523d5f602084013e611225565b606091505b5050809150508061124957604051633398652560e11b815260040160405180910390fd5b50611347565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611291573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b59190612742565b90505f81116112d75760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611321573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113459190612759565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611194565b61138e61163e565b60198111156113b05760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d9f565b6113f661163e565b60198111156114185760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d9f565b6006546001600160a01b0316331461148157604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166114a857604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d9f565b61150861163e565b6103e861151460035490565b61151f90600261270c565b6115299190612723565b81101561154957604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bb3565b61158661163e565b6001600160a01b0381166115b457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6115bd816117a9565b50565b6115c861163e565b6103e86115d460035490565b6115df90600261270c565b6115e99190612723565b81101561160957604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bb3565b5f546001600160a01b03163314610cf75760405163118cdaa760e01b81523360048201526024016115ab565b61167783838360016118fe565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d9f565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b35578181101561173e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016115ab565b610b3584848484035f6118fe565b6001600160a01b03831661177557604051634b637e8f60e11b81525f60048201526024016115ab565b6001600160a01b03821661179e5760405163ec442f0560e01b81525f60048201526024016115ab565b6116778383836119d0565b5f546001600160a01b031680156117ce576117c4815f6118a3565b6117ce815f61167c565b6117d98260016118a3565b6117e482600161167c565b610e6d826120ac565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d9f565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d9f565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d9f565b6001600160a01b0384166119275760405163e602df0560e01b81525f60048201526024016115ab565b6001600160a01b03831661195057604051634a1406b160e11b81525f60048201526024016115ab565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b3557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516119c291815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff1615611a0f576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b03161480611a4757506001600160a01b0383165f9081526012602052604090205460ff16155b611a64576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a955750826001600160a01b0316826001600160a01b0316145b80611ab857506001600160a01b0382165f9081526012602052604090205460ff16155b611ad5576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611b0457506001600160a01b0386165f9081526014602052604090205460ff165b80611b2657506001600160a01b0385165f9081526014602052604090205460ff165b611b4357604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b685750600754600160b81b900460ff16155b8015611bae57506001600160a01b0387165f9081526014602052604090205460ff1680611bac57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611ea8575f546001600160a01b03888116911614801590611be057505f546001600160a01b03878116911614155b8015611bf457506001600160a01b03861615155b8015611c0b57506001600160a01b03861661dead14155b15611ea857600754600160a81b900460ff1615611d2e577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316866001600160a01b031614158015611c9657507f00000000000000000000000056ed75429e0f20b3f646dd29a4f5c7df212b4db96001600160a01b0316866001600160a01b031614155b15611d2e57611ca6600383612774565b6001600160a01b0384165f90815260166020526040902054108015611ceb5750611cd1600383612774565b6001600160a01b0387165f90815260166020526040902054105b611d0857604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d6d57506001600160a01b0386165f9081526014602052604090205460ff16155b15611dde57600b54851115611d9557604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611dba9087612787565b1115611dd95760405163d867451160e01b815260040160405180910390fd5b611ea8565b6001600160a01b0386165f9081526015602052604090205460ff168015611e1d57506001600160a01b0387165f9081526014602052604090205460ff16155b15611e4557600c54851115611dd9576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611ea857600d546001600160a01b0387165f90815260016020526040902054611e899087612787565b1115611ea85760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611ecd5750600754600160b81b900460ff16155b8015611f1357506001600160a01b0388165f9081526013602052604090205460ff1680611f1157506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015612034576001600160a01b0387165f9081526015602052604081205460ff168015611f4357505f601054115b15611f6957606460105488611f58919061270c565b611f629190612723565b9050612015565b6001600160a01b0389165f9081526015602052604090205460ff168015611f9157505f600f54115b15611fa6576064600f5488611f58919061270c565b6001600160a01b0388165f9081526015602052604090205460ff16158015611fe657506001600160a01b0389165f9081526015602052604090205460ff16155b8015611ff357505f601154115b1561201557606460115488612008919061270c565b6120129190612723565b90505b8015612032576120258188612774565b96506120328930836120fb565b505b305f90815260016020526040902054600e5481101582801561206e57506001600160a01b038a165f9081526015602052604090205460ff16155b80156120775750805b1561209557600a548511156120955761208f82612221565b600a8590555b6120a08a8a8a6120fb565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316612125578060035f82825461211a9190612787565b909155506121959050565b6001600160a01b0383165f90815260016020526040902054818110156121775760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016115ab565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b0382166121b1576003805482900390556121cf565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161221491815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061226b5761226b6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230b919061279a565b8160018151811061231e5761231e6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54601461234e919061270c565b90508084111561235c578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123b09087905f908790309042906004016127b5565b5f604051808303815f87803b1580156123c7575f5ffd5b505af11580156123d9573d5f5f3e3d5ffd5b504792505f91506123ed9050600483612723565b90505f6123fa8284612774565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114612445576040519150601f19603f3d011682016040523d82523d5f602084013e61244a565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612497576040519150601f19603f3d011682016040523d82523d5f602084013e61249c565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146115bd575f5ffd5b5f5f6040838503121561250f575f5ffd5b823561251a816124ea565b946020939093013593505050565b80151581146115bd575f5ffd5b5f5f5f60408486031215612547575f5ffd5b833567ffffffffffffffff81111561255d575f5ffd5b8401601f8101861361256d575f5ffd5b803567ffffffffffffffff811115612583575f5ffd5b8660208260051b8401011115612597575f5ffd5b6020918201945092508401356125ac81612528565b809150509250925092565b5f5f5f606084860312156125c9575f5ffd5b83356125d4816124ea565b925060208401356125e4816124ea565b929592945050506040919091013590565b5f60208284031215612605575f5ffd5b8135612610816124ea565b9392505050565b5f60208284031215612627575f5ffd5b813561261081612528565b5f60208284031215612642575f5ffd5b5035919050565b5f5f6040838503121561265a575f5ffd5b8235612665816124ea565b9150602083013561267581612528565b809150509250929050565b5f5f60408385031215612691575f5ffd5b823561269c816124ea565b91506020830135612675816124ea565b600181811c908216806126c057607f821691505b6020821081036126de57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610ae557610ae56126f8565b5f8261273d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612752575f5ffd5b5051919050565b5f60208284031215612769575f5ffd5b815161261081612528565b81810381811115610ae557610ae56126f8565b80820180821115610ae557610ae56126f8565b5f602082840312156127aa575f5ffd5b8151612610816124ea565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156128055783516001600160a01b03168352602093840193909201916001016127de565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212200f8ce1d99956ca4c1bd28011926418055c994605167f832f4ab16a0d07a8743964736f6c634300081c0033

Deployed Bytecode Sourcemap

26570:15742:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31215:223;;;;;;;;;;;;;:::i;13237:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15571:222;;;;;;;;;;-1:-1:-1;15571:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15571:222:0;945:187:1;34666:239:0;;;;;;;;;;-1:-1:-1;34666:239:0;;;;;:::i;:::-;;:::i;26612:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26612:49:0;2010:227:1;14339:99:0;;;;;;;;;;-1:-1:-1;14418:12:0;;14339:99;;;2388:25:1;;;2376:2;2361:18;14339:99:0;2242:177:1;16371:283:0;;;;;;;;;;-1:-1:-1;16371:283:0;;;;;:::i;:::-;;:::i;27396:22::-;;;;;;;;;;;;;;;;27044;;;;;;;;;;-1:-1:-1;27044:22:0;;;;-1:-1:-1;;;27044:22:0;;;;;;14190:84;;;;;;;;;;-1:-1:-1;14190:84:0;;14264:2;3079:36:1;;3067:2;3052:18;14190:84:0;2937:184:1;27460:37:0;;;;;;;;;;-1:-1:-1;27460:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32199:138;;;;;;;;;;-1:-1:-1;32199:138:0;;;;;:::i;:::-;;:::i;27368:21::-;;;;;;;;;;;;;;;;26789:38;;;;;;;;;;;;;;;26726:54;;;;;;;;;;;;26773:6;26726:54;;27504:50;;;;;;;;;;-1:-1:-1;27504:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26670:49;;;;;;;;;;;;26717:1;26670:49;;32345:144;;;;;;;;;;-1:-1:-1;32345:144:0;;;;;:::i;:::-;;:::i;32497:133::-;;;;;;;;;;-1:-1:-1;32497:133:0;;;;;:::i;:::-;;:::i;27561:52::-;;;;;;;;;;-1:-1:-1;27561:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33048:207;;;;;;;;;;-1:-1:-1;33048:207:0;;;;;:::i;:::-;;:::i;26947:29::-;;;;;;;;;;-1:-1:-1;26947:29:0;;;;-1:-1:-1;;;26947:29:0;;;;;;14501:118;;;;;;;;;;-1:-1:-1;14501:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14593:18:0;14566:7;14593:18;;;:9;:18;;;;;;;14501:118;27238:21;;;;;;;;;;;;;;;;25218:103;;;;;;;;;;;;;:::i;31818:373::-;;;;;;;;;;-1:-1:-1;31818:373:0;;;;;:::i;:::-;;:::i;27108:25::-;;;;;;;;;;;;;;;;24543:87;;;;;;;;;;-1:-1:-1;24589:7:0;24616:6;-1:-1:-1;;;;;24616:6:0;24543:87;;33911:232;;;;;;;;;;-1:-1:-1;33911:232:0;;;;;:::i;:::-;;:::i;13447:95::-;;;;;;;;;;;;;:::i;35494:234::-;;;;;;;;;;-1:-1:-1;35494:234:0;;;;;:::i;:::-;;:::i;34913:573::-;;;;;;;;;;-1:-1:-1;34913:573:0;;;;;:::i;:::-;;:::i;14824:182::-;;;;;;;;;;-1:-1:-1;14824:182:0;;;;;:::i;:::-;;:::i;27425:26::-;;;;;;;;;;;;;;;;34423:235;;;;;;;;;;-1:-1:-1;34423:235:0;;;;;:::i;:::-;;:::i;33263:408::-;;;;;;;;;;-1:-1:-1;33263:408:0;;;;;:::i;:::-;;:::i;27620:57::-;;;;;;;;;;-1:-1:-1;27620:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27266:22;;;;;;;;;;;;;;;;27193:36;;;;;;;;;;;;27227:2;27193:36;;26872:32;;;;;;;;;;-1:-1:-1;26872:32:0;;;;-1:-1:-1;;;;;26872:32:0;;;35736:674;;;;;;;;;;-1:-1:-1;35736:674:0;;;;;:::i;:::-;;:::i;27075:26::-;;;;;;;;;;;;;;;;34151:264;;;;;;;;;;-1:-1:-1;34151:264:0;;;;;:::i;:::-;;:::i;26913:27::-;;;;;;;;;;-1:-1:-1;26913:27:0;;;;-1:-1:-1;;;26913:27:0;;;;;;33679:224;;;;;;;;;;-1:-1:-1;33679:224:0;;;;;:::i;:::-;;:::i;15069:183::-;;;;;;;;;;-1:-1:-1;15069:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;15217:18:0;;;15185:7;15217:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15069:183;27328:33;;;;;;;;;;;;;;;;26983:24;;;;;;;;;;-1:-1:-1;26983:24:0;;;;-1:-1:-1;;;26983:24:0;;;;;;31446:364;;;;;;;;;;-1:-1:-1;31446:364:0;;;;;:::i;:::-;;:::i;32841:199::-;;;;;;;;;;-1:-1:-1;32841:199:0;;;;;:::i;:::-;;:::i;25476:220::-;;;;;;;;;;-1:-1:-1;25476:220:0;;;;;:::i;:::-;;:::i;32638:195::-;;;;;;;;;;-1:-1:-1;32638:195:0;;;;;:::i;:::-;;:::i;27295:24::-;;;;;;;;;;;;;;;;26834:31;;;;;;;;;;-1:-1:-1;26834:31:0;;;;-1:-1:-1;;;;;26834:31:0;;;31215:223;24429:13;:11;:13::i;:::-;31272:10:::1;::::0;-1:-1:-1;;;31272:10:0;::::1;;;31271:11;31263:39;;;;-1:-1:-1::0;;;31263:39:0::1;;;;;;;;;;;;31313:10;:17:::0;;-1:-1:-1;;;;31313:17:0::1;-1:-1:-1::0;;;31313:17:0::1;::::0;;31355:12:::1;31341:11;:26:::0;31391:15:::1;31378:10;:28:::0;31422:8:::1;::::0;::::1;::::0;31313:17;;31422:8:::1;31215:223::o:0;13237:91::-;13282:13;13315:5;13308:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13237:91;:::o;15571:222::-;15671:4;4532:10;15732:31;4532:10;15748:7;15757:5;15732:8;:31::i;:::-;15781:4;15774:11;;;15571:222;;;;;:::o;34666:239::-;24429:13;:11;:13::i;:::-;34792:9:::1;34787:111;34807:19:::0;;::::1;34787:111;;;34848:38;34867:8;;34876:1;34867:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34880:5;34848:18;:38::i;:::-;34828:3;;34787:111;;;;34666:239:::0;;;:::o;16371:283::-;16492:4;4532:10;16550:37;16566:4;4532:10;16581:5;16550:15;:37::i;:::-;16598:26;16608:4;16614:2;16618:5;16598:9;:26::i;:::-;-1:-1:-1;16642:4:0;;16371:283;-1:-1:-1;;;;16371:283:0:o;32199:138::-;24429:13;:11;:13::i;:::-;32267:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;32267:23:0::1;-1:-1:-1::0;;;;32267:23:0;;::::1;;::::0;;32306::::1;::::0;::::1;::::0;::::1;::::0;32285:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32306:23:0::1;;;;;;;;32199:138:::0;:::o;32345:144::-;24429:13;:11;:13::i;:::-;32415:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;32415:25:0::1;-1:-1:-1::0;;;;32415:25:0;;::::1;;::::0;;32456::::1;::::0;::::1;::::0;::::1;::::0;32435:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32497:133:0;24429:13;:11;:13::i;:::-;32564:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;32564:20:0::1;-1:-1:-1::0;;;;32564:20:0;;::::1;;::::0;;32600:22:::1;::::0;::::1;::::0;::::1;::::0;32579:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;33048:207:0;24429:13;:11;:13::i;:::-;33157:4:::1;33136:13;14418:12:::0;;;14339:99;33136:13:::1;:17;::::0;33152:1:::1;33136:17;:::i;:::-;33135:26;;;;:::i;:::-;33124:6;:38;;33116:63;;;;-1:-1:-1::0;;;33116:63:0::1;;;;;;;;;;;;33190:9;:18:::0;;;33224:23:::1;::::0;2388:25:1;;;33224:23:0::1;::::0;2376:2:1;2361:18;33224:23:0::1;2242:177:1::0;25218:103:0;24429:13;:11;:13::i;:::-;25283:30:::1;25310:1;25283:18;:30::i;:::-;25218:103::o:0;31818:373::-;31918:17;;-1:-1:-1;;;;;31918:17:0;31904:10;:31;31896:57;;;;-1:-1:-1;;;31896:57:0;;;;;;;;;;;;-1:-1:-1;;;;;31972:32:0;;31964:56;;;;-1:-1:-1;;;31964:56:0;;;;;;;;;;;;32051:17;;;-1:-1:-1;;;;;32079:38:0;;;-1:-1:-1;;;;;;32079:38:0;;;;;;;32133:50;;;6061:51:1;;;32051:17:0;;6143:2:1;6128:18;;6121:60;;;32051:17:0;32133:50;;6034:18:1;32133:50:0;;;;;;;;31885:306;31818:373;:::o;33911:232::-;24429:13;:11;:13::i;:::-;27227:2:::1;33988:8;:19;;33980:42;;;;-1:-1:-1::0;;;33980:42:0::1;;;;;;;;;;;;34052:7;::::0;;34070:18;;;;34104:31:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34104:31:0::1;::::0;6339:18:1;34104:31:0::1;6192:248:1::0;13447:95:0;13494:13;13527:7;13520:14;;;;;:::i;35494:234::-;24429:13;:11;:13::i;:::-;-1:-1:-1;;;;;35619:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;::::1;;35618:32;35610:58;;;;-1:-1:-1::0;;;35610:58:0::1;;;;;;;;;;;;35679:41;35708:4;35714:5;35679:28;:41::i;:::-;35494:234:::0;;:::o;34913:573::-;24429:13;:11;:13::i;:::-;35029:9:::1;35024:455;35044:19:::0;;::::1;35024:455;;;35109:25;:38;35135:8;;35144:1;35135:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35109:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35109:38:0;;::::1;;35108:39;35107:103:::0;::::1;;;;35193:15;-1:-1:-1::0;;;;;35170:39:0::1;:8;;35179:1;35170:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35170:39:0::1;;;35107:103;:154;;;;-1:-1:-1::0;35255:4:0::1;35232:8:::0;;35241:1;35232:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35232:28:0::1;;;35107:154;:202;;;;-1:-1:-1::0;35306:1:0::1;35283:8:::0;;35292:1;35283:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35283:25:0::1;;;35107:202;:316;;;;;35332:18;:31;35351:8;;35360:1;35351:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35332:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35332:31:0;;::::1;;35331:32;:91:::0;::::1;;;;35389:20;:33;35410:8;;35419:1;35410:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35389:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35389:33:0;;::::1;;35388:34;35331:91;35085:382;;;35439:28;35448:8;;35457:1;35448:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35461:5;35439:8;:28::i;:::-;35065:3;;35024:455;;14824:182:::0;14893:4;4532:10;14949:27;4532:10;14966:2;14970:5;14949:9;:27::i;34423:235::-;24429:13;:11;:13::i;:::-;34547:9:::1;34542:109;34562:19:::0;;::::1;34542:109;;;34603:36;34620:8;;34629:1;34620:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34633:5;34603:16;:36::i;:::-;34583:3;;34542:109;;33263:408:::0;24429:13;:11;:13::i;:::-;33340:20:::1;33363:13;14418:12:::0;;;14339:99;33363:13:::1;33340:36:::0;-1:-1:-1;33426:7:0::1;33406:16;33340:36:::0;33421:1:::1;33406:16;:::i;:::-;33405:28;;;;:::i;:::-;33395:6;:38;;33387:63;;;;-1:-1:-1::0;;;33387:63:0::1;;;;;;;;;;;;33500:4;33480:16;:12:::0;33495:1:::1;33480:16;:::i;:::-;33479:25;;;;:::i;:::-;33469:6;:35;;33461:61;;;;-1:-1:-1::0;;;33461:61:0::1;;;;;;;;;;;;33552:18;::::0;;33581:27;;;;33624:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33624:39:0::1;::::0;6339:18:1;33624:39:0::1;;;;;;;;33329:342;;33263:408:::0;:::o;35736:674::-;24429:13;:11;:13::i;:::-;35828:10:::1;35811:14;-1:-1:-1::0;;;;;35878:20:0;::::1;35874:478;;-1:-1:-1::0;35951:21:0::1;35915:12;35995:10:::0;35987:37:::1;;;;-1:-1:-1::0;;;35987:37:0::1;;;;;;;;;;;;36053:39;::::0;-1:-1:-1;;;;;36053:20:0;::::1;::::0;36081:6;;36053:39:::1;::::0;;;36081:6;36053:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36039:53;;;;;36115:7;36107:48;;;;-1:-1:-1::0;;;36107:48:0::1;;;;;;;;;;;;35900:267;35874:478;;;36197:39;::::0;-1:-1:-1;;;36197:39:0;;36230:4:::1;36197:39;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;36197:24:0;::::1;::::0;::::1;::::0;2153:18:1;;36197:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36188:48;;36268:1;36259:6;:10;36251:31;;;;-1:-1:-1::0;;;36251:31:0::1;;;;;;;;;;;;36297:43;::::0;-1:-1:-1;;;36297:43:0;;36321:10:::1;36297:43;::::0;::::1;7018:51:1::0;7085:18;;;7078:34;;;-1:-1:-1;;;;;36297:23:0;::::1;::::0;::::1;::::0;6991:18:1;;36297:43:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35874:478;36367:35;::::0;;-1:-1:-1;;;;;7036:32:1;;7018:51;;7100:2;7085:18;;7078:34;;;36367:35:0::1;::::0;6991:18:1;36367:35:0::1;6844:274:1::0;34151:264:0;24429:13;:11;:13::i;:::-;27227:2:::1;34236:12;:23;;34228:46;;;;-1:-1:-1::0;;;34228:46:0::1;;;;;;;;;;;;34304:11;::::0;;34326:26;;;;34368:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34368:39:0::1;::::0;6339:18:1;34368:39:0::1;6192:248:1::0;33679:224:0;24429:13;:11;:13::i;:::-;27227:2:::1;33754:7;:18;;33746:41;;;;-1:-1:-1::0;;;33746:41:0::1;;;;;;;;;;;;33817:6;::::0;;33834:16;;;;33866:29:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33866:29:0::1;::::0;6339:18:1;33866:29:0::1;6192:248:1::0;31446:364:0;31544:16;;-1:-1:-1;;;;;31544:16:0;31530:10;:30;31522:56;;;;-1:-1:-1;;;31522:56:0;;;;;;;;;;;;-1:-1:-1;;;;;31597:31:0;;31589:55;;;;-1:-1:-1;;;31589:55:0;;;;;;;;;;;;31675:16;;;-1:-1:-1;;;;;31702:36:0;;;-1:-1:-1;;;;;;31702:36:0;;;;;;;31754:48;;;6061:51:1;;;31675:16:0;;6143:2:1;6128:18;;6121:60;;;31675:16:0;31754:48;;6034:18:1;31754:48:0;5887:300:1;32841:199:0;24429:13;:11;:13::i;:::-;32948:4:::1;32927:13;14418:12:::0;;;14339:99;32927:13:::1;:17;::::0;32943:1:::1;32927:17;:::i;:::-;32926:26;;;;:::i;:::-;32915:6;:38;;32907:63;;;;-1:-1:-1::0;;;32907:63:0::1;;;;;;;;;;;;32981:7;:16:::0;;;33013:19:::1;::::0;2388:25:1;;;33013:19:0::1;::::0;2376:2:1;2361:18;33013:19:0::1;2242:177:1::0;25476:220:0;24429:13;:11;:13::i;:::-;-1:-1:-1;;;;;25561:22:0;::::1;25557:93;;25607:31;::::0;-1:-1:-1;;;25607:31:0;;25635:1:::1;25607:31;::::0;::::1;2180:51:1::0;2153:18;;25607:31:0::1;;;;;;;;25557:93;25660:28;25679:8;25660:18;:28::i;:::-;25476:220:::0;:::o;32638:195::-;24429:13;:11;:13::i;:::-;32744:4:::1;32723:13;14418:12:::0;;;14339:99;32723:13:::1;:17;::::0;32739:1:::1;32723:17;:::i;:::-;32722:26;;;;:::i;:::-;32711:6;:38;;32703:63;;;;-1:-1:-1::0;;;32703:63:0::1;;;;;;;;;;;;32777:6;:15:::0;;;32808:17:::1;::::0;2388:25:1;;;32808:17:0::1;::::0;2376:2:1;2361:18;32808:17:0::1;2242:177:1::0;24708:166:0;24589:7;24616:6;-1:-1:-1;;;;;24616:6:0;4532:10;24768:23;24764:103;;24815:40;;-1:-1:-1;;;24815:40:0;;4532:10;24815:40;;;2180:51:1;2153:18;;24815:40:0;2010:227:1;20532:164:0;20651:37;20660:5;20667:7;20676:5;20683:4;20651:8;:37::i;:::-;20532:164;;;:::o;41752:179::-;-1:-1:-1;;;;;41837:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;41837:37:0;;;;;;;;;;41890:33;;7541:51:1;;;7608:18;;;7601:50;41890:33:0;;7514:18:1;41890:33:0;7373:284:1;22325:603:0;-1:-1:-1;;;;;15217:18:0;;;22459:24;15217:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22526:37:0;;22522:399;;22603:5;22584:16;:24;22580:214;;;22636:142;;-1:-1:-1;;;22636:142:0;;-1:-1:-1;;;;;7882:32:1;;22636:142:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;22636:142:0;7662:345:1;22580:214:0;22837:57;22846:5;22853:7;22881:5;22862:16;:24;22888:5;22837:8;:57::i;17039:342::-;-1:-1:-1;;;;;17157:18:0;;17153:88;;17199:30;;-1:-1:-1;;;17199:30:0;;17226:1;17199:30;;;2180:51:1;2153:18;;17199:30:0;2010:227:1;17153:88:0;-1:-1:-1;;;;;17255:16:0;;17251:88;;17295:32;;-1:-1:-1;;;17295:32:0;;17324:1;17295:32;;;2180:51:1;2153:18;;17295:32:0;2010:227:1;17251:88:0;17349:24;17357:4;17363:2;17367:5;17349:7;:24::i;36418:398::-;36501:16;24616:6;-1:-1:-1;;;;;24616:6:0;36542:22;;36538:138;;36581:33;36598:8;36608:5;36581:16;:33::i;:::-;36629:35;36648:8;36658:5;36629:18;:35::i;:::-;36686:32;36703:8;36713:4;36686:16;:32::i;:::-;36729:34;36748:8;36758:4;36729:18;:34::i;:::-;36774;36799:8;36774:24;:34::i;42091:218::-;-1:-1:-1;;;;;42206:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;42206:39:0;;;;;;;;;;42261:40;;7541:51:1;;;7608:18;;;7601:50;42261:40:0;;7514:18:1;42261:40:0;7373:284:1;41939:144:0;-1:-1:-1;;;;;42014:14:0;;;;;;:5;:14;;;;;;;;;:22;;-1:-1:-1;;42014:22:0;;;;;;;;;;42052:23;;7541:51:1;;;7608:18;;;7601:50;42052:23:0;;7514:18:1;42052:23:0;7373:284:1;41571:173:0;-1:-1:-1;;;;;41654:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;41654:35:0;;;;;;;;;;41705:31;;7541:51:1;;;7608:18;;;7601:50;41705:31:0;;7514:18:1;41705:31:0;7373:284:1;21547:486:0;-1:-1:-1;;;;;21703:19:0;;21699:91;;21746:32;;-1:-1:-1;;;21746:32:0;;21775:1;21746:32;;;2180:51:1;2153:18;;21746:32:0;2010:227:1;21699:91:0;-1:-1:-1;;;;;21804:21:0;;21800:92;;21849:31;;-1:-1:-1;;;21849:31:0;;21877:1;21849:31;;;2180:51:1;2153:18;;21849:31:0;2010:227:1;21800:92:0;-1:-1:-1;;;;;21902:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21948:78;;;;21999:7;-1:-1:-1;;;;;21983:31:0;21992:5;-1:-1:-1;;;;;21983:31:0;;22008:5;21983:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;21983:31:0;;;;;;;;21547:486;;;;:::o;36824:3748::-;-1:-1:-1;;;;;37085:11:0;;36954:14;37085:11;;;:5;:11;;;;;;36971:10;;37009:9;;37051:12;;37085:11;;37084:12;37076:36;;;;-1:-1:-1;;;37076:36:0;;;;;;;;;;;;37141:4;-1:-1:-1;;;;;37131:14:0;:6;-1:-1:-1;;;;;37131:14:0;;:32;;;-1:-1:-1;;;;;;37150:13:0;;;;;;:5;:13;;;;;;;;37149:14;37131:32;37123:56;;;;-1:-1:-1;;;37123:56:0;;;;;;;;;;;;37222:4;-1:-1:-1;;;;;37212:14:0;:6;-1:-1:-1;;;;;37212:14:0;;:34;;;;37240:6;-1:-1:-1;;;;;37230:16:0;:6;-1:-1:-1;;;;;37230:16:0;;37212:34;:52;;;-1:-1:-1;;;;;;37251:13:0;;;;;;:5;:13;;;;;;;;37250:14;37212:52;37190:113;;;;-1:-1:-1;;;37190:113:0;;;;;;;;;;;;37338:10;;-1:-1:-1;;;37338:10:0;;;;;:57;;-1:-1:-1;;;;;;37369:26:0;;;;;;:20;:26;;;;;;;;37338:57;:102;;;-1:-1:-1;;;;;;37416:24:0;;;;;;:20;:24;;;;;;;;37338:102;37316:163;;;;-1:-1:-1;;;37316:163:0;;;;;;;;;;;;37506:15;;37492:11;;-1:-1:-1;;;37506:15:0;;;;:43;;;;-1:-1:-1;37539:10:0;;-1:-1:-1;;;37539:10:0;;;;37538:11;37506:43;:117;;;;-1:-1:-1;;;;;;37568:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;37598:24:0;;;;;;:20;:24;;;;;;;;37568:54;37566:57;37506:117;37492:131;;37638:6;37634:1688;;;24589:7;24616:6;-1:-1:-1;;;;;37683:15:0;;;24616:6;;37683:15;;;;:49;;-1:-1:-1;24589:7:0;24616:6;-1:-1:-1;;;;;37719:13:0;;;24616:6;;37719:13;;37683:49;:86;;;;-1:-1:-1;;;;;;37753:16:0;;;;37683:86;:128;;;;-1:-1:-1;;;;;;37790:21:0;;37804:6;37790:21;;37683:128;37661:1650;;;37850:17;;-1:-1:-1;;;37850:17:0;;;;37846:643;;;37910:15;-1:-1:-1;;;;;37896:30:0;:2;-1:-1:-1;;;;;37896:30:0;;;:53;;;;;37936:13;-1:-1:-1;;;;;37930:19:0;:2;-1:-1:-1;;;;;37930:19:0;;;37896:53;37892:578;;;38088:15;38102:1;38088:11;:15;:::i;:::-;-1:-1:-1;;;;;38016:36:0;;;;;;:28;:36;;;;;;:87;:207;;;;-1:-1:-1;38208:15:0;38222:1;38208:11;:15;:::i;:::-;-1:-1:-1;;;;;38140:32:0;;;;;;:28;:32;;;;;;:83;38016:207;37978:318;;;;-1:-1:-1;;;37978:318:0;;;;;;;;;;;;-1:-1:-1;;;;;38323:36:0;;;;;;;:28;:36;;;;;;:50;;;38400:32;;;;;;:46;;;37892:578;-1:-1:-1;;;;;38535:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;38571:24:0;;;;;;:20;:24;;;;;;;;38570:25;38535:60;38509:787;;;38656:6;;38646;:16;;38638:47;;;;-1:-1:-1;;;38638:47:0;;;;;;;;;;;;38768:9;;-1:-1:-1;;;;;14593:18:0;;14566:7;14593:18;;;:9;:18;;;;;;38742:22;;:6;:22;:::i;:::-;:35;;38708:142;;;;-1:-1:-1;;;38708:142:0;;;;;;;;;;;;38509:787;;;-1:-1:-1;;;;;38902:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;38936:26:0;;;;;;:20;:26;;;;;;;;38935:27;38902:60;38876:420;;;39023:7;;39013:6;:17;;39005:49;;;;-1:-1:-1;;;39005:49:0;;;;;;;;;;;38876:420;-1:-1:-1;;;;;39085:24:0;;;;;;:20;:24;;;;;;;;39080:216;;39194:9;;-1:-1:-1;;;;;14593:18:0;;14566:7;14593:18;;;:9;:18;;;;;;39168:22;;:6;:22;:::i;:::-;:35;;39134:142;;;;-1:-1:-1;;;39134:142:0;;;;;;;;;;;;39349:12;;39334;;-1:-1:-1;;;39349:12:0;;;;:40;;;;-1:-1:-1;39379:10:0;;-1:-1:-1;;;39379:10:0;;;;39378:11;39349:40;:110;;;;-1:-1:-1;;;;;;39408:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;39436:22:0;;;;;;:18;:22;;;;;;;;39408:50;39406:53;39349:110;39334:125;;39476:7;39472:679;;;-1:-1:-1;;;;;39535:29:0;;39500:12;39535:29;;;:25;:29;;;;;;;;:44;;;;;39578:1;39568:7;;:11;39535:44;39531:471;;;39628:3;39617:7;;39608:6;:16;;;;:::i;:::-;39607:24;;;;:::i;:::-;39600:31;;39531:471;;;-1:-1:-1;;;;;39657:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;39701:1;39692:6;;:10;39657:45;39653:349;;;39750:3;39740:6;;39731;:15;;;;:::i;39653:349::-;-1:-1:-1;;;;;39798:29:0;;;;;;:25;:29;;;;;;;;39797:30;:83;;;;-1:-1:-1;;;;;;39849:31:0;;;;;;:25;:31;;;;;;;;39848:32;39797:83;:119;;;;;39915:1;39901:11;;:15;39797:119;39775:227;;;39983:3;39968:11;;39959:6;:20;;;;:::i;:::-;39958:28;;;;:::i;:::-;39951:35;;39775:227;40022:8;;40018:122;;40051:14;40061:4;40051:14;;:::i;:::-;;;40084:40;40098:4;40112;40119;40084:13;:40::i;:::-;39485:666;39472:679;40199:4;40163:15;14593:18;;;:9;:18;;;;;;40245;;40234:29;;;40278:7;:43;;;;-1:-1:-1;;;;;;40290:31:0;;;;;;:25;:31;;;;;;;;40289:32;40278:43;:57;;;;;40325:10;40278:57;40274:247;;;40370:26;;40356:11;:40;40352:158;;;40417:18;40427:7;40417:9;:18::i;:::-;40454:26;:40;;;40352:158;40533:31;40547:4;40553:2;40557:6;40533:13;:31::i;:::-;36943:3629;;;;;;;36824:3748;;;:::o;25856:191::-;25930:16;25949:6;;-1:-1:-1;;;;;25966:17:0;;;-1:-1:-1;;;;;;25966:17:0;;;;;;25999:40;;25949:6;;;;;;;25999:40;;25930:16;25999:40;25919:128;25856:191;:::o;17705:1169::-;-1:-1:-1;;;;;17829:18:0;;17825:552;;17983:5;17967:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17825:552:0;;-1:-1:-1;17825:552:0;;-1:-1:-1;;;;;18043:15:0;;18021:19;18043:15;;;:9;:15;;;;;;18077:19;;;18073:117;;;18124:50;;-1:-1:-1;;;18124:50:0;;-1:-1:-1;;;;;7882:32:1;;18124:50:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;18124:50:0;7662:345:1;18073:117:0;-1:-1:-1;;;;;18313:15:0;;;;;;:9;:15;;;;;18331:19;;;;18313:37;;17825:552;-1:-1:-1;;;;;18393:16:0;;18389:435;;18559:12;:21;;;;;;;18389:435;;;-1:-1:-1;;;;;18775:13:0;;;;;;:9;:13;;;;;:22;;;;;;18389:435;18856:2;-1:-1:-1;;;;;18841:25:0;18850:4;-1:-1:-1;;;;;18841:25:0;;18860:5;18841:25;;;;2388::1;;2376:2;2361:18;;2242:177;18841:25:0;;;;;;;;17705:1169;;;:::o;40580:983::-;29235:10;:17;;-1:-1:-1;;;;29235:17:0;-1:-1:-1;;;29235:17:0;;;40704:16:::1;::::0;;40718:1:::1;40704:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;40704:16:0;40718:1;40704:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40704:16:0::1;40680:40;;40749:4;40731;40736:1;40731:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;40731:23:0::1;;;-1:-1:-1::0;;;;;40731:23:0::1;;;::::0;::::1;40775:15;-1:-1:-1::0;;;;;40775:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40765:4;40770:1;40765:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;40765:32:0::1;;;-1:-1:-1::0;;;;;40765:32:0::1;;;::::0;::::1;40810:21;40834:18;;40855:2;40834:23;;;;:::i;:::-;40810:47;;40884:13;40874:7;:23;40870:79;;;40924:13;40914:23;;40870:79;40961:192;::::0;-1:-1:-1;;;40961:192:0;;-1:-1:-1;;;;;40961:15:0::1;:66;::::0;::::1;::::0;:192:::1;::::0;41042:7;;41064:1:::1;::::0;41080:4;;41107::::1;::::0;41127:15:::1;::::0;40961:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;41187:21:0::1;::::0;-1:-1:-1;41166:18:0::1;::::0;-1:-1:-1;41249:14:0::1;::::0;-1:-1:-1;41262:1:0::1;41187:21:::0;41249:14:::1;:::i;:::-;41221:42:::0;-1:-1:-1;41276:24:0::1;41303:30;41221:42:::0;41303:10;:30:::1;:::i;:::-;41368:16;::::0;41360:83:::1;::::0;41276:57;;-1:-1:-1;;;;;;41368:16:0::1;::::0;41276:57;;41360:83:::1;::::0;;;41276:57;41368:16;41360:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;41478:17:0::1;::::0;41470:85:::1;::::0;41346:97;;-1:-1:-1;;;;;;41478:17:0::1;::::0;41509;;41470:85:::1;::::0;;;41509:17;41478;41470:85:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29275:10:0;:18;;-1:-1:-1;;;;29275:18:0;;;-1:-1:-1;;;;;;;;40580:983:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2424:508::-;2501:6;2509;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;-1:-1:-1;2751:2:1;2736:18;;2723:32;2764:33;2723:32;2764:33;:::i;:::-;2424:508;;2816:7;;-1:-1:-1;;;2896:2:1;2881:18;;;;2868:32;;2424:508::o;3126:247::-;3185:6;3238:2;3226:9;3217:7;3213:23;3209:32;3206:52;;;3254:1;3251;3244:12;3206:52;3293:9;3280:23;3312:31;3337:5;3312:31;:::i;:::-;3362:5;3126:247;-1:-1:-1;;;3126:247:1:o;3378:241::-;3434:6;3487:2;3475:9;3466:7;3462:23;3458:32;3455:52;;;3503:1;3500;3493:12;3455:52;3542:9;3529:23;3561:28;3583:5;3561:28;:::i;3832:226::-;3891:6;3944:2;3932:9;3923:7;3919:23;3915:32;3912:52;;;3960:1;3957;3950:12;3912:52;-1:-1:-1;4005:23:1;;3832:226;-1:-1:-1;3832:226:1:o;4063:382::-;4128:6;4136;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4244:9;4231:23;4263:31;4288:5;4263:31;:::i;:::-;4313:5;-1:-1:-1;4370:2:1;4355:18;;4342:32;4383:30;4342:32;4383:30;:::i;:::-;4432:7;4422:17;;;4063:382;;;;;:::o;4450:388::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:31;4678:5;4653:31;:::i;:::-;4703:5;-1:-1:-1;4760:2:1;4745:18;;4732:32;4773:33;4732:32;4773:33;:::i;4843:380::-;4922:1;4918:12;;;;4965;;;4986:61;;5040:4;5032:6;5028:17;5018:27;;4986:61;5093:2;5085:6;5082:14;5062:18;5059:38;5056:161;;5139:10;5134:3;5130:20;5127:1;5120:31;5174:4;5171:1;5164:15;5202:4;5199:1;5192:15;5056:161;;4843:380;;;:::o;5228:127::-;5289:10;5284:3;5280:20;5277:1;5270:31;5320:4;5317:1;5310:15;5344:4;5341:1;5334:15;5360:127;5421:10;5416:3;5412:20;5409:1;5402:31;5452:4;5449:1;5442:15;5476:4;5473:1;5466:15;5492:168;5565:9;;;5596;;5613:15;;;5607:22;;5593:37;5583:71;;5634:18;;:::i;5665:217::-;5705:1;5731;5721:132;;5775:10;5770:3;5766:20;5763:1;5756:31;5810:4;5807:1;5800:15;5838:4;5835:1;5828:15;5721:132;-1:-1:-1;5867:9:1;;5665:217::o;6655:184::-;6725:6;6778:2;6766:9;6757:7;6753:23;6749:32;6746:52;;;6794:1;6791;6784:12;6746:52;-1:-1:-1;6817:16:1;;6655:184;-1:-1:-1;6655:184:1:o;7123:245::-;7190:6;7243:2;7231:9;7222:7;7218:23;7214:32;7211:52;;;7259:1;7256;7249:12;7211:52;7291:9;7285:16;7310:28;7332:5;7310:28;:::i;8012:128::-;8079:9;;;8100:11;;;8097:37;;;8114:18;;:::i;8145:125::-;8210:9;;;8231:10;;;8228:36;;;8244:18;;:::i;8407:251::-;8477:6;8530:2;8518:9;8509:7;8505:23;8501:32;8498:52;;;8546:1;8543;8536:12;8498:52;8578:9;8572:16;8597:31;8622:5;8597:31;:::i;8663:959::-;8925:4;8973:3;8962:9;8958:19;9004:6;8993:9;8986:25;9047:6;9042:2;9031:9;9027:18;9020:34;9090:3;9085:2;9074:9;9070:18;9063:31;9114:6;9149;9143:13;9180:6;9172;9165:22;9218:3;9207:9;9203:19;9196:26;;9257:2;9249:6;9245:15;9231:29;;9278:1;9288:195;9302:6;9299:1;9296:13;9288:195;;;9367:13;;-1:-1:-1;;;;;9363:39:1;9351:52;;9432:2;9458:15;;;;9423:12;;;;9399:1;9317:9;9288:195;;;-1:-1:-1;;;;;;;9539:32:1;;;;9534:2;9519:18;;9512:60;-1:-1:-1;;9603:3:1;9588:19;9581:35;9500:3;8663:959;-1:-1:-1;;;8663:959:1:o

Swarm Source

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