ETH Price: $3,188.14 (-7.38%)
Gas: 2 Gwei

Token

AUTO SHITCOIN - AS TOKEN (AS)
 

Overview

Max Total Supply

1,000,000,000 AS

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,293,539.678672499936089593 AS

Value
$0.00
0xfd6dcbf3c962b23a80b09e5f13c62b2f3fbf5036
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:
AS

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion
File 1 of 1 : AS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/**

Tax for Buying/Selling: 10%
    - 1% of each transaction sent to holders as ETH transactions
    - 6% of each transaction sent to Treasury Wallet
    - 3% of each transaction sent to the Liquidity Pool


*/

/* pragma solidity 0.8.10; */

/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {Address} from "lib/openzeppelin-contracts/contracts/utils/Address.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */

contract AS is Ownable, IERC20 {
    address UNISWAPROUTER = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address ZERO = 0x0000000000000000000000000000000000000000;

    string private _name = "AUTO SHITCOIN - AS TOKEN";
    string private _symbol = "AS";

    uint256 public treasuryFeeBPS = 600;
    uint256 public liquidityFeeBPS = 300;
    uint256 public dividendFeeBPS = 100;
    uint256 public totalFeeBPS = 1000;

    uint256 public swapTokensAtAmount = 100000 * (10**18);
    uint256 public lastSwapTime;
    bool swapAllToken = true;

    bool public swapEnabled = true;
    bool public taxEnabled = true;
    bool public compoundingEnabled = true;

    uint256 private _totalSupply;
    bool private swapping;

    address marketingWallet;
    address liquidityWallet;
    address[]  whitelistAddress;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _whiteList;
    mapping(address => bool) isBlacklisted;

    event SwapAndAddLiquidity(
        uint256 tokensSwapped,
        uint256 nativeReceived,
        uint256 tokensIntoLiquidity
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );
    event SwapEnabled(bool enabled);
    event TaxEnabled(bool enabled);
    event CompoundingEnabled(bool enabled);
    event BlacklistEnabled(bool enabled);

    DividendTracker public dividendTracker;
    IUniswapV2Router02 public uniswapV2Router;

    address public uniswapV2Pair;

    uint256 public maxTxBPS = 49;
    uint256 public maxWalletBPS = 200;

    bool isOpen = false;

    mapping(address => bool) private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    constructor(
        address _marketingWallet,
        address _liquidityWallet
    ) {
        marketingWallet = _marketingWallet;
        liquidityWallet = _liquidityWallet;
        
        dividendTracker = new DividendTracker(address(this), UNISWAPROUTER);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(UNISWAPROUTER);

        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(_uniswapV2Router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(dividendTracker), true);

        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(address(dividendTracker), true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(dividendTracker), true);

        _mint(owner(), 1000000000 * (10**18));
    }

    receive() external payable {}

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "AS: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        return true;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "AS: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    function openTrading() external onlyOwner {
        isOpen = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(
            isOpen ||
                sender == owner() ||
                recipient == owner() ||
                _whiteList[sender] ||
                _whiteList[recipient],
            "Not Open"
        );

        require(!isBlacklisted[sender], "AS: Sender is blacklisted");
        require(!isBlacklisted[recipient], "AS: Recipient is blacklisted");

        require(sender != address(0), "AS: transfer from the zero address");
        require(recipient != address(0), "AS: transfer to the zero address");

        uint256 _maxTxAmount = (totalSupply() * maxTxBPS) / 10000;
        uint256 _maxWallet = (totalSupply() * maxWalletBPS) / 10000;
        require(
            amount <= _maxTxAmount || _isExcludedFromMaxTx[sender],
            "TX Limit Exceeded"
        );

        if (
            sender != owner() &&
            recipient != address(this) &&
            recipient != address(DEAD) &&
            recipient != uniswapV2Pair
        ) {
            uint256 currentBalance = balanceOf(recipient);
            require(
                _isExcludedFromMaxWallet[recipient] ||
                    (currentBalance + amount <= _maxWallet)
            );
        }

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "AS: transfer amount exceeds balance"
        );

        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 contractNativeBalance = address(this).balance;

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            swapEnabled && // True
            canSwap && // true
            !swapping && // swapping=false !false true
            !automatedMarketMakerPairs[sender] && // no swap on remove liquidity step 1 or DEX buy
            sender != address(uniswapV2Router) && // no swap on remove liquidity step 2
            sender != owner() &&
            recipient != owner()
        ) {
            swapping = true;

            if (!swapAllToken) {
                contractTokenBalance = swapTokensAtAmount;
            }
            _executeSwap(contractTokenBalance, contractNativeBalance);

            lastSwapTime = block.timestamp;
            swapping = false;
        }

        bool takeFee;

        if (
            sender == address(uniswapV2Pair) ||
            recipient == address(uniswapV2Pair)
        ) {
            takeFee = true;
        }

        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }

        if (swapping || !taxEnabled) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = (amount * totalFeeBPS) / 10000;
            amount -= fees;
            _executeTransfer(sender, address(this), fees);
        }

        _executeTransfer(sender, recipient, amount);

        dividendTracker.setBalance(payable(sender), balanceOf(sender));
        dividendTracker.setBalance(payable(recipient), balanceOf(recipient));
    }

    function _executeTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        require(sender != address(0), "AS: transfer from the zero address");
        require(recipient != address(0), "AS: transfer to the zero address");
        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "AS: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "AS: approve from the zero address");
        require(spender != address(0), "AS: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _mint(address account, uint256 amount) private {
        require(account != address(0), "AS: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) private {
        require(account != address(0), "AS: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "AS: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
    }

    function swapTokensForNative(uint256 tokens) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokens);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokens,
            0, // accept any amount of native
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokens, uint256 native) private {
        _approve(address(this), address(uniswapV2Router), tokens);
        uniswapV2Router.addLiquidityETH{value: native}(
            address(this),
            tokens,
            0, // slippage unavoidable
            0, // slippage unavoidable
            liquidityWallet,
            block.timestamp
        );
    }

    function includeToWhiteList(address[] memory _users) private {
        for (uint8 i = 0; i < _users.length; i++) {
            _whiteList[_users[i]] = true;
        }
    }

    function _executeSwap(uint256 tokens, uint256 native) private {
        if (tokens <= 0) {
            return;
        }

        uint256 swapTokensMarketing;
        if (address(marketingWallet) != address(0)) {
            swapTokensMarketing = (tokens * treasuryFeeBPS) / totalFeeBPS;
        }

        uint256 swapTokensDividends;
        if (dividendTracker.totalSupply() > 0) {
            swapTokensDividends = (tokens * dividendFeeBPS) / totalFeeBPS;
        }

        uint256 tokensForLiquidity = tokens -
            swapTokensMarketing -
            swapTokensDividends;
        uint256 swapTokensLiquidity = tokensForLiquidity / 2;
        uint256 addTokensLiquidity = tokensForLiquidity - swapTokensLiquidity;
        uint256 swapTokensTotal = swapTokensMarketing +
            swapTokensDividends +
            swapTokensLiquidity;

        uint256 initNativeBal = address(this).balance;
        swapTokensForNative(swapTokensTotal);
        uint256 nativeSwapped = (address(this).balance - initNativeBal) +
            native;

        uint256 nativeMarketing = (nativeSwapped * swapTokensMarketing) /
            swapTokensTotal;
        uint256 nativeDividends = (nativeSwapped * swapTokensDividends) /
            swapTokensTotal;
        uint256 nativeLiquidity = nativeSwapped -
            nativeMarketing -
            nativeDividends;

        if (nativeMarketing > 0) {
            payable(marketingWallet).transfer(nativeMarketing);
        }

        addLiquidity(addTokensLiquidity, nativeLiquidity);
        emit SwapAndAddLiquidity(
            swapTokensLiquidity,
            nativeLiquidity,
            addTokensLiquidity
        );

        if (nativeDividends > 0) {
            (bool success, ) = address(dividendTracker).call{
                value: nativeDividends
            }("");
            if (success) {
                emit SendDividends(swapTokensDividends, nativeDividends);
            }
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "AS: account is already set to requested state"
        );
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

    function manualSendDividend(uint256 amount, address holder)
        external
        onlyOwner
    {
        dividendTracker.manualSendDividend(amount, holder);
    }

    function excludeFromDividends(address account, bool excluded)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, excluded);
    }

    function isExcludedFromDividends(address account)
        public
        view
        returns (bool)
    {
        return dividendTracker.isExcludedFromDividends(account);
    }

    function setWallet(
        address payable _marketingWallet,
        address payable _liquidityWallet
    ) external onlyOwner {
        marketingWallet = _marketingWallet;
        liquidityWallet = _liquidityWallet;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(pair != uniswapV2Pair, "AS: DEX pair can not be removed");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function setFee(
        uint256 _treasuryFee,
        uint256 _liquidityFee,
        uint256 _dividendFee
    ) external onlyOwner {
        treasuryFeeBPS = _treasuryFee;
        liquidityFeeBPS = _liquidityFee;
        dividendFeeBPS = _dividendFee;
        totalFeeBPS = _treasuryFee + _liquidityFee + _dividendFee;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "AS: automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;
        if (value) {
            dividendTracker.excludeFromDividends(pair, true);
        }
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "AS: the router is already set to the new address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function claim() public {
        dividendTracker.processAccount(payable(_msgSender()));
    }

    function compound() public {
        require(compoundingEnabled, "AS: compounding is not enabled");
        dividendTracker.compoundAccount(payable(_msgSender()));
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function withdrawnDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawnDividendOf(account);
    }

    function accumulativeDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.accumulativeDividendOf(account);
    }

    function getAccountInfo(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccountInfo(account);
    }

    function getLastClaimTime(address account) public view returns (uint256) {
        return dividendTracker.getLastClaimTime(account);
    }

    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
        emit SwapEnabled(_enabled);
    }

    function setTaxEnabled(bool _enabled) external onlyOwner {
        taxEnabled = _enabled;
        emit TaxEnabled(_enabled);
    }

    function setCompoundingEnabled(bool _enabled) external onlyOwner {
        compoundingEnabled = _enabled;
        emit CompoundingEnabled(_enabled);
    }

    function updateDividendSettings(
        bool _swapEnabled,
        uint256 _swapTokensAtAmount,
        bool _swapAllToken
    ) external onlyOwner {
        swapEnabled = _swapEnabled;
        swapTokensAtAmount = _swapTokensAtAmount;
        swapAllToken = _swapAllToken;
    }

    function setMaxTxBPS(uint256 bps) external onlyOwner {
        require(bps >= 75 && bps <= 10000, "BPS must be between 75 and 10000");
        maxTxBPS = bps;
    }

    function excludeFromMaxTx(address account, bool excluded) public onlyOwner {
        _isExcludedFromMaxTx[account] = excluded;
    }

    function isExcludedFromMaxTx(address account) public view returns (bool) {
        return _isExcludedFromMaxTx[account];
    }

    function setMaxWalletBPS(uint256 bps) external onlyOwner {
        require(
            bps >= 175 && bps <= 10000,
            "BPS must be between 175 and 10000"
        );
        maxWalletBPS = bps;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function isExcludedFromMaxWallet(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxWallet[account];
    }

    function rescueToken(address _token, uint256 _amount) external onlyOwner {
        IERC20(_token).transfer(msg.sender, _amount);
    }

    function rescueETH(uint256 _amount) external onlyOwner {
        payable(msg.sender).transfer(_amount);
    }

    function blackList(address _user) public onlyOwner {
        require(!isBlacklisted[_user], "user already blacklisted");
        isBlacklisted[_user] = true;
        // events?
    }

    function removeFromBlacklist(address _user) public onlyOwner {
        require(isBlacklisted[_user], "user already whitelisted");
        isBlacklisted[_user] = false;
        //events?
    }

    function blackListMany(address[] memory _users) public onlyOwner {
        for (uint8 i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = true;
        }
    }

    function unBlackListMany(address[] memory _users) public onlyOwner {
        for (uint8 i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = false;
        }
    }
}

contract DividendTracker is Ownable, IERC20 {
    address UNISWAPROUTER;

    string private _name = "AS_DividendTracker";
    string private _symbol = "AS_DividendTracker";

    uint256 public lastProcessedIndex;

    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;

    uint256 private constant magnitude = 2**128;
    uint256 public immutable minTokenBalanceForDividends;
    uint256 private magnifiedDividendPerShare;
    uint256 public totalDividendsDistributed;
    uint256 public totalDividendsWithdrawn;

    address public tokenAddress;

    mapping(address => bool) public excludedFromDividends;
    mapping(address => int256) private magnifiedDividendCorrections;
    mapping(address => uint256) private withdrawnDividends;
    mapping(address => uint256) private lastClaimTimes;

    event DividendsDistributed(address indexed from, uint256 weiAmount);
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
    event ExcludeFromDividends(address indexed account, bool excluded);
    event Claim(address indexed account, uint256 amount);
    event Compound(address indexed account, uint256 amount, uint256 tokens);

    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    constructor(address _tokenAddress, address _uniswapRouter) {
        minTokenBalanceForDividends = 10000 * (10**18);
        tokenAddress = _tokenAddress;
        UNISWAPROUTER = _uniswapRouter;
    }

    receive() external payable {
        distributeDividends();
    }

    function distributeDividends() public payable {
        require(_totalSupply > 0);
        if (msg.value > 0) {
            magnifiedDividendPerShare =
                magnifiedDividendPerShare +
                ((msg.value * magnitude) / _totalSupply);
            emit DividendsDistributed(msg.sender, msg.value);
            totalDividendsDistributed += msg.value;
        }
    }

    function setBalance(address payable account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        if (newBalance >= minTokenBalanceForDividends) {
            _setBalance(account, newBalance);
        } else {
            _setBalance(account, 0);
        }
    }

    function excludeFromDividends(address account, bool excluded)
        external
        onlyOwner
    {
        require(
            excludedFromDividends[account] != excluded,
            "AS_DividendTracker: account already set to requested state"
        );
        excludedFromDividends[account] = excluded;
        if (excluded) {
            _setBalance(account, 0);
        } else {
            uint256 newBalance = IERC20(tokenAddress).balanceOf(account);
            if (newBalance >= minTokenBalanceForDividends) {
                _setBalance(account, newBalance);
            } else {
                _setBalance(account, 0);
            }
        }
        emit ExcludeFromDividends(account, excluded);
    }

    function isExcludedFromDividends(address account)
        public
        view
        returns (bool)
    {
        return excludedFromDividends[account];
    }

    function manualSendDividend(uint256 amount, address holder)
        external
        onlyOwner
    {
        uint256 contractETHBalance = address(this).balance;
        payable(holder).transfer(amount > 0 ? amount : contractETHBalance);
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = _balances[account];
        if (newBalance > currentBalance) {
            uint256 addAmount = newBalance - currentBalance;
            _mint(account, addAmount);
        } else if (newBalance < currentBalance) {
            uint256 subAmount = currentBalance - newBalance;
            _burn(account, subAmount);
        }
    }

    function _mint(address account, uint256 amount) private {
        require(
            account != address(0),
            "AS_DividendTracker: mint to the zero address"
        );
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
        magnifiedDividendCorrections[account] =
            magnifiedDividendCorrections[account] -
            int256(magnifiedDividendPerShare * amount);
    }

    function _burn(address account, uint256 amount) private {
        require(
            account != address(0),
            "AS_DividendTracker: burn from the zero address"
        );
        uint256 accountBalance = _balances[account];
        require(
            accountBalance >= amount,
            "AS_DividendTracker: burn amount exceeds balance"
        );
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
        magnifiedDividendCorrections[account] =
            magnifiedDividendCorrections[account] +
            int256(magnifiedDividendPerShare * amount);
    }

    function processAccount(address payable account)
        public
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);
        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }

    function _withdrawDividendOfUser(address payable account)
        private
        returns (uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(account);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[account] += _withdrawableDividend;
            totalDividendsWithdrawn += _withdrawableDividend;
            emit DividendWithdrawn(account, _withdrawableDividend);
            (bool success, ) = account.call{
                value: _withdrawableDividend,
                gas: 3000
            }("");
            if (!success) {
                withdrawnDividends[account] -= _withdrawableDividend;
                totalDividendsWithdrawn -= _withdrawableDividend;
                return 0;
            }
            return _withdrawableDividend;
        }
        return 0;
    }

    function compoundAccount(address payable account)
        public
        onlyOwner
        returns (bool)
    {
        (uint256 amount, uint256 tokens) = _compoundDividendOfUser(account);
        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Compound(account, amount, tokens);
            return true;
        }
        return false;
    }

    function _compoundDividendOfUser(address payable account)
        private
        returns (uint256, uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(account);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[account] += _withdrawableDividend;
            totalDividendsWithdrawn += _withdrawableDividend;
            emit DividendWithdrawn(account, _withdrawableDividend);

            IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(
                UNISWAPROUTER
            );

            address[] memory path = new address[](2);
            path[0] = uniswapV2Router.WETH();
            path[1] = address(tokenAddress);

            bool success;
            uint256 tokens;

            uint256 initTokenBal = IERC20(tokenAddress).balanceOf(account);
            try
                uniswapV2Router
                    .swapExactETHForTokensSupportingFeeOnTransferTokens{
                    value: _withdrawableDividend
                }(0, path, address(account), block.timestamp)
            {
                success = true;
                tokens = IERC20(tokenAddress).balanceOf(account) - initTokenBal;
            } catch Error(
                string memory /*err*/
            ) {
                success = false;
            }

            if (!success) {
                withdrawnDividends[account] -= _withdrawableDividend;
                totalDividendsWithdrawn -= _withdrawableDividend;
                return (0, 0);
            }

            return (_withdrawableDividend, tokens);
        }
        return (0, 0);
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return accumulativeDividendOf(account) - withdrawnDividends[account];
    }

    function withdrawnDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return withdrawnDividends[account];
    }

    function accumulativeDividendOf(address account)
        public
        view
        returns (uint256)
    {
        int256 a = int256(magnifiedDividendPerShare * balanceOf(account));
        int256 b = magnifiedDividendCorrections[account]; // this is an explicit int256 (signed)
        return uint256(a + b) / magnitude;
    }

    function getAccountInfo(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function getLastClaimTime(address account) public view returns (uint256) {
        return lastClaimTimes[account];
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address, uint256) public pure override returns (bool) {
        revert("AS_DividendTracker: method not implemented");
    }

    function allowance(address, address)
        public
        pure
        override
        returns (uint256)
    {
        revert("AS_DividendTracker: method not implemented");
    }

    function approve(address, uint256) public pure override returns (bool) {
        revert("AS_DividendTracker: method not implemented");
    }

    function transferFrom(
        address,
        address,
        uint256
    ) public pure override returns (bool) {
        revert("AS_DividendTracker: method not implemented");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"BlacklistEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"CompoundingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nativeReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TaxEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"blackListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compoundingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLastClaimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"holder","type":"address"}],"name":"manualSendDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBPS","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setCompoundingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_dividendFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxTxBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxWalletBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_liquidityWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"unBlackListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"},{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"},{"internalType":"bool","name":"_swapAllToken","type":"bool"}],"name":"updateDividendSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560028054821661dead17905560038054909116905560c0604052601860808190527f4155544f2053484954434f494e202d20415320544f4b454e000000000000000060a09081526200007e916004919062000a42565b5060408051808201909152600280825261415360f01b6020909201918252620000aa9160059162000a42565b5061025860065561012c60075560646008556103e860095569152d02c7e14af6800000600a55600c805463ff0000001962ff00001961ff001960ff199384166001171661010017166201000017166301000000179091556031601a5560c8601b55601c805490911690553480156200012157600080fd5b506040516200802738038062008027833981016040819052620001449162000b37565b620001586200015262000638565b6200063c565b600e8054610100600160a81b0319166101006001600160a01b038581169190910291909117909155600f80546001600160a01b03191683831617905560015460405130929190911690620001ac9062000ad1565b620001b992919062000b6e565b604051809103906000f080158015620001d6573d6000803e3d6000fd5b50601780546001600160a01b0319166001600160a01b039283161790556001546040805163c45a015560e01b815290519190921691600091839163c45a0155916004808301926020929190829003018186803b1580156200023657600080fd5b505afa1580156200024b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000271919062000b13565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ba57600080fd5b505afa158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000b13565b6040518363ffffffff1660e01b81526004016200031492919062000b6e565b602060405180830381600087803b1580156200032f57600080fd5b505af115801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000b13565b601880546001600160a01b038086166001600160a01b03199283161790925560198054928416929091169190911790559050620003a98160016200068c565b60175460405162241fbd60e51b81526001600160a01b0390911690630483f7a090620003dd90839060019060040162000b88565b600060405180830381600087803b158015620003f857600080fd5b505af11580156200040d573d6000803e3d6000fd5b505060175460405162241fbd60e51b81526001600160a01b039091169250630483f7a091506200044590309060019060040162000b88565b600060405180830381600087803b1580156200046057600080fd5b505af115801562000475573d6000803e3d6000fd5b50506017546001600160a01b03169150630483f7a0905062000496620007aa565b60016040518363ffffffff1660e01b8152600401620004b792919062000b88565b600060405180830381600087803b158015620004d257600080fd5b505af1158015620004e7573d6000803e3d6000fd5b505060175460405162241fbd60e51b81526001600160a01b039091169250630483f7a091506200051f90859060019060040162000b88565b600060405180830381600087803b1580156200053a57600080fd5b505af11580156200054f573d6000803e3d6000fd5b505050506200056f62000567620007aa60201b60201c565b6001620007b9565b6200057c306001620007b9565b60175462000595906001600160a01b03166001620007b9565b620005ab620005a3620007aa565b6001620008a3565b620005b8306001620008a3565b601754620005d1906001600160a01b03166001620008a3565b620005e7620005df620007aa565b600162000914565b620005f430600162000914565b6017546200060d906001600160a01b0316600162000914565b6200062e6200061b620007aa565b6b033b2e3c9fd0803ce800000062000985565b5050505062000d2f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620006d75760405162461bcd60e51b8152600401620006ce9062000be5565b60405180910390fd5b6001600160a01b0382166000908152601460205260409020805460ff191682158015919091179091556200076e5760175460405162241fbd60e51b81526001600160a01b0390911690630483f7a0906200073990859060019060040162000b88565b600060405180830381600087803b1580156200075457600080fd5b505af115801562000769573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000546001600160a01b031690565b620007c362000638565b6001600160a01b0316620007d6620007aa565b6001600160a01b031614620007ff5760405162461bcd60e51b8152600401620006ce9062000c42565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620008415760405162461bcd60e51b8152600401620006ce9062000c77565b6001600160a01b03821660008181526013602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7906200089790849062000ba3565b60405180910390a25050565b620008ad62000638565b6001600160a01b0316620008c0620007aa565b6001600160a01b031614620008e95760405162461bcd60e51b8152600401620006ce9062000c42565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6200091e62000638565b6001600160a01b031662000931620007aa565b6001600160a01b0316146200095a5760405162461bcd60e51b8152600401620006ce9062000c42565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b038216620009ae5760405162461bcd60e51b8152600401620006ce9062000bae565b80600d6000828254620009c2919062000ccd565b90915550506001600160a01b03821660009081526011602052604081208054839290620009f190849062000ccd565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000a3690859062000cc4565b60405180910390a35050565b82805462000a509062000cf2565b90600052602060002090601f01602090048101928262000a74576000855562000abf565b82601f1062000a8f57805160ff191683800117855562000abf565b8280016001018555821562000abf579182015b8281111562000abf57825182559160200191906001019062000aa2565b5062000acd92915062000adf565b5090565b6126d7806200595083390190565b5b8082111562000acd576000815560010162000ae0565b80516001600160a01b038116811462000b0e57600080fd5b919050565b60006020828403121562000b25578081fd5b62000b308262000af6565b9392505050565b6000806040838503121562000b4a578081fd5b62000b558362000af6565b915062000b656020840162000af6565b90509250929050565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039290921682521515602082015260400190565b901515815260200190565b6020808252601c908201527f41533a206d696e7420746f20746865207a65726f206164647265737300000000604082015260600190565b6020808252603c908201527f41533a206175746f6d61746564206d61726b6574206d616b657220706169722060408201527f697320616c72656164792073657420746f20746861742076616c756500000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f41533a206163636f756e7420697320616c72656164792073657420746f20726560408201526c7175657374656420737461746560981b606082015260800190565b90815260200190565b6000821982111562000ced57634e487b7160e01b81526011600452602481fd5b500190565b60028104600182168062000d0757607f821691505b6020821081141562000d2957634e487b7160e01b600052602260045260246000fd5b50919050565b614c118062000d3f6000396000f3fe6080604052600436106103b15760003560e01c80637b510fe8116101e7578063c02466681161010d578063e01af92c116100a0578063f1b234ad1161006f578063f1b234ad14610a68578063f2fde38b14610a88578063f4571c4914610aa8578063f69e204614610ac8576103b8565b8063e01af92c146109fe578063e2f4560514610a1e578063e4956ce214610a33578063ebbf1ace14610a53576103b8565b8063c9567bf9116100dc578063c9567bf914610989578063d2fcc0011461099e578063d4c989d3146109be578063dd62ed3e146109de576103b8565b8063c024666814610909578063c3033aeb14610929578063c6af580b14610949578063c705c56914610969576103b8565b8063a457c2d711610185578063aa4e8c4a11610154578063aa4e8c4a14610894578063aafd847a146108b4578063b62496f5146108d4578063b80b6e89146108f4576103b8565b8063a457c2d714610814578063a680e0bc14610834578063a8b9d24014610854578063a9059cbb14610874576103b8565b80638e126944116101c15780638e1269441461079f57806395d89b41146107bf5780639a7a23d6146107d45780639e252f00146107f4576103b8565b80637b510fe814610744578063870bd30b146107755780638da5cb5b1461078a576103b8565b806349bd5a5e116102d7578063658c27a91161026a5780636ddd1713116102395780636ddd1713146106e557806370a08231146106fa578063715018a61461071a578063744d15911461072f576103b8565b8063658c27a91461066557806365b8dbc01461068557806368c51e35146106a55780636dd3d39f146106c5576103b8565b806357777d31116102a657806357777d31146105fb5780635937ea6c146106105780635b65b9ab146106255780635e843ad214610645576103b8565b806349bd5a5e146105915780634e71d92d146105a65780634fbee193146105bb578063537df3b6146105db576103b8565b806327ce01471161034f57806333f3d6281161031e57806333f3d6281461051c57806337eb15281461053c57806339509351146105515780634838d16514610571576103b8565b806327ce0147146104b05780632c1f5216146104d05780632f4504ae146104e5578063313ce567146104fa576103b8565b80630dd871571161038b5780630dd87157146104375780631694505e1461045957806318160ddd1461047b57806323b872dd14610490576103b8565b80630483f7a0146103bd57806306fdde03146103df578063095ea7b31461040a576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613eda565b610add565b005b3480156103eb57600080fd5b506103f4610be7565b60405161040191906142aa565b60405180910390f35b34801561041657600080fd5b5061042a610425366004613f07565b610c79565b604051610401919061429f565b34801561044357600080fd5b5061044c610c96565b604051610401919061494b565b34801561046557600080fd5b5061046e610c9c565b6040516104019190614186565b34801561048757600080fd5b5061044c610cb8565b34801561049c57600080fd5b5061042a6104ab366004613e9a565b610cbe565b3480156104bc57600080fd5b5061044c6104cb366004613e11565b610d96565b3480156104dc57600080fd5b5061046e610e45565b3480156104f157600080fd5b5061042a610e61565b34801561050657600080fd5b5061050f610e71565b6040516104019190614a26565b34801561052857600080fd5b506103dd610537366004613f07565b610e76565b34801561054857600080fd5b5061044c610f94565b34801561055d57600080fd5b5061042a61056c366004613f07565b610f9a565b34801561057d57600080fd5b506103dd61058c366004613e11565b610ff6565b34801561059d57600080fd5b5061046e611118565b3480156105b257600080fd5b506103dd611134565b3480156105c757600080fd5b5061042a6105d6366004613e11565b6111cb565b3480156105e757600080fd5b506103dd6105f6366004613e11565b6111f6565b34801561060757600080fd5b5061044c611314565b34801561061c57600080fd5b5061044c61131a565b34801561063157600080fd5b506103dd61064036600461412b565b611320565b34801561065157600080fd5b506103dd610660366004614096565b6113bf565b34801561067157600080fd5b5061042a610680366004613e11565b611498565b34801561069157600080fd5b506103dd6106a0366004613e11565b6114c3565b3480156106b157600080fd5b506103dd6106c03660046140d7565b61181b565b3480156106d157600080fd5b5061042a6106e0366004613e11565b6118dc565b3480156106f157600080fd5b5061042a611907565b34801561070657600080fd5b5061044c610715366004613e11565b611915565b34801561072657600080fd5b506103dd61193d565b34801561073b57600080fd5b5061044c6119bc565b34801561075057600080fd5b5061076461075f366004613e11565b6119c2565b604051610401959493929190614264565b34801561078157600080fd5b5061042a611a83565b34801561079657600080fd5b5061046e611a92565b3480156107ab57600080fd5b506103dd6107ba366004614107565b611aae565b3480156107cb57600080fd5b506103f4611b79565b3480156107e057600080fd5b506103dd6107ef366004613eda565b611b88565b34801561080057600080fd5b506103dd61080f3660046140d7565b611c5e565b34801561082057600080fd5b5061042a61082f366004613f07565b611cfe565b34801561084057600080fd5b5061044c61084f366004613e11565b611da0565b34801561086057600080fd5b5061044c61086f366004613e11565b611df7565b34801561088057600080fd5b5061042a61088f366004613f07565b611e4e565b3480156108a057600080fd5b506103dd6108af3660046140d7565b611e62565b3480156108c057600080fd5b5061044c6108cf366004613e11565b611f23565b3480156108e057600080fd5b5061042a6108ef366004613e11565b611f7a565b34801561090057600080fd5b5061044c611f8f565b34801561091557600080fd5b506103dd610924366004613eda565b611f95565b34801561093557600080fd5b506103dd610944366004613f7a565b6120f9565b34801561095557600080fd5b506103dd61096436600461405e565b61222c565b34801561097557600080fd5b5061042a610984366004613e11565b61230b565b34801561099557600080fd5b506103dd6123b2565b3480156109aa57600080fd5b506103dd6109b9366004613eda565b612452565b3480156109ca57600080fd5b506103dd6109d9366004613eda565b61251b565b3480156109ea57600080fd5b5061044c6109f9366004613e88565b6125e4565b348015610a0a57600080fd5b506103dd610a1936600461405e565b61261c565b348015610a2a57600080fd5b5061044c6126ef565b348015610a3f57600080fd5b506103dd610a4e36600461405e565b6126f5565b348015610a5f57600080fd5b5061044c6127ca565b348015610a7457600080fd5b506103dd610a83366004613e50565b6127d0565b348015610a9457600080fd5b506103dd610aa3366004613e11565b6128b7565b348015610ab457600080fd5b506103dd610ac3366004613f7a565b612980565b348015610ad457600080fd5b506103dd612ab3565b610ae5612b18565b73ffffffffffffffffffffffffffffffffffffffff16610b03611a92565b73ffffffffffffffffffffffffffffffffffffffff1614610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60405180910390fd5b6017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690630483f7a090610bb190859085906004016141f4565b600060405180830381600087803b158015610bcb57600080fd5b505af1158015610bdf573d6000803e3d6000fd5b505050505050565b606060048054610bf690614ad9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2290614ad9565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000610c8d610c86612b18565b8484612b1c565b50600192915050565b600b5481565b60185473ffffffffffffffffffffffffffffffffffffffff1681565b600d5490565b6000610ccb848484612c2b565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260126020526040812081610cf9612b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906145a0565b610d8b85610d7c612b18565b610d868685614ac2565b612b1c565b506001949350505050565b6017546040517f27ce014700000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906327ce014790610ded908590600401614186565b60206040518083038186803b158015610e0557600080fd5b505afa158015610e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d91906140ef565b90505b919050565b60175473ffffffffffffffffffffffffffffffffffffffff1681565b600c546301000000900460ff1681565b601290565b610e7e612b18565b73ffffffffffffffffffffffffffffffffffffffff16610e9c611a92565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90610f3d90339085906004016141a7565b602060405180830381600087803b158015610f5757600080fd5b505af1158015610f6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8f919061407a565b505050565b60095481565b6000610c8d610fa7612b18565b848460126000610fb5612b18565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b1681529252902054610d869190614a34565b610ffe612b18565b73ffffffffffffffffffffffffffffffffffffffff1661101c611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff16156110c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906146b7565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60195473ffffffffffffffffffffffffffffffffffffffff1681565b60175473ffffffffffffffffffffffffffffffffffffffff1663807ab4f761115a612b18565b6040518263ffffffff1660e01b81526004016111769190614186565b602060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061407a565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b6111fe612b18565b73ffffffffffffffffffffffffffffffffffffffff1661121c611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff166112c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614725565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b601a5481565b60065481565b611328612b18565b73ffffffffffffffffffffffffffffffffffffffff16611346611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600683905560078290556008819055806113ad8385614a34565b6113b79190614a34565b600955505050565b6113c7612b18565b73ffffffffffffffffffffffffffffffffffffffff166113e5611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00931515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9093169290921792909216179055565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b6114cb612b18565b73ffffffffffffffffffffffffffffffffffffffff166114e9611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60185473ffffffffffffffffffffffffffffffffffffffff8281169116141561158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614543565b60185460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8381169190911791829055604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561166f57600080fd5b505afa158015611683573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a79190613e34565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561172b57600080fd5b505afa15801561173f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117639190613e34565b6040518363ffffffff1660e01b81526004016117809291906141cd565b602060405180830381600087803b15801561179a57600080fd5b505af11580156117ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d29190613e34565b601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b611823612b18565b73ffffffffffffffffffffffffffffffffffffffff16611841611a92565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60af81101580156118a157506127108111155b6118d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906143c0565b601b55565b73ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205460ff1690565b600c54610100900460ff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b611945612b18565b73ffffffffffffffffffffffffffffffffffffffff16611963611a92565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b6119ba6000613455565b565b601b5481565b6017546040517f7b510fe8000000000000000000000000000000000000000000000000000000008152600091829182918291829173ffffffffffffffffffffffffffffffffffffffff1690637b510fe890611a21908990600401614186565b60a06040518083038186803b158015611a3957600080fd5b505afa158015611a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a719190613f32565b939a9299509097509550909350915050565b600c5462010000900460ff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b611ab6612b18565b73ffffffffffffffffffffffffffffffffffffffff16611ad4611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b6017546040517f8e12694400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690638e12694490610bb19085908590600401614954565b606060058054610bf690614ad9565b611b90612b18565b73ffffffffffffffffffffffffffffffffffffffff16611bae611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60195473ffffffffffffffffffffffffffffffffffffffff83811691161415611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614880565b611c5a82826134ca565b5050565b611c66612b18565b73ffffffffffffffffffffffffffffffffffffffff16611c84611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b604051339082156108fc029083906000818181858888f19350505050158015611c5a573d6000803e3d6000fd5b60008060126000611d0d612b18565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906145fd565b611d96611d8b612b18565b85610d868685614ac2565b5060019392505050565b6017546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063a680e0bc90610ded908590600401614186565b6017546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063a8b9d24090610ded908590600401614186565b6000610c8d611e5b612b18565b8484612c2b565b611e6a612b18565b73ffffffffffffffffffffffffffffffffffffffff16611e88611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b604b8110158015611ee857506127108111155b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906144d7565b601a55565b6017546040517faafd847a00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063aafd847a90610ded908590600401614186565b60146020526000908152604090205460ff1681565b60085481565b611f9d612b18565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff161515811515141561206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906148ee565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601360205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7906120ed90849061429f565b60405180910390a25050565b612101612b18565b73ffffffffffffffffffffffffffffffffffffffff1661211f611a92565b73ffffffffffffffffffffffffffffffffffffffff161461216c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60005b81518160ff161015611c5a57600160166000848460ff16815181106121bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061222481614b2d565b91505061216f565b612234612b18565b73ffffffffffffffffffffffffffffffffffffffff16612252611a92565b73ffffffffffffffffffffffffffffffffffffffff161461229f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000831515021790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe1339061230090839061429f565b60405180910390a150565b6017546040517fc705c56900000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063c705c56990612362908590600401614186565b60206040518083038186803b15801561237a57600080fd5b505afa15801561238e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d919061407a565b6123ba612b18565b73ffffffffffffffffffffffffffffffffffffffff166123d8611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612425576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b61245a612b18565b73ffffffffffffffffffffffffffffffffffffffff16612478611a92565b73ffffffffffffffffffffffffffffffffffffffff16146124c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b612523612b18565b73ffffffffffffffffffffffffffffffffffffffff16612541611a92565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260126020908152604080832093909416825291909152205490565b612624612b18565b73ffffffffffffffffffffffffffffffffffffffff16612642611a92565b73ffffffffffffffffffffffffffffffffffffffff161461268f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100831515021790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c89061230090839061429f565b600a5481565b6126fd612b18565b73ffffffffffffffffffffffffffffffffffffffff1661271b611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612768576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000831515021790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d439061230090839061429f565b60075481565b6127d8612b18565b73ffffffffffffffffffffffffffffffffffffffff166127f6611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612843576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b6128bf612b18565b73ffffffffffffffffffffffffffffffffffffffff166128dd611a92565b73ffffffffffffffffffffffffffffffffffffffff161461292a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff8116612977576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061441d565b6111c881613455565b612988612b18565b73ffffffffffffffffffffffffffffffffffffffff166129a6611a92565b73ffffffffffffffffffffffffffffffffffffffff16146129f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60005b81518160ff161015611c5a57600060166000848460ff1681518110612a44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612aab81614b2d565b9150506129f6565b600c546301000000900460ff16612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614389565b60175473ffffffffffffffffffffffffffffffffffffffff16636de1a5a961115a5b3390565b73ffffffffffffffffffffffffffffffffffffffff8316612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906147b9565b73ffffffffffffffffffffffffffffffffffffffff8216612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906146ee565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526012602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590612c1e90859061494b565b60405180910390a3505050565b601c5460ff1680612c6e5750612c3f611a92565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80612cab5750612c7c611a92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612cdb575073ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff165b80612d0b575073ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff165b612d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061450c565b73ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff1615612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061431b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff1615612e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906148b7565b73ffffffffffffffffffffffffffffffffffffffff8316612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061447a565b73ffffffffffffffffffffffffffffffffffffffff8216612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614816565b6000612710601a54612eab610cb8565b612eb59190614a85565b612ebf9190614a4c565b90506000612710601b54612ed1610cb8565b612edb9190614a85565b612ee59190614a4c565b90508183111580612f1b575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff165b612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614352565b612f59611a92565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612faa575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015612fd1575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015612ff8575060195473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561305357600061300885611915565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601e602052604090205490915060ff16806130485750816130458583614a34565b11155b61305157600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff8516600090815260116020526040902054838110156130b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061465a565b60006130be30611915565b600a54600c5491925047919083101590610100900460ff1680156130df5750805b80156130ee5750600e5460ff16155b8015613120575073ffffffffffffffffffffffffffffffffffffffff891660009081526014602052604090205460ff16155b8015613147575060185473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b80156131865750613156611a92565b73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b80156131c55750613195611a92565b73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b1561323c57600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff1661320557600a5492505b61320f838361365d565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60195460009073ffffffffffffffffffffffffffffffffffffffff8b811691161480613282575060195473ffffffffffffffffffffffffffffffffffffffff8a81169116145b1561328b575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526013602052604090205460ff16806132e4575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff165b156132ed575060005b600e5460ff16806133075750600c5462010000900460ff16155b15613310575060005b801561334e5760006127106009548a6133299190614a85565b6133339190614a4c565b905061333f818a614ac2565b985061334c8b308361398f565b505b6133598a8a8a61398f565b60175473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b61338181611915565b6040518363ffffffff1660e01b815260040161339e9291906141a7565b600060405180830381600087803b1580156133b857600080fd5b505af11580156133cc573d6000803e3d6000fd5b505060175473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6133fa81611915565b6040518363ffffffff1660e01b81526004016134179291906141a7565b600060405180830381600087803b15801561343157600080fd5b505af1158015613445573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff1615158115151415613530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061475c565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260146020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155613614576017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690630483f7a0906135e19085906001906004016141f4565b600060405180830381600087803b1580156135fb57600080fd5b505af115801561360f573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000821161366a57611c5a565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff16156136ad576009546006546136a09085614a85565b6136aa9190614a4c565b90505b600080601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561371857600080fd5b505afa15801561372c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061375091906140ef565b1115613773576009546008546137669086614a85565b6137709190614a4c565b90505b6000816137808487614ac2565b61378a9190614ac2565b90506000613799600283614a4c565b905060006137a78284614ac2565b90506000826137b68688614a34565b6137c09190614a34565b9050476137cc82613b48565b6000886137d98347614ac2565b6137e39190614a34565b90506000836137f28a84614a85565b6137fc9190614a4c565b905060008461380b8a85614a85565b6138159190614a4c565b90506000816138248486614ac2565b61382e9190614ac2565b9050821561388357600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613881573d6000803e3d6000fd5b505b61388d8782613d22565b7fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a8882896040516138c093929190614a10565b60405180910390a181156139805760175460405160009173ffffffffffffffffffffffffffffffffffffffff169084906138f990614183565b60006040518083038185875af1925050503d8060008114613936576040519150601f19603f3d011682016040523d82523d6000602084013e61393b565b606091505b505090508015613445577f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38b84604051613976929190614a02565b60405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166139dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061447a565b73ffffffffffffffffffffffffffffffffffffffff8216613a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614816565b73ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205481811015613a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061465a565b613a938282614ac2565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601160205260408082209390935590851681529081208054849290613ad6908490614a34565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b3a919061494b565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613ba4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b158015613c1e57600080fd5b505afa158015613c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c569190613e34565b81600181518110613c90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601854613cc39130911684612b1c565b6018546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610bb1908590600090869030904290600401614978565b601854613d4790309073ffffffffffffffffffffffffffffffffffffffff1684612b1c565b601854600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263f305d719928592613dad923092899260009283921690429060040161421c565b6060604051808303818588803b158015613dc657600080fd5b505af1158015613dda573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dff9190614156565b5050505050565b8035610e4081614bab565b600060208284031215613e22578081fd5b8135613e2d81614bab565b9392505050565b600060208284031215613e45578081fd5b8151613e2d81614bab565b60008060408385031215613e62578081fd5b8235613e6d81614bab565b91506020830135613e7d81614bab565b809150509250929050565b60008060408385031215613e62578182fd5b600080600060608486031215613eae578081fd5b8335613eb981614bab565b92506020840135613ec981614bab565b929592945050506040919091013590565b60008060408385031215613eec578182fd5b8235613ef781614bab565b91506020830135613e7d81614bcd565b60008060408385031215613f19578182fd5b8235613f2481614bab565b946020939093013593505050565b600080600080600060a08688031215613f49578081fd5b8551613f5481614bab565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60006020808385031215613f8c578182fd5b823567ffffffffffffffff80821115613fa3578384fd5b818501915085601f830112613fb6578384fd5b813581811115613fc857613fc8614b7c565b8381026040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561400a5761400a614b7c565b604052828152858101935084860182860187018a1015614028578788fd5b8795505b838610156140515761403d81613e06565b85526001959095019493860193860161402c565b5098975050505050505050565b60006020828403121561406f578081fd5b8135613e2d81614bcd565b60006020828403121561408b578081fd5b8151613e2d81614bcd565b6000806000606084860312156140aa578283fd5b83356140b581614bcd565b92506020840135915060408401356140cc81614bcd565b809150509250925092565b6000602082840312156140e8578081fd5b5035919050565b600060208284031215614100578081fd5b5051919050565b60008060408385031215614119578182fd5b823591506020830135613e7d81614bab565b60008060006060848603121561413f578081fd5b505081359360208301359350604090920135919050565b60008060006060848603121561416a578081fd5b8351925060208401519150604084015190509250925092565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9290921682521515602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b73ffffffffffffffffffffffffffffffffffffffff959095168552602085019390935260408401919091526060830152608082015260a00190565b901515815260200190565b6000602080835283518082850152825b818110156142d6578581018301518582016040015282016142ba565b818111156142e75783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526019908201527f41533a2053656e64657220697320626c61636b6c697374656400000000000000604082015260600190565b60208082526011908201527f5458204c696d6974204578636565646564000000000000000000000000000000604082015260600190565b6020808252601e908201527f41533a20636f6d706f756e64696e67206973206e6f7420656e61626c65640000604082015260600190565b60208082526021908201527f425053206d757374206265206265747765656e2031373520616e64203130303060408201527f3000000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f41533a207472616e736665722066726f6d20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f425053206d757374206265206265747765656e20373520616e64203130303030604082015260600190565b60208082526008908201527f4e6f74204f70656e000000000000000000000000000000000000000000000000604082015260600190565b60208082526030908201527f41533a2074686520726f7574657220697320616c72656164792073657420746f60408201527f20746865206e6577206164647265737300000000000000000000000000000000606082015260800190565b60208082526025908201527f41533a207472616e7366657220616d6f756e74206578636565647320616c6c6f60408201527f77616e6365000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f41533a2064656372656173656420616c6c6f77616e63652062656c6f77207a6560408201527f726f000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f41533a207472616e7366657220616d6f756e7420657863656564732062616c6160408201527f6e63650000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f7573657220616c726561647920626c61636b6c69737465640000000000000000604082015260600190565b6020808252601f908201527f41533a20617070726f766520746f20746865207a65726f206164647265737300604082015260600190565b60208082526018908201527f7573657220616c72656164792077686974656c69737465640000000000000000604082015260600190565b6020808252603c908201527f41533a206175746f6d61746564206d61726b6574206d616b657220706169722060408201527f697320616c72656164792073657420746f20746861742076616c756500000000606082015260800190565b60208082526021908201527f41533a20617070726f76652066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f41533a207472616e7366657220746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f41533a2044455820706169722063616e206e6f742062652072656d6f76656400604082015260600190565b6020808252601c908201527f41533a20526563697069656e7420697320626c61636b6c697374656400000000604082015260600190565b6020808252602d908201527f41533a206163636f756e7420697320616c72656164792073657420746f20726560408201527f7175657374656420737461746500000000000000000000000000000000000000606082015260800190565b90815260200190565b91825273ffffffffffffffffffffffffffffffffffffffff16602082015260400190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156149d457845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016149a2565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b918252602082015260400190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60008219821115614a4757614a47614b4d565b500190565b600082614a80577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614abd57614abd614b4d565b500290565b600082821015614ad457614ad4614b4d565b500390565b600281046001821680614aed57607f821691505b60208210811415614b27577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060ff821660ff811415614b4457614b44614b4d565b60010192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146111c857600080fd5b80151581146111c857600080fdfea2646970667358221220ca5f476057932e6b9481ac9eaef305a8958ad99b673123d5ff353178c3e47a7864736f6c6343000801003360e0604052601260a08190527120a9afa234bb34b232b7322a3930b1b5b2b960711b60c09081526200003591600291906200014a565b506040805180820190915260128082527120a9afa234bb34b232b7322a3930b1b5b2b960711b602090920191825262000071916003916200014a565b503480156200007f57600080fd5b50604051620026d7380380620026d7833981016040819052620000a2916200020d565b620000b6620000b0620000f6565b620000fa565b69021e19e0c9bab2400000608052600a80546001600160a01b039384166001600160a01b0319918216179091556001805492909316911617905562000281565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001589062000244565b90600052602060002090601f0160209004810192826200017c5760008555620001c7565b82601f106200019757805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c7578251825591602001919060010190620001aa565b50620001d5929150620001d9565b5090565b5b80821115620001d55760008155600101620001da565b80516001600160a01b03811681146200020857600080fd5b919050565b6000806040838503121562000220578182fd5b6200022b83620001f0565b91506200023b60208401620001f0565b90509250929050565b6002810460018216806200025957607f821691505b602082108114156200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161242c620002ab600039600081816107db01528181610eb30152610fa8015261242c6000f3fe6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c569146104ca578063dd62ed3e146104ea578063e30443bc14610505578063f2fde38b14610525576101e0565b8063a8b9d24014610475578063a9059cbb14610238578063aafd847a14610495578063c49af5f0146104b5576101e0565b806395d89b41116100d157806395d89b41146104165780639d76ea581461042b5780639e1e066114610440578063a680e0bc14610455576101e0565b806385a6b3ae146103bf5780638da5cb5b146103d45780638e126944146103f6576101e0565b80633009a6091161016f57806370a082311161013e57806370a0823114610339578063715018a6146103595780637b510fe81461036e578063807ab4f71461039f576101e0565b80633009a609146102c2578063313ce567146102d75780634e7b827f146102f95780636de1a5a914610319576101e0565b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026557806323b872dd1461028757806327ce0147146102a2576101e0565b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d576101e0565b366101e0576101de610545565b005b600080fd5b6101de610545565b3480156101f957600080fd5b506101de610208366004611c29565b6105e6565b34801561021957600080fd5b5061022261086e565b60405161022f9190611d92565b60405180910390f35b34801561024457600080fd5b50610258610253366004611c5a565b610901565b60405161022f9190611d04565b34801561027157600080fd5b5061027a610935565b60405161022f9190612066565b34801561029357600080fd5b50610258610253366004611be9565b3480156102ae57600080fd5b5061027a6102bd366004611b47565b61093b565b3480156102ce57600080fd5b5061027a6109ad565b3480156102e357600080fd5b506102ec6109b3565b60405161022f919061207d565b34801561030557600080fd5b50610258610314366004611b47565b6109b8565b34801561032557600080fd5b50610258610334366004611b47565b6109cd565b34801561034557600080fd5b5061027a610354366004611b47565b610ad0565b34801561036557600080fd5b506101de610af8565b34801561037a57600080fd5b5061038e610389366004611b47565b610b75565b60405161022f959493929190611cc9565b3480156103ab57600080fd5b506102586103ba366004611b47565b610c0b565b3480156103cb57600080fd5b5061027a610d06565b3480156103e057600080fd5b506103e9610d0c565b60405161022f9190611ca8565b34801561040257600080fd5b506101de610411366004611c84565b610d28565b34801561042257600080fd5b50610222610df1565b34801561043757600080fd5b506103e9610e00565b34801561044c57600080fd5b5061027a610e1c565b34801561046157600080fd5b5061027a610470366004611b47565b610e22565b34801561048157600080fd5b5061027a610490366004611b47565b610e4a565b3480156104a157600080fd5b5061027a6104b0366004611b47565b610e89565b3480156104c157600080fd5b5061027a610eb1565b3480156104d657600080fd5b506102586104e5366004611b47565b610ed5565b3480156104f657600080fd5b5061027a610253366004611bb1565b34801561051157600080fd5b506101de610520366004611b86565b610f00565b34801561053157600080fd5b506101de610540366004611b47565b610feb565b60006005541161055457600080fd5b34156105e45760055461057870010000000000000000000000000000000034612150565b6105829190612117565b60075461058f91906120ff565b60075560405133907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511906105c4903490612066565b60405180910390a234600860008282546105de91906120ff565b90915550505b565b6105ee6110b7565b73ffffffffffffffffffffffffffffffffffffffff1661060c610d0c565b73ffffffffffffffffffffffffffffffffffffffff1614610662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16151581151514156106c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611e60565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556107305761072b8260006110bb565b61081c565b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190610787908690600401611ca8565b60206040518083038186803b15801561079f57600080fd5b505afa1580156107b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d79190611c6c565b90507f0000000000000000000000000000000000000000000000000000000000000000811061080f5761080a83826110bb565b61081a565b61081a8360006110bb565b505b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516108629190611d04565b60405180910390a25050565b60606002805461087d90612218565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990612218565b80156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b505050505090505b90565b60006040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f4f565b60055490565b60008061094783610ad0565b6007546109549190612150565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054909150700100000000000000000000000000000000610999828461208b565b6109a39190612117565b925050505b919050565b60045481565b601290565b600b6020526000908152604090205460ff1681565b60006109d76110b7565b73ffffffffffffffffffffffffffffffffffffffff166109f5610d0c565b73ffffffffffffffffffffffffffffffffffffffff1614610a42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b600080610a4e8461112c565b90925090508115610ac65773ffffffffffffffffffffffffffffffffffffffff84166000818152600e602052604090819020429055517f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d18687390610ab3908590859061206f565b60405180910390a26001925050506109a8565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b610b006110b7565b73ffffffffffffffffffffffffffffffffffffffff16610b1e610d0c565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b6105e460006115ee565b6000806000806000610b85611b09565b73ffffffffffffffffffffffffffffffffffffffff87168152610ba787610e4a565b6020820152610bb58761093b565b604082810191825273ffffffffffffffffffffffffffffffffffffffff989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b6000610c156110b7565b73ffffffffffffffffffffffffffffffffffffffff16610c33610d0c565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b6000610c8b83611663565b90508015610cfd5773ffffffffffffffffffffffffffffffffffffffff83166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610ceb908490612066565b60405180910390a260019150506109a8565b50600092915050565b60085481565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b610d306110b7565b73ffffffffffffffffffffffffffffffffffffffff16610d4e610d0c565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b4773ffffffffffffffffffffffffffffffffffffffff82166108fc84610dc15782610dc3565b845b6040518115909202916000818181858888f19350505050158015610deb573d6000803e3d6000fd5b50505050565b60606003805461087d90612218565b600a5473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d6020526040812054610e798361093b565b610e839190612201565b92915050565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b7f000000000000000000000000000000000000000000000000000000000000000081565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b610f086110b7565b73ffffffffffffffffffffffffffffffffffffffff16610f26610d0c565b73ffffffffffffffffffffffffffffffffffffffff1614610f73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff1615610fa657610fe7565b7f00000000000000000000000000000000000000000000000000000000000000008110610fdc57610fd782826110bb565b610fe7565b610fe78260006110bb565b5050565b610ff36110b7565b73ffffffffffffffffffffffffffffffffffffffff16611011610d0c565b73ffffffffffffffffffffffffffffffffffffffff161461105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611f1a565b73ffffffffffffffffffffffffffffffffffffffff81166110ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611e03565b6110b4816115ee565b50565b3390565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040902054808211156111075760006110f58284612201565b905061110184826117f7565b50611127565b8082101561112757600061111b8383612201565b9050610deb8482611953565b505050565b600080600061113a84610e4a565b905080156115e05773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548392906111779084906120ff565b92505081905550806009600082825461119091906120ff565b925050819055508373ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516111dd9190612066565b60405180910390a260015460408051600280825260608201835273ffffffffffffffffffffffffffffffffffffffff909316926000926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a09190611b6a565b816000815181106112da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a5482519116908290600190811061133f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546040517f70a08231000000000000000000000000000000000000000000000000000000008152600092839283929116906370a08231906113a9908c90600401611ca8565b60206040518083038186803b1580156113c157600080fd5b505afa1580156113d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f99190611c6c565b90508473ffffffffffffffffffffffffffffffffffffffff1663b6f9de95876000878d426040518663ffffffff1660e01b815260040161143c9493929190611d0f565b6000604051808303818588803b15801561145557600080fd5b505af193505050508015611467575060015b6114ae5761147361230d565b806308c379a0141561149d5750611488612324565b80611493575061149f565b60009350506114a9565b505b3d6000803e3d6000fd5b611565565b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815260019450829173ffffffffffffffffffffffffffffffffffffffff16906370a0823190611508908d90600401611ca8565b60206040518083038186803b15801561152057600080fd5b505afa158015611534573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115589190611c6c565b6115629190612201565b91505b826115d05773ffffffffffffffffffffffffffffffffffffffff89166000908152600d60205260408120805488929061159f908490612201565b9250508190555085600960008282546115b89190612201565b90915550600098508897506115e99650505050505050565b509395509293506115e992505050565b60008092509250505b915091565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061166f83610e4a565b90508015610cfd5773ffffffffffffffffffffffffffffffffffffffff83166000908152600d6020526040812080548392906116ac9084906120ff565b9250508190555080600960008282546116c591906120ff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516117129190612066565b60405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb890604051611744906108fe565b600060405180830381858888f193505050503d8060008114611782576040519150601f19603f3d011682016040523d82523d6000602084013e611787565b606091505b50509050806117ef5773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548492906117c5908490612201565b9250508190555081600960008282546117de9190612201565b90915550600093506109a892505050565b5090506109a8565b73ffffffffffffffffffffffffffffffffffffffff8216611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611ebd565b806005600082825461185691906120ff565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080548392906118909084906120ff565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906118e0908590612066565b60405180910390a3806007546118f69190612150565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040902054611926919061218d565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600c602052604090209190915550565b73ffffffffffffffffffffffffffffffffffffffff82166119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990611fac565b73ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205481811015611a00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990612009565b611a0a8282612201565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081209190915560058054849290611a45908490612201565b909155505060405160009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a95908690612066565b60405180910390a381600754611aab9190612150565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054611adb919061208b565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600c60205260409020929092555050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600060208284031215611b58578081fd5b8135611b63816123d4565b9392505050565b600060208284031215611b7b578081fd5b8151611b63816123d4565b60008060408385031215611b98578081fd5b8235611ba3816123d4565b946020939093013593505050565b60008060408385031215611bc3578182fd5b8235611bce816123d4565b91506020830135611bde816123d4565b809150509250929050565b600080600060608486031215611bfd578081fd5b8335611c08816123d4565b92506020840135611c18816123d4565b929592945050506040919091013590565b60008060408385031215611c3b578182fd5b8235611c46816123d4565b915060208301358015158114611bde578182fd5b60008060408385031215611b98578182fd5b600060208284031215611c7d578081fd5b5051919050565b60008060408385031215611c96578182fd5b823591506020830135611bde816123d4565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff959095168552602085019390935260408401919091526060830152608082015260a00190565b901515815260200190565b600060808201868352602060808185015281875180845260a0860191508289019350845b81811015611d6557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101611d33565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b6000602080835283518082850152825b81811015611dbe57858101830151858201604001528201611da2565b81811115611dcf5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603a908201527f41535f4469766964656e64547261636b65723a206163636f756e7420616c726560408201527f6164792073657420746f20726571756573746564207374617465000000000000606082015260800190565b6020808252602c908201527f41535f4469766964656e64547261636b65723a206d696e7420746f207468652060408201527f7a65726f20616464726573730000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f41535f4469766964656e64547261636b65723a206d6574686f64206e6f74206960408201527f6d706c656d656e74656400000000000000000000000000000000000000000000606082015260800190565b6020808252602e908201527f41535f4469766964656e64547261636b65723a206275726e2066726f6d20746860408201527f65207a65726f2061646472657373000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f41535f4469766964656e64547261636b65723a206275726e20616d6f756e742060408201527f657863656564732062616c616e63650000000000000000000000000000000000606082015260800190565b90815260200190565b918252602082015260400190565b60ff91909116815260200190565b6000808212827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038413811516156120c5576120c56122de565b827f80000000000000000000000000000000000000000000000000000000000000000384128116156120f9576120f96122de565b50500190565b60008219821115612112576121126122de565b500190565b60008261214b577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612188576121886122de565b500290565b6000808312837f8000000000000000000000000000000000000000000000000000000000000000018312811516156121c7576121c76122de565b837f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0183138116156121fb576121fb6122de565b50500390565b600082821015612213576122136122de565b500390565b60028104600182168061222c57607f821691505b60208210811415612266577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff821117156122d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040525050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060033d11156108fe57600481823e5160e01c90565b600060443d1015612334576108fe565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff81602484011181841117156123845750505050506108fe565b828501915081518181111561239e575050505050506108fe565b843d87010160208285010111156123ba575050505050506108fe565b6123c96020828601018761226c565b509094505050505090565b73ffffffffffffffffffffffffffffffffffffffff811681146110b457600080fdfea26469706673582212206629cff6424c2cfa432181dde154ba76451a6a27229ea11ad4d43ad033fb4f1964736f6c63430008010033000000000000000000000000fd79e154925b2ad51071dfd9bad3f703ce5435c1000000000000000000000000fd79e154925b2ad51071dfd9bad3f703ce5435c1

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80637b510fe8116101e7578063c02466681161010d578063e01af92c116100a0578063f1b234ad1161006f578063f1b234ad14610a68578063f2fde38b14610a88578063f4571c4914610aa8578063f69e204614610ac8576103b8565b8063e01af92c146109fe578063e2f4560514610a1e578063e4956ce214610a33578063ebbf1ace14610a53576103b8565b8063c9567bf9116100dc578063c9567bf914610989578063d2fcc0011461099e578063d4c989d3146109be578063dd62ed3e146109de576103b8565b8063c024666814610909578063c3033aeb14610929578063c6af580b14610949578063c705c56914610969576103b8565b8063a457c2d711610185578063aa4e8c4a11610154578063aa4e8c4a14610894578063aafd847a146108b4578063b62496f5146108d4578063b80b6e89146108f4576103b8565b8063a457c2d714610814578063a680e0bc14610834578063a8b9d24014610854578063a9059cbb14610874576103b8565b80638e126944116101c15780638e1269441461079f57806395d89b41146107bf5780639a7a23d6146107d45780639e252f00146107f4576103b8565b80637b510fe814610744578063870bd30b146107755780638da5cb5b1461078a576103b8565b806349bd5a5e116102d7578063658c27a91161026a5780636ddd1713116102395780636ddd1713146106e557806370a08231146106fa578063715018a61461071a578063744d15911461072f576103b8565b8063658c27a91461066557806365b8dbc01461068557806368c51e35146106a55780636dd3d39f146106c5576103b8565b806357777d31116102a657806357777d31146105fb5780635937ea6c146106105780635b65b9ab146106255780635e843ad214610645576103b8565b806349bd5a5e146105915780634e71d92d146105a65780634fbee193146105bb578063537df3b6146105db576103b8565b806327ce01471161034f57806333f3d6281161031e57806333f3d6281461051c57806337eb15281461053c57806339509351146105515780634838d16514610571576103b8565b806327ce0147146104b05780632c1f5216146104d05780632f4504ae146104e5578063313ce567146104fa576103b8565b80630dd871571161038b5780630dd87157146104375780631694505e1461045957806318160ddd1461047b57806323b872dd14610490576103b8565b80630483f7a0146103bd57806306fdde03146103df578063095ea7b31461040a576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613eda565b610add565b005b3480156103eb57600080fd5b506103f4610be7565b60405161040191906142aa565b60405180910390f35b34801561041657600080fd5b5061042a610425366004613f07565b610c79565b604051610401919061429f565b34801561044357600080fd5b5061044c610c96565b604051610401919061494b565b34801561046557600080fd5b5061046e610c9c565b6040516104019190614186565b34801561048757600080fd5b5061044c610cb8565b34801561049c57600080fd5b5061042a6104ab366004613e9a565b610cbe565b3480156104bc57600080fd5b5061044c6104cb366004613e11565b610d96565b3480156104dc57600080fd5b5061046e610e45565b3480156104f157600080fd5b5061042a610e61565b34801561050657600080fd5b5061050f610e71565b6040516104019190614a26565b34801561052857600080fd5b506103dd610537366004613f07565b610e76565b34801561054857600080fd5b5061044c610f94565b34801561055d57600080fd5b5061042a61056c366004613f07565b610f9a565b34801561057d57600080fd5b506103dd61058c366004613e11565b610ff6565b34801561059d57600080fd5b5061046e611118565b3480156105b257600080fd5b506103dd611134565b3480156105c757600080fd5b5061042a6105d6366004613e11565b6111cb565b3480156105e757600080fd5b506103dd6105f6366004613e11565b6111f6565b34801561060757600080fd5b5061044c611314565b34801561061c57600080fd5b5061044c61131a565b34801561063157600080fd5b506103dd61064036600461412b565b611320565b34801561065157600080fd5b506103dd610660366004614096565b6113bf565b34801561067157600080fd5b5061042a610680366004613e11565b611498565b34801561069157600080fd5b506103dd6106a0366004613e11565b6114c3565b3480156106b157600080fd5b506103dd6106c03660046140d7565b61181b565b3480156106d157600080fd5b5061042a6106e0366004613e11565b6118dc565b3480156106f157600080fd5b5061042a611907565b34801561070657600080fd5b5061044c610715366004613e11565b611915565b34801561072657600080fd5b506103dd61193d565b34801561073b57600080fd5b5061044c6119bc565b34801561075057600080fd5b5061076461075f366004613e11565b6119c2565b604051610401959493929190614264565b34801561078157600080fd5b5061042a611a83565b34801561079657600080fd5b5061046e611a92565b3480156107ab57600080fd5b506103dd6107ba366004614107565b611aae565b3480156107cb57600080fd5b506103f4611b79565b3480156107e057600080fd5b506103dd6107ef366004613eda565b611b88565b34801561080057600080fd5b506103dd61080f3660046140d7565b611c5e565b34801561082057600080fd5b5061042a61082f366004613f07565b611cfe565b34801561084057600080fd5b5061044c61084f366004613e11565b611da0565b34801561086057600080fd5b5061044c61086f366004613e11565b611df7565b34801561088057600080fd5b5061042a61088f366004613f07565b611e4e565b3480156108a057600080fd5b506103dd6108af3660046140d7565b611e62565b3480156108c057600080fd5b5061044c6108cf366004613e11565b611f23565b3480156108e057600080fd5b5061042a6108ef366004613e11565b611f7a565b34801561090057600080fd5b5061044c611f8f565b34801561091557600080fd5b506103dd610924366004613eda565b611f95565b34801561093557600080fd5b506103dd610944366004613f7a565b6120f9565b34801561095557600080fd5b506103dd61096436600461405e565b61222c565b34801561097557600080fd5b5061042a610984366004613e11565b61230b565b34801561099557600080fd5b506103dd6123b2565b3480156109aa57600080fd5b506103dd6109b9366004613eda565b612452565b3480156109ca57600080fd5b506103dd6109d9366004613eda565b61251b565b3480156109ea57600080fd5b5061044c6109f9366004613e88565b6125e4565b348015610a0a57600080fd5b506103dd610a1936600461405e565b61261c565b348015610a2a57600080fd5b5061044c6126ef565b348015610a3f57600080fd5b506103dd610a4e36600461405e565b6126f5565b348015610a5f57600080fd5b5061044c6127ca565b348015610a7457600080fd5b506103dd610a83366004613e50565b6127d0565b348015610a9457600080fd5b506103dd610aa3366004613e11565b6128b7565b348015610ab457600080fd5b506103dd610ac3366004613f7a565b612980565b348015610ad457600080fd5b506103dd612ab3565b610ae5612b18565b73ffffffffffffffffffffffffffffffffffffffff16610b03611a92565b73ffffffffffffffffffffffffffffffffffffffff1614610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60405180910390fd5b6017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690630483f7a090610bb190859085906004016141f4565b600060405180830381600087803b158015610bcb57600080fd5b505af1158015610bdf573d6000803e3d6000fd5b505050505050565b606060048054610bf690614ad9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2290614ad9565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000610c8d610c86612b18565b8484612b1c565b50600192915050565b600b5481565b60185473ffffffffffffffffffffffffffffffffffffffff1681565b600d5490565b6000610ccb848484612c2b565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260126020526040812081610cf9612b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906145a0565b610d8b85610d7c612b18565b610d868685614ac2565b612b1c565b506001949350505050565b6017546040517f27ce014700000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906327ce014790610ded908590600401614186565b60206040518083038186803b158015610e0557600080fd5b505afa158015610e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d91906140ef565b90505b919050565b60175473ffffffffffffffffffffffffffffffffffffffff1681565b600c546301000000900460ff1681565b601290565b610e7e612b18565b73ffffffffffffffffffffffffffffffffffffffff16610e9c611a92565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90610f3d90339085906004016141a7565b602060405180830381600087803b158015610f5757600080fd5b505af1158015610f6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8f919061407a565b505050565b60095481565b6000610c8d610fa7612b18565b848460126000610fb5612b18565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b1681529252902054610d869190614a34565b610ffe612b18565b73ffffffffffffffffffffffffffffffffffffffff1661101c611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff16156110c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906146b7565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60195473ffffffffffffffffffffffffffffffffffffffff1681565b60175473ffffffffffffffffffffffffffffffffffffffff1663807ab4f761115a612b18565b6040518263ffffffff1660e01b81526004016111769190614186565b602060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061407a565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b6111fe612b18565b73ffffffffffffffffffffffffffffffffffffffff1661121c611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff166112c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614725565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b601a5481565b60065481565b611328612b18565b73ffffffffffffffffffffffffffffffffffffffff16611346611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600683905560078290556008819055806113ad8385614a34565b6113b79190614a34565b600955505050565b6113c7612b18565b73ffffffffffffffffffffffffffffffffffffffff166113e5611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00931515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9093169290921792909216179055565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b6114cb612b18565b73ffffffffffffffffffffffffffffffffffffffff166114e9611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60185473ffffffffffffffffffffffffffffffffffffffff8281169116141561158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614543565b60185460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8381169190911791829055604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561166f57600080fd5b505afa158015611683573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a79190613e34565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561172b57600080fd5b505afa15801561173f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117639190613e34565b6040518363ffffffff1660e01b81526004016117809291906141cd565b602060405180830381600087803b15801561179a57600080fd5b505af11580156117ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d29190613e34565b601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b611823612b18565b73ffffffffffffffffffffffffffffffffffffffff16611841611a92565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60af81101580156118a157506127108111155b6118d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906143c0565b601b55565b73ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205460ff1690565b600c54610100900460ff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b611945612b18565b73ffffffffffffffffffffffffffffffffffffffff16611963611a92565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b6119ba6000613455565b565b601b5481565b6017546040517f7b510fe8000000000000000000000000000000000000000000000000000000008152600091829182918291829173ffffffffffffffffffffffffffffffffffffffff1690637b510fe890611a21908990600401614186565b60a06040518083038186803b158015611a3957600080fd5b505afa158015611a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a719190613f32565b939a9299509097509550909350915050565b600c5462010000900460ff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b611ab6612b18565b73ffffffffffffffffffffffffffffffffffffffff16611ad4611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b6017546040517f8e12694400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690638e12694490610bb19085908590600401614954565b606060058054610bf690614ad9565b611b90612b18565b73ffffffffffffffffffffffffffffffffffffffff16611bae611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60195473ffffffffffffffffffffffffffffffffffffffff83811691161415611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614880565b611c5a82826134ca565b5050565b611c66612b18565b73ffffffffffffffffffffffffffffffffffffffff16611c84611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b604051339082156108fc029083906000818181858888f19350505050158015611c5a573d6000803e3d6000fd5b60008060126000611d0d612b18565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906145fd565b611d96611d8b612b18565b85610d868685614ac2565b5060019392505050565b6017546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063a680e0bc90610ded908590600401614186565b6017546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063a8b9d24090610ded908590600401614186565b6000610c8d611e5b612b18565b8484612c2b565b611e6a612b18565b73ffffffffffffffffffffffffffffffffffffffff16611e88611a92565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b604b8110158015611ee857506127108111155b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906144d7565b601a55565b6017546040517faafd847a00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063aafd847a90610ded908590600401614186565b60146020526000908152604090205460ff1681565b60085481565b611f9d612b18565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff161515811515141561206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906148ee565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601360205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7906120ed90849061429f565b60405180910390a25050565b612101612b18565b73ffffffffffffffffffffffffffffffffffffffff1661211f611a92565b73ffffffffffffffffffffffffffffffffffffffff161461216c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60005b81518160ff161015611c5a57600160166000848460ff16815181106121bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061222481614b2d565b91505061216f565b612234612b18565b73ffffffffffffffffffffffffffffffffffffffff16612252611a92565b73ffffffffffffffffffffffffffffffffffffffff161461229f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000831515021790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe1339061230090839061429f565b60405180910390a150565b6017546040517fc705c56900000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063c705c56990612362908590600401614186565b60206040518083038186803b15801561237a57600080fd5b505afa15801561238e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d919061407a565b6123ba612b18565b73ffffffffffffffffffffffffffffffffffffffff166123d8611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612425576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b61245a612b18565b73ffffffffffffffffffffffffffffffffffffffff16612478611a92565b73ffffffffffffffffffffffffffffffffffffffff16146124c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b612523612b18565b73ffffffffffffffffffffffffffffffffffffffff16612541611a92565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260126020908152604080832093909416825291909152205490565b612624612b18565b73ffffffffffffffffffffffffffffffffffffffff16612642611a92565b73ffffffffffffffffffffffffffffffffffffffff161461268f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100831515021790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c89061230090839061429f565b600a5481565b6126fd612b18565b73ffffffffffffffffffffffffffffffffffffffff1661271b611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612768576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000831515021790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d439061230090839061429f565b60075481565b6127d8612b18565b73ffffffffffffffffffffffffffffffffffffffff166127f6611a92565b73ffffffffffffffffffffffffffffffffffffffff1614612843576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b6128bf612b18565b73ffffffffffffffffffffffffffffffffffffffff166128dd611a92565b73ffffffffffffffffffffffffffffffffffffffff161461292a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b73ffffffffffffffffffffffffffffffffffffffff8116612977576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061441d565b6111c881613455565b612988612b18565b73ffffffffffffffffffffffffffffffffffffffff166129a6611a92565b73ffffffffffffffffffffffffffffffffffffffff16146129f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061484b565b60005b81518160ff161015611c5a57600060166000848460ff1681518110612a44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612aab81614b2d565b9150506129f6565b600c546301000000900460ff16612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614389565b60175473ffffffffffffffffffffffffffffffffffffffff16636de1a5a961115a5b3390565b73ffffffffffffffffffffffffffffffffffffffff8316612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906147b9565b73ffffffffffffffffffffffffffffffffffffffff8216612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906146ee565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526012602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590612c1e90859061494b565b60405180910390a3505050565b601c5460ff1680612c6e5750612c3f611a92565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80612cab5750612c7c611a92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612cdb575073ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff165b80612d0b575073ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff165b612d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061450c565b73ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff1615612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061431b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff1615612e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906148b7565b73ffffffffffffffffffffffffffffffffffffffff8316612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061447a565b73ffffffffffffffffffffffffffffffffffffffff8216612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614816565b6000612710601a54612eab610cb8565b612eb59190614a85565b612ebf9190614a4c565b90506000612710601b54612ed1610cb8565b612edb9190614a85565b612ee59190614a4c565b90508183111580612f1b575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff165b612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614352565b612f59611a92565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612faa575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015612fd1575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015612ff8575060195473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561305357600061300885611915565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601e602052604090205490915060ff16806130485750816130458583614a34565b11155b61305157600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff8516600090815260116020526040902054838110156130b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061465a565b60006130be30611915565b600a54600c5491925047919083101590610100900460ff1680156130df5750805b80156130ee5750600e5460ff16155b8015613120575073ffffffffffffffffffffffffffffffffffffffff891660009081526014602052604090205460ff16155b8015613147575060185473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b80156131865750613156611a92565b73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b80156131c55750613195611a92565b73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b1561323c57600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff1661320557600a5492505b61320f838361365d565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60195460009073ffffffffffffffffffffffffffffffffffffffff8b811691161480613282575060195473ffffffffffffffffffffffffffffffffffffffff8a81169116145b1561328b575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526013602052604090205460ff16806132e4575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff165b156132ed575060005b600e5460ff16806133075750600c5462010000900460ff16155b15613310575060005b801561334e5760006127106009548a6133299190614a85565b6133339190614a4c565b905061333f818a614ac2565b985061334c8b308361398f565b505b6133598a8a8a61398f565b60175473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b61338181611915565b6040518363ffffffff1660e01b815260040161339e9291906141a7565b600060405180830381600087803b1580156133b857600080fd5b505af11580156133cc573d6000803e3d6000fd5b505060175473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6133fa81611915565b6040518363ffffffff1660e01b81526004016134179291906141a7565b600060405180830381600087803b15801561343157600080fd5b505af1158015613445573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff1615158115151415613530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061475c565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260146020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155613614576017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690630483f7a0906135e19085906001906004016141f4565b600060405180830381600087803b1580156135fb57600080fd5b505af115801561360f573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000821161366a57611c5a565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff16156136ad576009546006546136a09085614a85565b6136aa9190614a4c565b90505b600080601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561371857600080fd5b505afa15801561372c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061375091906140ef565b1115613773576009546008546137669086614a85565b6137709190614a4c565b90505b6000816137808487614ac2565b61378a9190614ac2565b90506000613799600283614a4c565b905060006137a78284614ac2565b90506000826137b68688614a34565b6137c09190614a34565b9050476137cc82613b48565b6000886137d98347614ac2565b6137e39190614a34565b90506000836137f28a84614a85565b6137fc9190614a4c565b905060008461380b8a85614a85565b6138159190614a4c565b90506000816138248486614ac2565b61382e9190614ac2565b9050821561388357600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613881573d6000803e3d6000fd5b505b61388d8782613d22565b7fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a8882896040516138c093929190614a10565b60405180910390a181156139805760175460405160009173ffffffffffffffffffffffffffffffffffffffff169084906138f990614183565b60006040518083038185875af1925050503d8060008114613936576040519150601f19603f3d011682016040523d82523d6000602084013e61393b565b606091505b505090508015613445577f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38b84604051613976929190614a02565b60405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166139dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061447a565b73ffffffffffffffffffffffffffffffffffffffff8216613a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614816565b73ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205481811015613a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b509061465a565b613a938282614ac2565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601160205260408082209390935590851681529081208054849290613ad6908490614a34565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b3a919061494b565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613ba4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b158015613c1e57600080fd5b505afa158015613c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c569190613e34565b81600181518110613c90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601854613cc39130911684612b1c565b6018546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610bb1908590600090869030904290600401614978565b601854613d4790309073ffffffffffffffffffffffffffffffffffffffff1684612b1c565b601854600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263f305d719928592613dad923092899260009283921690429060040161421c565b6060604051808303818588803b158015613dc657600080fd5b505af1158015613dda573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dff9190614156565b5050505050565b8035610e4081614bab565b600060208284031215613e22578081fd5b8135613e2d81614bab565b9392505050565b600060208284031215613e45578081fd5b8151613e2d81614bab565b60008060408385031215613e62578081fd5b8235613e6d81614bab565b91506020830135613e7d81614bab565b809150509250929050565b60008060408385031215613e62578182fd5b600080600060608486031215613eae578081fd5b8335613eb981614bab565b92506020840135613ec981614bab565b929592945050506040919091013590565b60008060408385031215613eec578182fd5b8235613ef781614bab565b91506020830135613e7d81614bcd565b60008060408385031215613f19578182fd5b8235613f2481614bab565b946020939093013593505050565b600080600080600060a08688031215613f49578081fd5b8551613f5481614bab565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60006020808385031215613f8c578182fd5b823567ffffffffffffffff80821115613fa3578384fd5b818501915085601f830112613fb6578384fd5b813581811115613fc857613fc8614b7c565b8381026040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561400a5761400a614b7c565b604052828152858101935084860182860187018a1015614028578788fd5b8795505b838610156140515761403d81613e06565b85526001959095019493860193860161402c565b5098975050505050505050565b60006020828403121561406f578081fd5b8135613e2d81614bcd565b60006020828403121561408b578081fd5b8151613e2d81614bcd565b6000806000606084860312156140aa578283fd5b83356140b581614bcd565b92506020840135915060408401356140cc81614bcd565b809150509250925092565b6000602082840312156140e8578081fd5b5035919050565b600060208284031215614100578081fd5b5051919050565b60008060408385031215614119578182fd5b823591506020830135613e7d81614bab565b60008060006060848603121561413f578081fd5b505081359360208301359350604090920135919050565b60008060006060848603121561416a578081fd5b8351925060208401519150604084015190509250925092565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9290921682521515602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b73ffffffffffffffffffffffffffffffffffffffff959095168552602085019390935260408401919091526060830152608082015260a00190565b901515815260200190565b6000602080835283518082850152825b818110156142d6578581018301518582016040015282016142ba565b818111156142e75783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526019908201527f41533a2053656e64657220697320626c61636b6c697374656400000000000000604082015260600190565b60208082526011908201527f5458204c696d6974204578636565646564000000000000000000000000000000604082015260600190565b6020808252601e908201527f41533a20636f6d706f756e64696e67206973206e6f7420656e61626c65640000604082015260600190565b60208082526021908201527f425053206d757374206265206265747765656e2031373520616e64203130303060408201527f3000000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f41533a207472616e736665722066726f6d20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f425053206d757374206265206265747765656e20373520616e64203130303030604082015260600190565b60208082526008908201527f4e6f74204f70656e000000000000000000000000000000000000000000000000604082015260600190565b60208082526030908201527f41533a2074686520726f7574657220697320616c72656164792073657420746f60408201527f20746865206e6577206164647265737300000000000000000000000000000000606082015260800190565b60208082526025908201527f41533a207472616e7366657220616d6f756e74206578636565647320616c6c6f60408201527f77616e6365000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f41533a2064656372656173656420616c6c6f77616e63652062656c6f77207a6560408201527f726f000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f41533a207472616e7366657220616d6f756e7420657863656564732062616c6160408201527f6e63650000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f7573657220616c726561647920626c61636b6c69737465640000000000000000604082015260600190565b6020808252601f908201527f41533a20617070726f766520746f20746865207a65726f206164647265737300604082015260600190565b60208082526018908201527f7573657220616c72656164792077686974656c69737465640000000000000000604082015260600190565b6020808252603c908201527f41533a206175746f6d61746564206d61726b6574206d616b657220706169722060408201527f697320616c72656164792073657420746f20746861742076616c756500000000606082015260800190565b60208082526021908201527f41533a20617070726f76652066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f41533a207472616e7366657220746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f41533a2044455820706169722063616e206e6f742062652072656d6f76656400604082015260600190565b6020808252601c908201527f41533a20526563697069656e7420697320626c61636b6c697374656400000000604082015260600190565b6020808252602d908201527f41533a206163636f756e7420697320616c72656164792073657420746f20726560408201527f7175657374656420737461746500000000000000000000000000000000000000606082015260800190565b90815260200190565b91825273ffffffffffffffffffffffffffffffffffffffff16602082015260400190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156149d457845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016149a2565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b918252602082015260400190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60008219821115614a4757614a47614b4d565b500190565b600082614a80577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614abd57614abd614b4d565b500290565b600082821015614ad457614ad4614b4d565b500390565b600281046001821680614aed57607f821691505b60208210811415614b27577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060ff821660ff811415614b4457614b44614b4d565b60010192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146111c857600080fd5b80151581146111c857600080fdfea2646970667358221220ca5f476057932e6b9481ac9eaef305a8958ad99b673123d5ff353178c3e47a7864736f6c63430008010033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000fd79e154925b2ad51071dfd9bad3f703ce5435c1000000000000000000000000fd79e154925b2ad51071dfd9bad3f703ce5435c1

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xfd79E154925b2Ad51071dfd9BAd3F703CE5435c1
Arg [1] : _liquidityWallet (address): 0xfd79E154925b2Ad51071dfd9BAd3F703CE5435c1

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fd79e154925b2ad51071dfd9bad3f703ce5435c1
Arg [1] : 000000000000000000000000fd79e154925b2ad51071dfd9bad3f703ce5435c1


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.