ETH Price: $2,639.41 (+2.36%)

Token

TEST (TEST)
 

Overview

Max Total Supply

50,000,000,000 TEST

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,010,000 TEST

Value
$0.00
0xA6007FF255b88cd15e4723aD46a53735585254E3
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:
TEST

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-27
*/

// ** TEST CONTRACT - LIQUIDITY WILL BE REMOVED ** DO NOT BUY **

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
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() external 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) external 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() external view virtual override returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the 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() external 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)
        external
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        external
        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)
        external
        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
    ) external 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)
        external
        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)
        external
        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 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/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;
}

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;
    address public taxWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public constant manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive;
    bool public swapEnabled;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyTaxFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellTaxFee;

    uint256 public tokensForLiquidity;
    uint256 public tokensForTax;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    // bot wallet
    mapping(address => bool) public botWallets;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor(address _uniswapV2RouterAddress, address _taxwallet) ERC20("TEST", "TEST") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            _uniswapV2RouterAddress
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyLiquidityFee = 2;
        uint256 _buyTaxFee = 5;

        uint256 _sellLiquidityFee = 2;
        uint256 _sellTaxFee = 5;

        uint256 totalSupply = 5e10 * 1e18; // 100 Billion

        maxTransactionAmount = 1e9 * 1e18; // 1% from total supply maxTransactionAmountTxn: i.e 1 Billion
        maxWallet = 2 * 1e9 * 1e18; // 2% from total supply maxWallet: i.e 2 Billion
        swapTokensAtAmount = (totalSupply * 5) / 1e4; // 0.05% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyTaxFee = _buyTaxFee;
        buyTotalFees = buyLiquidityFee + buyTaxFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellTaxFee = _sellTaxFee;
        sellTotalFees = sellLiquidityFee + sellTaxFee;

        taxWallet = address(_taxwallet); // set as tax wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*\
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    event TradingEnabled();

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
        emit TradingEnabled();
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner{
        limitsInEffect = false;
    }

    // disable Transfer delay
    function setTransferDelay() external onlyOwner {
        if(transferDelayEnabled)
        {
        transferDelayEnabled = false;
        }
        else{
            transferDelayEnabled = true;
        }
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 1e4,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1e3,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1e3) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(uint256 _liquidityFee, uint256 _taxFee)
        external
        onlyOwner
    {
        buyLiquidityFee = _liquidityFee;
        buyTaxFee = _taxFee;
        buyTotalFees = buyLiquidityFee + buyTaxFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(uint256 _liquidityFee, uint256 _taxFee)
        external
        onlyOwner
    {
        sellLiquidityFee = _liquidityFee;
        sellTaxFee = _taxFee;
        sellTotalFees = sellLiquidityFee + sellTaxFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        external
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTaxWallet(address newTaxWallet) external onlyOwner {
        emit TaxWalletUpdated(newTaxWallet, taxWallet);
        taxWallet = newTaxWallet;
    }

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

    function isExcludedMaxTransactionAmount(address account)
        external
        view
        returns (bool)
    {
        return _isExcludedMaxTransactionAmount[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!botWallets[from], "Sender Cannot be bot");
        require(!botWallets[to], "Recipient Cannot be bot");

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTax += (fees * sellTaxFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTax += (fees * buyTaxFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

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

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

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


        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap;
        // except half of liquidity amount
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens.div(2));

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        // tax amount + half of liquidity 
        uint256 ethForTax = ethBalance.mul(tokensForTax).div(tokensForTax + tokensForLiquidity.div(2));

        uint256 ethForLiquidity = ethBalance - ethForTax;

        tokensForLiquidity = 0;
        tokensForTax = 0;

        (success, ) = address(taxWallet).call{value: ethForTax}("");

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }

    function withdraw() external payable onlyOwner {
        require(taxWallet != address(0), "Cannot be zero address");
        payable(taxWallet).transfer(address(this).balance);
    }

    function addOrRemoveBotWallet(address wallet, bool flag) external onlyOwner {
        require(wallet != address(0), "Cannot be zero address");
        botWallets[wallet] = flag;
    }

        function addOrRemoveBotWallet(address[] memory wallet, bool flag) external onlyOwner {
        for(uint i=0;i<wallet.length;i++)
        {
        botWallets[wallet[i]] = flag;
        }
      
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapV2RouterAddress","type":"address"},{"internalType":"address","name":"_taxwallet","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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":"wallet","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"addOrRemoveBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallet","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"addOrRemoveBotWallet","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"botWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","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":[],"name":"setTransferDelay","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":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_taxFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_taxFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600a55610e10600c55600f805460ff191660011790553480156200002957600080fd5b5060405162003c7c38038062003c7c8339810160408190526200004c91620006f4565b604080518082018252600480825263151154d560e21b6020808401828152855180870190965292855284015281519192916200008b9160039162000631565b508051620000a190600490602084019062000631565b505050620000be620000b86200037e60201b60201c565b62000382565b81620000cc816001620003d4565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000117573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013d91906200072c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b191906200072c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022591906200072c565b6001600160a01b031660a081905262000240906001620003d4565b60a051620002509060016200044e565b6b033b2e3c9fd0803ce80000006007556b06765c793fa10079d00000006009556002600581816ba18f07d736b90be55000000061271062000292828462000767565b6200029e919062000789565b60085560138590556014849055620002b78486620007ac565b60125560168390556017829055620002d08284620007ac565b601555600680546001600160a01b0319166001600160a01b0389161790556200030d620003056005546001600160a01b031690565b6001620004a2565b6200031a306001620004a2565b6200032961dead6001620004a2565b62000348620003406005546001600160a01b031690565b6001620003d4565b62000355306001620003d4565b6200036461dead6001620003d4565b6200037033826200054c565b505050505050505062000804565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004235760405162461bcd60e51b8152602060048201819052602482015260008051602062003c5c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004ed5760405162461bcd60e51b8152602060048201819052602482015260008051602062003c5c83398151915260448201526064016200041a565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200041a565b8060026000828254620005b89190620007ac565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e7908490620007ac565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200063f90620007c7565b90600052602060002090601f016020900481019282620006635760008555620006ae565b82601f106200067e57805160ff1916838001178555620006ae565b82800160010185558215620006ae579182015b82811115620006ae57825182559160200191906001019062000691565b50620006bc929150620006c0565b5090565b5b80821115620006bc5760008155600101620006c1565b80516001600160a01b0381168114620006ef57600080fd5b919050565b600080604083850312156200070857600080fd5b6200071383620006d7565b91506200072360208401620006d7565b90509250929050565b6000602082840312156200073f57600080fd5b6200074a82620006d7565b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000784576200078462000751565b500290565b600082620007a757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007c257620007c262000751565b500190565b600181811c90821680620007dc57607f821691505b60208210811415620007fe57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516133d06200088c6000396000818161060d015281816113ce01528181611a0d01528181611aa801528181611ad401528181611f3a015281816129da01528181612a7c0152612aa801526000818161046101528181611efc01528181612bb201528181612c6b01528181612ca701528181612d210152612d4801526133d06000f3fe6080604052600436106103a65760003560e01c806374c9f603116101e7578063c02466681161010d578063e2f45605116100a0578063f63821f61161006f578063f63821f614610aae578063f8a25a9414610ade578063f8b45b0514610af4578063fe72b27a14610b0a57600080fd5b8063e2f4560514610a4c578063f11a24d314610a62578063f2fde38b14610a78578063f637434214610a9857600080fd5b8063c8c8ebe4116100dc578063c8c8ebe4146109ba578063d257b34f146109d0578063d85ba063146109f0578063dd62ed3e14610a0657600080fd5b8063c024666814610940578063c18bc19514610960578063c39ff63314610980578063c876d0b9146109a057600080fd5b806395d89b4111610185578063a4c82a0011610154578063a4c82a00146108bb578063a9059cbb146108d1578063b62496f5146108f1578063bbc0c7421461092157600080fd5b806395d89b41146108505780639a7a23d6146108655780639ec22c0e14610885578063a457c2d71461089b57600080fd5b80638a8c523c116101c15780638a8c523c146107e75780638da5cb5b146107fc578063924de9b71461081a578063941fa5cd1461083a57600080fd5b806374c9f60314610792578063751039fc146107b25780637571336a146107c757600080fd5b8063312269dc116102cc5780634fbee1931161026a5780636ddd1713116102395780636ddd17131461070757806370a0823114610727578063715018a61461075d578063730c18881461077257600080fd5b80634fbee1931461068257806366ca9b83146106bb5780636a486a8e146106db5780636d7adcad146106f157600080fd5b80633ccfd60b116102a65780633ccfd60b146105f357806349bd5a5e146105fb5780634a62bb651461062f5780634bb2c7851461064957600080fd5b8063312269dc146105a2578063313ce567146105b757806339509351146105d357600080fd5b8063199ffc721161034457806327c8f8351161031357806327c8f8351461053c5780632c3e486c146105525780632dc0562d146105685780632e82f1a01461058857600080fd5b8063199ffc72146104d05780631a8145bb146104e6578063203e727e146104fc57806323b872dd1461051c57600080fd5b8063095ea7b311610380578063095ea7b31461041f5780631694505e1461044f57806318160ddd1461049b578063184c16c5146104ba57600080fd5b806302dbd8f8146103b25780630484c5ab146103d457806306fdde03146103f457600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103d26103cd366004612e21565b610b2a565b005b3480156103e057600080fd5b506103d26103ef366004612e73565b610bca565b34801561040057600080fd5b50610409610c6e565b6040516104169190612ea8565b60405180910390f35b34801561042b57600080fd5b5061043f61043a366004612efd565b610d00565b6040519015158152602001610416565b34801561045b57600080fd5b506104837f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610416565b3480156104a757600080fd5b506002545b604051908152602001610416565b3480156104c657600080fd5b506104ac61070881565b3480156104dc57600080fd5b506104ac600a5481565b3480156104f257600080fd5b506104ac60185481565b34801561050857600080fd5b506103d2610517366004612f29565b610d16565b34801561052857600080fd5b5061043f610537366004612f42565b610df3565b34801561054857600080fd5b5061048361dead81565b34801561055e57600080fd5b506104ac600c5481565b34801561057457600080fd5b50600654610483906001600160a01b031681565b34801561059457600080fd5b50600b5461043f9060ff1681565b3480156105ae57600080fd5b506103d2610e9d565b3480156105c357600080fd5b5060405160128152602001610416565b3480156105df57600080fd5b5061043f6105ee366004612efd565b610eee565b6103d2610f2a565b34801561060757600080fd5b506104837f000000000000000000000000000000000000000000000000000000000000000081565b34801561063b57600080fd5b50600f5461043f9060ff1681565b34801561065557600080fd5b5061043f610664366004612f83565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561068e57600080fd5b5061043f61069d366004612f83565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156106c757600080fd5b506103d26106d6366004612e21565b610fe1565b3480156106e757600080fd5b506104ac60155481565b3480156106fd57600080fd5b506104ac60195481565b34801561071357600080fd5b50600f5461043f9062010000900460ff1681565b34801561073357600080fd5b506104ac610742366004612f83565b6001600160a01b031660009081526020819052604090205490565b34801561076957600080fd5b506103d2611074565b34801561077e57600080fd5b506103d261078d366004612fa0565b6110a8565b34801561079e57600080fd5b506103d26107ad366004612f83565b6111d1565b3480156107be57600080fd5b506103d2611258565b3480156107d357600080fd5b506103d26107e2366004612e73565b61128e565b3480156107f357600080fd5b506103d26112e3565b34801561080857600080fd5b506005546001600160a01b0316610483565b34801561082657600080fd5b506103d2610835366004612fd5565b61134d565b34801561084657600080fd5b506104ac60145481565b34801561085c57600080fd5b50610409611393565b34801561087157600080fd5b506103d2610880366004612e73565b6113a2565b34801561089157600080fd5b506104ac600e5481565b3480156108a757600080fd5b5061043f6108b6366004612efd565b61147e565b3480156108c757600080fd5b506104ac600d5481565b3480156108dd57600080fd5b5061043f6108ec366004612efd565b611517565b3480156108fd57600080fd5b5061043f61090c366004612f83565b601c6020526000908152604090205460ff1681565b34801561092d57600080fd5b50600f5461043f90610100900460ff1681565b34801561094c57600080fd5b506103d261095b366004612e73565b611524565b34801561096c57600080fd5b506103d261097b366004612f29565b6115ad565b34801561098c57600080fd5b506103d261099b366004613006565b61167e565b3480156109ac57600080fd5b5060115461043f9060ff1681565b3480156109c657600080fd5b506104ac60075481565b3480156109dc57600080fd5b5061043f6109eb366004612f29565b611714565b3480156109fc57600080fd5b506104ac60125481565b348015610a1257600080fd5b506104ac610a213660046130dd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a5857600080fd5b506104ac60085481565b348015610a6e57600080fd5b506104ac60135481565b348015610a8457600080fd5b506103d2610a93366004612f83565b61186a565b348015610aa457600080fd5b506104ac60165481565b348015610aba57600080fd5b5061043f610ac9366004612f83565b601d6020526000908152604090205460ff1681565b348015610aea57600080fd5b506104ac60175481565b348015610b0057600080fd5b506104ac60095481565b348015610b1657600080fd5b5061043f610b25366004612f29565b611902565b6005546001600160a01b03163314610b5d5760405162461bcd60e51b8152600401610b5490613116565b60405180910390fd5b60168290556017819055610b718183613161565b601581905560191015610bc65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b54565b5050565b6005546001600160a01b03163314610bf45760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b038216610c435760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b6044820152606401610b54565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b606060038054610c7d90613179565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca990613179565b8015610cf65780601f10610ccb57610100808354040283529160200191610cf6565b820191906000526020600020905b815481529060010190602001808311610cd957829003601f168201915b5050505050905090565b6000610d0d338484611b7c565b50600192915050565b6005546001600160a01b03163314610d405760405162461bcd60e51b8152600401610b5490613116565b670de0b6b3a76400006103e8610d5560025490565b610d609060016131b4565b610d6a91906131d3565b610d7491906131d3565b811015610ddb5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b54565b610ded81670de0b6b3a76400006131b4565b60075550565b6000610e00848484611ca0565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e855760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b54565b610e928533858403611b7c565b506001949350505050565b6005546001600160a01b03163314610ec75760405162461bcd60e51b8152600401610b5490613116565b60115460ff1615610ede576011805460ff19169055565b6011805460ff191660011790555b565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d0d918590610f25908690613161565b611b7c565b6005546001600160a01b03163314610f545760405162461bcd60e51b8152600401610b5490613116565b6006546001600160a01b0316610fa55760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b6044820152606401610b54565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610fde573d6000803e3d6000fd5b50565b6005546001600160a01b0316331461100b5760405162461bcd60e51b8152600401610b5490613116565b6013829055601481905561101f8183613161565b601281905560141015610bc65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610b54565b6005546001600160a01b0316331461109e5760405162461bcd60e51b8152600401610b5490613116565b610eec60006125e1565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610b5490613116565b6102588310156111405760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610b54565b6103e88211158015611150575060015b6111b55760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610b54565b600c92909255600a55600b805460ff1916911515919091179055565b6005546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610b5490613116565b6006546040516001600160a01b03918216918316907f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c9790600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112825760405162461bcd60e51b8152600401610b5490613116565b600f805460ff19169055565b6005546001600160a01b031633146112b85760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461130d5760405162461bcd60e51b8152600401610b5490613116565b600f805462ffff0019166201010017905542600d556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6005546001600160a01b031633146113775760405162461bcd60e51b8152600401610b5490613116565b600f8054911515620100000262ff000019909216919091179055565b606060048054610c7d90613179565b6005546001600160a01b031633146113cc5760405162461bcd60e51b8152600401610b5490613116565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156114745760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b54565b610bc68282612633565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b54565b61150d3385858403611b7c565b5060019392505050565b6000610d0d338484611ca0565b6005546001600160a01b0316331461154e5760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115d75760405162461bcd60e51b8152600401610b5490613116565b670de0b6b3a76400006103e86115ec60025490565b6115f79060056131b4565b61160191906131d3565b61160b91906131d3565b8110156116665760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b54565b61167881670de0b6b3a76400006131b4565b60095550565b6005546001600160a01b031633146116a85760405162461bcd60e51b8152600401610b5490613116565b60005b825181101561170f5781601d60008584815181106116cb576116cb6131f5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117078161320b565b9150506116ab565b505050565b6005546000906001600160a01b031633146117415760405162461bcd60e51b8152600401610b5490613116565b61271061174d60025490565b6117589060016131b4565b61176291906131d3565b8210156117cf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b54565b6103e86117db60025490565b6117e69060056131b4565b6117f091906131d3565b82111561185c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b54565b50600881905560015b919050565b6005546001600160a01b031633146118945760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b0381166118f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b54565b610fde816125e1565b6005546000906001600160a01b0316331461192f5760405162461bcd60e51b8152600401610b5490613116565b610708600e5461193f9190613161565b421161198d5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610b54565b6103e88211156119f25760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610b54565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a819190613226565b90506000611a9b612710611a958487612687565b9061269a565b90508015611ad057611ad07f000000000000000000000000000000000000000000000000000000000000000061dead836126a6565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b3057600080fd5b505af1158015611b44573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611bde5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b54565b6001600160a01b038216611c3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b54565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611cc65760405162461bcd60e51b8152600401610b549061323f565b6001600160a01b038216611cec5760405162461bcd60e51b8152600401610b5490613284565b6001600160a01b0383166000908152601d602052604090205460ff1615611d4c5760405162461bcd60e51b815260206004820152601460248201527314d95b99195c8810d85b9b9bdd08189948189bdd60621b6044820152606401610b54565b6001600160a01b0382166000908152601d602052604090205460ff1615611db55760405162461bcd60e51b815260206004820152601760248201527f526563697069656e742043616e6e6f7420626520626f740000000000000000006044820152606401610b54565b80611dc65761170f838360006126a6565b600f5460ff1615612283576005546001600160a01b03848116911614801590611dfd57506005546001600160a01b03838116911614155b8015611e1157506001600160a01b03821615155b8015611e2857506001600160a01b03821661dead14155b8015611e3e5750600554600160a01b900460ff16155b1561228357600f54610100900460ff16611ed6576001600160a01b0383166000908152601a602052604090205460ff1680611e9157506001600160a01b0382166000908152601a602052604090205460ff165b611ed65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b54565b60115460ff161561201d576005546001600160a01b03838116911614801590611f3157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611f6f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561201d5732600090815260106020526040902054431161200a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b54565b3260009081526010602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561205e57506001600160a01b0382166000908152601b602052604090205460ff16155b15612142576007548111156120d35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b54565b6009546001600160a01b0383166000908152602081905260409020546120f99083613161565b111561213d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b54565b612283565b6001600160a01b0382166000908152601c602052604090205460ff16801561218357506001600160a01b0383166000908152601b602052604090205460ff16155b156121f95760075481111561213d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b54565b6001600160a01b0382166000908152601b602052604090205460ff16612283576009546001600160a01b03831660009081526020819052604090205461223f9083613161565b11156122835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b54565b30600090815260208190526040902054600854811080159081906122af5750600f5462010000900460ff165b80156122c55750600554600160a01b900460ff16155b80156122ea57506001600160a01b0385166000908152601c602052604090205460ff16155b801561230f57506001600160a01b0385166000908152601a602052604090205460ff16155b801561233457506001600160a01b0384166000908152601a602052604090205460ff16155b15612362576005805460ff60a01b1916600160a01b1790556123546127fb565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561239457506001600160a01b0384166000908152601c602052604090205460ff165b80156123a25750600b5460ff165b80156123bd5750600c54600d546123b99190613161565b4210155b80156123e257506001600160a01b0385166000908152601a602052604090205460ff16155b156123f1576123ef6129bf565b505b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061243f57506001600160a01b0385166000908152601a602052604090205460ff165b15612448575060005b600081156125cd576001600160a01b0386166000908152601c602052604090205460ff16801561247a57506000601554115b15612502576124996064611a956015548861268790919063ffffffff16565b9050601554601654826124ac91906131b4565b6124b691906131d3565b601860008282546124c79190613161565b90915550506015546017546124dc90836131b4565b6124e691906131d3565b601960008282546124f79190613161565b909155506125af9050565b6001600160a01b0387166000908152601c602052604090205460ff16801561252c57506000601254115b156125af5761254b6064611a956012548861268790919063ffffffff16565b90506012546013548261255e91906131b4565b61256891906131d3565b601860008282546125799190613161565b909155505060125460145461258e90836131b4565b61259891906131d3565b601960008282546125a99190613161565b90915550505b80156125c0576125c08730836126a6565b6125ca81866132c7565b94505b6125d88787876126a6565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061269382846131b4565b9392505050565b600061269382846131d3565b6001600160a01b0383166126cc5760405162461bcd60e51b8152600401610b549061323f565b6001600160a01b0382166126f25760405162461bcd60e51b8152600401610b5490613284565b6001600160a01b0383166000908152602081905260409020548181101561276a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b54565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127a1908490613161565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127ed91815260200190565b60405180910390a350505050565b306000908152602081905260408120549050600060195460185461281f9190613161565b9050600082158061282e575081155b1561283857505050565b6008546128469060146131b4565b83111561285e5760085461285b9060146131b4565b92505b6000826018548561286f91906131b4565b61287991906131d3565b9050600061289261288b83600261269a565b8690612b4f565b90504761289e82612b5b565b60006128aa4783612b4f565b905060006128e26128c7600260185461269a90919063ffffffff16565b6019546128d49190613161565b601954611a95908590612687565b905060006128f082846132c7565b6000601881905560198190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612948576040519150601f19603f3d011682016040523d82523d6000602084013e61294d565b606091505b509097505085158015906129615750600081115b156129b4576129708682612d1b565b601854604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b42600d556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a509190613226565b90506000612a6f612710611a95600a548561268790919063ffffffff16565b90508015612aa457612aa47f000000000000000000000000000000000000000000000000000000000000000061dead836126a6565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b0457600080fd5b505af1158015612b18573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061269382846132c7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b9057612b906131f5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c3291906132de565b81600181518110612c4557612c456131f5565b60200260200101906001600160a01b031690816001600160a01b031681525050612c90307f000000000000000000000000000000000000000000000000000000000000000084611b7c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612ce59085906000908690309042906004016132fb565b600060405180830381600087803b158015612cff57600080fd5b505af1158015612d13573d6000803e3d6000fd5b505050505050565b612d46307f000000000000000000000000000000000000000000000000000000000000000084611b7c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612d8d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612df5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e1a919061336c565b5050505050565b60008060408385031215612e3457600080fd5b50508035926020909101359150565b6001600160a01b0381168114610fde57600080fd5b803561186581612e43565b8035801515811461186557600080fd5b60008060408385031215612e8657600080fd5b8235612e9181612e43565b9150612e9f60208401612e63565b90509250929050565b600060208083528351808285015260005b81811015612ed557858101830151858201604001528201612eb9565b81811115612ee7576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612f1057600080fd5b8235612f1b81612e43565b946020939093013593505050565b600060208284031215612f3b57600080fd5b5035919050565b600080600060608486031215612f5757600080fd5b8335612f6281612e43565b92506020840135612f7281612e43565b929592945050506040919091013590565b600060208284031215612f9557600080fd5b813561269381612e43565b600080600060608486031215612fb557600080fd5b8335925060208401359150612fcc60408501612e63565b90509250925092565b600060208284031215612fe757600080fd5b61269382612e63565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561301957600080fd5b823567ffffffffffffffff8082111561303157600080fd5b818501915085601f83011261304557600080fd5b813560208282111561305957613059612ff0565b8160051b604051601f19603f8301168101818110868211171561307e5761307e612ff0565b60405292835281830193508481018201928984111561309c57600080fd5b948201945b838610156130c1576130b286612e58565b855294820194938201936130a1565b96506130d09050878201612e63565b9450505050509250929050565b600080604083850312156130f057600080fd5b82356130fb81612e43565b9150602083013561310b81612e43565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156131745761317461314b565b500190565b600181811c9082168061318d57607f821691505b602082108114156131ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156131ce576131ce61314b565b500290565b6000826131f057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060001982141561321f5761321f61314b565b5060010190565b60006020828403121561323857600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156132d9576132d961314b565b500390565b6000602082840312156132f057600080fd5b815161269381612e43565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561334b5784516001600160a01b031683529383019391830191600101613326565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561338157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cf176606c1604d651769b48c5758082a6154343b6be7ec3495f6f75476c7afae64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003f4b8e91c3a73430cf77aef6e8009357921f2766

Deployed Bytecode

0x6080604052600436106103a65760003560e01c806374c9f603116101e7578063c02466681161010d578063e2f45605116100a0578063f63821f61161006f578063f63821f614610aae578063f8a25a9414610ade578063f8b45b0514610af4578063fe72b27a14610b0a57600080fd5b8063e2f4560514610a4c578063f11a24d314610a62578063f2fde38b14610a78578063f637434214610a9857600080fd5b8063c8c8ebe4116100dc578063c8c8ebe4146109ba578063d257b34f146109d0578063d85ba063146109f0578063dd62ed3e14610a0657600080fd5b8063c024666814610940578063c18bc19514610960578063c39ff63314610980578063c876d0b9146109a057600080fd5b806395d89b4111610185578063a4c82a0011610154578063a4c82a00146108bb578063a9059cbb146108d1578063b62496f5146108f1578063bbc0c7421461092157600080fd5b806395d89b41146108505780639a7a23d6146108655780639ec22c0e14610885578063a457c2d71461089b57600080fd5b80638a8c523c116101c15780638a8c523c146107e75780638da5cb5b146107fc578063924de9b71461081a578063941fa5cd1461083a57600080fd5b806374c9f60314610792578063751039fc146107b25780637571336a146107c757600080fd5b8063312269dc116102cc5780634fbee1931161026a5780636ddd1713116102395780636ddd17131461070757806370a0823114610727578063715018a61461075d578063730c18881461077257600080fd5b80634fbee1931461068257806366ca9b83146106bb5780636a486a8e146106db5780636d7adcad146106f157600080fd5b80633ccfd60b116102a65780633ccfd60b146105f357806349bd5a5e146105fb5780634a62bb651461062f5780634bb2c7851461064957600080fd5b8063312269dc146105a2578063313ce567146105b757806339509351146105d357600080fd5b8063199ffc721161034457806327c8f8351161031357806327c8f8351461053c5780632c3e486c146105525780632dc0562d146105685780632e82f1a01461058857600080fd5b8063199ffc72146104d05780631a8145bb146104e6578063203e727e146104fc57806323b872dd1461051c57600080fd5b8063095ea7b311610380578063095ea7b31461041f5780631694505e1461044f57806318160ddd1461049b578063184c16c5146104ba57600080fd5b806302dbd8f8146103b25780630484c5ab146103d457806306fdde03146103f457600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103d26103cd366004612e21565b610b2a565b005b3480156103e057600080fd5b506103d26103ef366004612e73565b610bca565b34801561040057600080fd5b50610409610c6e565b6040516104169190612ea8565b60405180910390f35b34801561042b57600080fd5b5061043f61043a366004612efd565b610d00565b6040519015158152602001610416565b34801561045b57600080fd5b506104837f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610416565b3480156104a757600080fd5b506002545b604051908152602001610416565b3480156104c657600080fd5b506104ac61070881565b3480156104dc57600080fd5b506104ac600a5481565b3480156104f257600080fd5b506104ac60185481565b34801561050857600080fd5b506103d2610517366004612f29565b610d16565b34801561052857600080fd5b5061043f610537366004612f42565b610df3565b34801561054857600080fd5b5061048361dead81565b34801561055e57600080fd5b506104ac600c5481565b34801561057457600080fd5b50600654610483906001600160a01b031681565b34801561059457600080fd5b50600b5461043f9060ff1681565b3480156105ae57600080fd5b506103d2610e9d565b3480156105c357600080fd5b5060405160128152602001610416565b3480156105df57600080fd5b5061043f6105ee366004612efd565b610eee565b6103d2610f2a565b34801561060757600080fd5b506104837f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b181565b34801561063b57600080fd5b50600f5461043f9060ff1681565b34801561065557600080fd5b5061043f610664366004612f83565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561068e57600080fd5b5061043f61069d366004612f83565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156106c757600080fd5b506103d26106d6366004612e21565b610fe1565b3480156106e757600080fd5b506104ac60155481565b3480156106fd57600080fd5b506104ac60195481565b34801561071357600080fd5b50600f5461043f9062010000900460ff1681565b34801561073357600080fd5b506104ac610742366004612f83565b6001600160a01b031660009081526020819052604090205490565b34801561076957600080fd5b506103d2611074565b34801561077e57600080fd5b506103d261078d366004612fa0565b6110a8565b34801561079e57600080fd5b506103d26107ad366004612f83565b6111d1565b3480156107be57600080fd5b506103d2611258565b3480156107d357600080fd5b506103d26107e2366004612e73565b61128e565b3480156107f357600080fd5b506103d26112e3565b34801561080857600080fd5b506005546001600160a01b0316610483565b34801561082657600080fd5b506103d2610835366004612fd5565b61134d565b34801561084657600080fd5b506104ac60145481565b34801561085c57600080fd5b50610409611393565b34801561087157600080fd5b506103d2610880366004612e73565b6113a2565b34801561089157600080fd5b506104ac600e5481565b3480156108a757600080fd5b5061043f6108b6366004612efd565b61147e565b3480156108c757600080fd5b506104ac600d5481565b3480156108dd57600080fd5b5061043f6108ec366004612efd565b611517565b3480156108fd57600080fd5b5061043f61090c366004612f83565b601c6020526000908152604090205460ff1681565b34801561092d57600080fd5b50600f5461043f90610100900460ff1681565b34801561094c57600080fd5b506103d261095b366004612e73565b611524565b34801561096c57600080fd5b506103d261097b366004612f29565b6115ad565b34801561098c57600080fd5b506103d261099b366004613006565b61167e565b3480156109ac57600080fd5b5060115461043f9060ff1681565b3480156109c657600080fd5b506104ac60075481565b3480156109dc57600080fd5b5061043f6109eb366004612f29565b611714565b3480156109fc57600080fd5b506104ac60125481565b348015610a1257600080fd5b506104ac610a213660046130dd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a5857600080fd5b506104ac60085481565b348015610a6e57600080fd5b506104ac60135481565b348015610a8457600080fd5b506103d2610a93366004612f83565b61186a565b348015610aa457600080fd5b506104ac60165481565b348015610aba57600080fd5b5061043f610ac9366004612f83565b601d6020526000908152604090205460ff1681565b348015610aea57600080fd5b506104ac60175481565b348015610b0057600080fd5b506104ac60095481565b348015610b1657600080fd5b5061043f610b25366004612f29565b611902565b6005546001600160a01b03163314610b5d5760405162461bcd60e51b8152600401610b5490613116565b60405180910390fd5b60168290556017819055610b718183613161565b601581905560191015610bc65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b54565b5050565b6005546001600160a01b03163314610bf45760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b038216610c435760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b6044820152606401610b54565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b606060038054610c7d90613179565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca990613179565b8015610cf65780601f10610ccb57610100808354040283529160200191610cf6565b820191906000526020600020905b815481529060010190602001808311610cd957829003601f168201915b5050505050905090565b6000610d0d338484611b7c565b50600192915050565b6005546001600160a01b03163314610d405760405162461bcd60e51b8152600401610b5490613116565b670de0b6b3a76400006103e8610d5560025490565b610d609060016131b4565b610d6a91906131d3565b610d7491906131d3565b811015610ddb5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b54565b610ded81670de0b6b3a76400006131b4565b60075550565b6000610e00848484611ca0565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e855760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b54565b610e928533858403611b7c565b506001949350505050565b6005546001600160a01b03163314610ec75760405162461bcd60e51b8152600401610b5490613116565b60115460ff1615610ede576011805460ff19169055565b6011805460ff191660011790555b565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d0d918590610f25908690613161565b611b7c565b6005546001600160a01b03163314610f545760405162461bcd60e51b8152600401610b5490613116565b6006546001600160a01b0316610fa55760405162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b6044820152606401610b54565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610fde573d6000803e3d6000fd5b50565b6005546001600160a01b0316331461100b5760405162461bcd60e51b8152600401610b5490613116565b6013829055601481905561101f8183613161565b601281905560141015610bc65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610b54565b6005546001600160a01b0316331461109e5760405162461bcd60e51b8152600401610b5490613116565b610eec60006125e1565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610b5490613116565b6102588310156111405760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610b54565b6103e88211158015611150575060015b6111b55760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610b54565b600c92909255600a55600b805460ff1916911515919091179055565b6005546001600160a01b031633146111fb5760405162461bcd60e51b8152600401610b5490613116565b6006546040516001600160a01b03918216918316907f849a2ad8ad386f1e9897e9e0a62d16771c675e4740986a16fb31bd8e1dde9c9790600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112825760405162461bcd60e51b8152600401610b5490613116565b600f805460ff19169055565b6005546001600160a01b031633146112b85760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461130d5760405162461bcd60e51b8152600401610b5490613116565b600f805462ffff0019166201010017905542600d556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6005546001600160a01b031633146113775760405162461bcd60e51b8152600401610b5490613116565b600f8054911515620100000262ff000019909216919091179055565b606060048054610c7d90613179565b6005546001600160a01b031633146113cc5760405162461bcd60e51b8152600401610b5490613116565b7f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b16001600160a01b0316826001600160a01b031614156114745760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b54565b610bc68282612633565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b54565b61150d3385858403611b7c565b5060019392505050565b6000610d0d338484611ca0565b6005546001600160a01b0316331461154e5760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115d75760405162461bcd60e51b8152600401610b5490613116565b670de0b6b3a76400006103e86115ec60025490565b6115f79060056131b4565b61160191906131d3565b61160b91906131d3565b8110156116665760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b54565b61167881670de0b6b3a76400006131b4565b60095550565b6005546001600160a01b031633146116a85760405162461bcd60e51b8152600401610b5490613116565b60005b825181101561170f5781601d60008584815181106116cb576116cb6131f5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117078161320b565b9150506116ab565b505050565b6005546000906001600160a01b031633146117415760405162461bcd60e51b8152600401610b5490613116565b61271061174d60025490565b6117589060016131b4565b61176291906131d3565b8210156117cf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b54565b6103e86117db60025490565b6117e69060056131b4565b6117f091906131d3565b82111561185c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b54565b50600881905560015b919050565b6005546001600160a01b031633146118945760405162461bcd60e51b8152600401610b5490613116565b6001600160a01b0381166118f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b54565b610fde816125e1565b6005546000906001600160a01b0316331461192f5760405162461bcd60e51b8152600401610b5490613116565b610708600e5461193f9190613161565b421161198d5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610b54565b6103e88211156119f25760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610b54565b42600e556040516370a0823160e01b81526001600160a01b037f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b116600482015260009030906370a0823190602401602060405180830381865afa158015611a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a819190613226565b90506000611a9b612710611a958487612687565b9061269a565b90508015611ad057611ad07f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b161dead836126a6565b60007f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b3057600080fd5b505af1158015611b44573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611bde5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b54565b6001600160a01b038216611c3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b54565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611cc65760405162461bcd60e51b8152600401610b549061323f565b6001600160a01b038216611cec5760405162461bcd60e51b8152600401610b5490613284565b6001600160a01b0383166000908152601d602052604090205460ff1615611d4c5760405162461bcd60e51b815260206004820152601460248201527314d95b99195c8810d85b9b9bdd08189948189bdd60621b6044820152606401610b54565b6001600160a01b0382166000908152601d602052604090205460ff1615611db55760405162461bcd60e51b815260206004820152601760248201527f526563697069656e742043616e6e6f7420626520626f740000000000000000006044820152606401610b54565b80611dc65761170f838360006126a6565b600f5460ff1615612283576005546001600160a01b03848116911614801590611dfd57506005546001600160a01b03838116911614155b8015611e1157506001600160a01b03821615155b8015611e2857506001600160a01b03821661dead14155b8015611e3e5750600554600160a01b900460ff16155b1561228357600f54610100900460ff16611ed6576001600160a01b0383166000908152601a602052604090205460ff1680611e9157506001600160a01b0382166000908152601a602052604090205460ff165b611ed65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b54565b60115460ff161561201d576005546001600160a01b03838116911614801590611f3157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611f6f57507f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b16001600160a01b0316826001600160a01b031614155b1561201d5732600090815260106020526040902054431161200a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b54565b3260009081526010602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561205e57506001600160a01b0382166000908152601b602052604090205460ff16155b15612142576007548111156120d35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b54565b6009546001600160a01b0383166000908152602081905260409020546120f99083613161565b111561213d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b54565b612283565b6001600160a01b0382166000908152601c602052604090205460ff16801561218357506001600160a01b0383166000908152601b602052604090205460ff16155b156121f95760075481111561213d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b54565b6001600160a01b0382166000908152601b602052604090205460ff16612283576009546001600160a01b03831660009081526020819052604090205461223f9083613161565b11156122835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b54565b30600090815260208190526040902054600854811080159081906122af5750600f5462010000900460ff165b80156122c55750600554600160a01b900460ff16155b80156122ea57506001600160a01b0385166000908152601c602052604090205460ff16155b801561230f57506001600160a01b0385166000908152601a602052604090205460ff16155b801561233457506001600160a01b0384166000908152601a602052604090205460ff16155b15612362576005805460ff60a01b1916600160a01b1790556123546127fb565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561239457506001600160a01b0384166000908152601c602052604090205460ff165b80156123a25750600b5460ff165b80156123bd5750600c54600d546123b99190613161565b4210155b80156123e257506001600160a01b0385166000908152601a602052604090205460ff16155b156123f1576123ef6129bf565b505b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061243f57506001600160a01b0385166000908152601a602052604090205460ff165b15612448575060005b600081156125cd576001600160a01b0386166000908152601c602052604090205460ff16801561247a57506000601554115b15612502576124996064611a956015548861268790919063ffffffff16565b9050601554601654826124ac91906131b4565b6124b691906131d3565b601860008282546124c79190613161565b90915550506015546017546124dc90836131b4565b6124e691906131d3565b601960008282546124f79190613161565b909155506125af9050565b6001600160a01b0387166000908152601c602052604090205460ff16801561252c57506000601254115b156125af5761254b6064611a956012548861268790919063ffffffff16565b90506012546013548261255e91906131b4565b61256891906131d3565b601860008282546125799190613161565b909155505060125460145461258e90836131b4565b61259891906131d3565b601960008282546125a99190613161565b90915550505b80156125c0576125c08730836126a6565b6125ca81866132c7565b94505b6125d88787876126a6565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061269382846131b4565b9392505050565b600061269382846131d3565b6001600160a01b0383166126cc5760405162461bcd60e51b8152600401610b549061323f565b6001600160a01b0382166126f25760405162461bcd60e51b8152600401610b5490613284565b6001600160a01b0383166000908152602081905260409020548181101561276a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b54565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127a1908490613161565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127ed91815260200190565b60405180910390a350505050565b306000908152602081905260408120549050600060195460185461281f9190613161565b9050600082158061282e575081155b1561283857505050565b6008546128469060146131b4565b83111561285e5760085461285b9060146131b4565b92505b6000826018548561286f91906131b4565b61287991906131d3565b9050600061289261288b83600261269a565b8690612b4f565b90504761289e82612b5b565b60006128aa4783612b4f565b905060006128e26128c7600260185461269a90919063ffffffff16565b6019546128d49190613161565b601954611a95908590612687565b905060006128f082846132c7565b6000601881905560198190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612948576040519150601f19603f3d011682016040523d82523d6000602084013e61294d565b606091505b509097505085158015906129615750600081115b156129b4576129708682612d1b565b601854604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b42600d556040516370a0823160e01b81526001600160a01b037f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b1166004820152600090819030906370a0823190602401602060405180830381865afa158015612a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a509190613226565b90506000612a6f612710611a95600a548561268790919063ffffffff16565b90508015612aa457612aa47f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b161dead836126a6565b60007f00000000000000000000000068d6514266020f28a844a91e16033ac1b94799b19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b0457600080fd5b505af1158015612b18573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061269382846132c7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b9057612b906131f5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c3291906132de565b81600181518110612c4557612c456131f5565b60200260200101906001600160a01b031690816001600160a01b031681525050612c90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b7c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612ce59085906000908690309042906004016132fb565b600060405180830381600087803b158015612cff57600080fd5b505af1158015612d13573d6000803e3d6000fd5b505050505050565b612d46307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b7c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612d8d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612df5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e1a919061336c565b5050505050565b60008060408385031215612e3457600080fd5b50508035926020909101359150565b6001600160a01b0381168114610fde57600080fd5b803561186581612e43565b8035801515811461186557600080fd5b60008060408385031215612e8657600080fd5b8235612e9181612e43565b9150612e9f60208401612e63565b90509250929050565b600060208083528351808285015260005b81811015612ed557858101830151858201604001528201612eb9565b81811115612ee7576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612f1057600080fd5b8235612f1b81612e43565b946020939093013593505050565b600060208284031215612f3b57600080fd5b5035919050565b600080600060608486031215612f5757600080fd5b8335612f6281612e43565b92506020840135612f7281612e43565b929592945050506040919091013590565b600060208284031215612f9557600080fd5b813561269381612e43565b600080600060608486031215612fb557600080fd5b8335925060208401359150612fcc60408501612e63565b90509250925092565b600060208284031215612fe757600080fd5b61269382612e63565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561301957600080fd5b823567ffffffffffffffff8082111561303157600080fd5b818501915085601f83011261304557600080fd5b813560208282111561305957613059612ff0565b8160051b604051601f19603f8301168101818110868211171561307e5761307e612ff0565b60405292835281830193508481018201928984111561309c57600080fd5b948201945b838610156130c1576130b286612e58565b855294820194938201936130a1565b96506130d09050878201612e63565b9450505050509250929050565b600080604083850312156130f057600080fd5b82356130fb81612e43565b9150602083013561310b81612e43565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156131745761317461314b565b500190565b600181811c9082168061318d57607f821691505b602082108114156131ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156131ce576131ce61314b565b500290565b6000826131f057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060001982141561321f5761321f61314b565b5060010190565b60006020828403121561323857600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156132d9576132d961314b565b500390565b6000602082840312156132f057600080fd5b815161269381612e43565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561334b5784516001600160a01b031683529383019391830191600101613326565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561338157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cf176606c1604d651769b48c5758082a6154343b6be7ec3495f6f75476c7afae64736f6c634300080a0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003f4b8e91c3a73430cf77aef6e8009357921f2766

-----Decoded View---------------
Arg [0] : _uniswapV2RouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _taxwallet (address): 0x3f4B8e91C3A73430CF77aEF6e8009357921F2766

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000003f4b8e91c3a73430cf77aef6e8009357921f2766


Deployed Bytecode Sourcemap

32576:19065:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39459:316;;;;;;;;;;-1:-1:-1;39459:316:0;;;;;:::i;:::-;;:::i;:::-;;51235:186;;;;;;;;;;-1:-1:-1;51235:186:0;;;;;:::i;:::-;;:::i;9743:102::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12061:212;;;;;;;;;;-1:-1:-1;12061:212:0;;;;;:::i;:::-;;:::i;:::-;;;2114:14:1;;2107:22;2089:41;;2077:2;2062:18;12061:212:0;1949:187:1;32650:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2332:32:1;;;2314:51;;2302:2;2287:18;32650:51:0;2141:230:1;10869:108:0;;;;;;;;;;-1:-1:-1;10957:12:0;;10869:108;;;2522:25:1;;;2510:2;2495:18;10869:108:0;2376:177:1;33169:56:0;;;;;;;;;;;;33215:10;33169:56;;32991:36;;;;;;;;;;;;;;;;33810:33;;;;;;;;;;;;;;;;38225:274;;;;;;;;;;-1:-1:-1;38225:274:0;;;;;:::i;:::-;;:::i;12755:531::-;;;;;;;;;;-1:-1:-1;12755:531:0;;;;;:::i;:::-;;:::i;32753:53::-;;;;;;;;;;;;32799:6;32753:53;;33079:45;;;;;;;;;;;;;;;;32843:24;;;;;;;;;;-1:-1:-1;32843:24:0;;;;-1:-1:-1;;;;;32843:24:0;;;33047:25;;;;;;;;;;-1:-1:-1;33047:25:0;;;;;;;;37436:218;;;;;;;;;;;;;:::i;10709:95::-;;;;;;;;;;-1:-1:-1;10709:95:0;;10794:2;3554:36:1;;3542:2;3527:18;10709:95:0;3412:184:1;13695:299:0;;;;;;;;;;-1:-1:-1;13695:299:0;;;;;:::i;:::-;;:::i;51042:185::-;;;:::i;32708:38::-;;;;;;;;;;;;;;;33276:33;;;;;;;;;;-1:-1:-1;33276:33:0;;;;;;;;40793:184;;;;;;;;;;-1:-1:-1;40793:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;40929:40:0;40900:4;40929:40;;;:31;:40;;;;;;;;;40793:184;40657:128;;;;;;;;;;-1:-1:-1;40657:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;40749:28:0;40725:4;40749:28;;;:19;:28;;;;;;;;;40657:128;39142:309;;;;;;;;;;-1:-1:-1;39142:309:0;;;;;:::i;:::-;;:::i;33703:28::-;;;;;;;;;;;;;;;;33850:27;;;;;;;;;;;;;;;;33348:23;;;;;;;;;;-1:-1:-1;33348:23:0;;;;;;;;;;;11040:177;;;;;;;;;;-1:-1:-1;11040:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11191:18:0;11159:7;11191:18;;;;;;;;;;;;11040:177;2858:105;;;;;;;;;;;;;:::i;48619:555::-;;;;;;;;;;-1:-1:-1;48619:555:0;;;;;:::i;:::-;;:::i;40483:166::-;;;;;;;;;;-1:-1:-1;40483:166:0;;;;;:::i;:::-;;:::i;37314:83::-;;;;;;;;;;;;;:::i;38771:167::-;;;;;;;;;;-1:-1:-1;38771:167:0;;;;;:::i;:::-;;:::i;37075:187::-;;;;;;;;;;;;;:::i;2207:87::-;;;;;;;;;;-1:-1:-1;2280:6:0;;-1:-1:-1;;;;;2280:6:0;2207:87;;39034:100;;;;;;;;;;-1:-1:-1;39034:100:0;;;;;:::i;:::-;;:::i;33670:24::-;;;;;;;;;;;;;;;;9964:106;;;;;;;;;;;;;:::i;39973:306::-;;;;;;;;;;-1:-1:-1;39973:306:0;;;;;:::i;:::-;;:::i;33232:35::-;;;;;;;;;;;;;;;;14497:484;;;;;;;;;;-1:-1:-1;14497:484:0;;;;;:::i;:::-;;:::i;33131:29::-;;;;;;;;;;;;;;;;11430:218;;;;;;;;;;-1:-1:-1;11430:218:0;;;;;:::i;:::-;;:::i;34248:57::-;;;;;;;;;;-1:-1:-1;34248:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33316:25;;;;;;;;;;-1:-1:-1;33316:25:0;;;;;;;;;;;39783:182;;;;;;;;;;-1:-1:-1;39783:182:0;;;;;:::i;:::-;;:::i;38507:256::-;;;;;;;;;;-1:-1:-1;38507:256:0;;;;;:::i;:::-;;:::i;51433:205::-;;;;;;;;;;-1:-1:-1;51433:205:0;;;;;:::i;:::-;;:::i;33558:32::-;;;;;;;;;;-1:-1:-1;33558:32:0;;;;;;;;32876:35;;;;;;;;;;;;;;;;37724:493;;;;;;;;;;-1:-1:-1;37724:493:0;;;;;:::i;:::-;;:::i;33599:27::-;;;;;;;;;;;;;;;;11711:203;;;;;;;;;;-1:-1:-1;11711:203:0;;;;;:::i;:::-;-1:-1:-1;;;;;11879:18:0;;;11847:7;11879:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11711:203;32918:33;;;;;;;;;;;;;;;;33633:30;;;;;;;;;;;;;;;;3118:240;;;;;;;;;;-1:-1:-1;3118:240:0;;;;;:::i;:::-;;:::i;33738:31::-;;;;;;;;;;;;;;;;34333:42;;;;;;;;;;-1:-1:-1;34333:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33776:25;;;;;;;;;;;;;;;;32958:24;;;;;;;;;;;;;;;;49978:1056;;;;;;;;;;-1:-1:-1;49978:1056:0;;;;;:::i;:::-;;:::i;39459:316::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;;;;;;;;;39576:16:::1;:32:::0;;;39619:10:::1;:20:::0;;;39666:29:::1;39632:7:::0;39595:13;39666:29:::1;:::i;:::-;39650:13;:45:::0;;;39731:2:::1;-1:-1:-1::0;39714:19:0::1;39706:61;;;::::0;-1:-1:-1;;;39706:61:0;;6908:2:1;39706:61:0::1;::::0;::::1;6890:21:1::0;6947:2;6927:18;;;6920:30;6986:31;6966:18;;;6959:59;7035:18;;39706:61:0::1;6706:353:1::0;39706:61:0::1;39459:316:::0;;:::o;51235:186::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51330:20:0;::::1;51322:55;;;::::0;-1:-1:-1;;;51322:55:0;;7266:2:1;51322:55:0::1;::::0;::::1;7248:21:1::0;7305:2;7285:18;;;7278:30;-1:-1:-1;;;7324:18:1;;;7317:52;7386:18;;51322:55:0::1;7064:346:1::0;51322:55:0::1;-1:-1:-1::0;;;;;51388:18:0;;;::::1;;::::0;;;:10:::1;:18;::::0;;;;:25;;-1:-1:-1;;51388:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51235:186::o;9743:102::-;9799:13;9832:5;9825:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9743:102;:::o;12061:212::-;12182:4;12204:39;935:10;12227:7;12236:6;12204:8;:39::i;:::-;-1:-1:-1;12261:4:0;12061:212;;;;:::o;38225:274::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;38361:4:::1;38354:3;38333:13;10957:12:::0;;;10869:108;38333:13:::1;:17;::::0;38349:1:::1;38333:17;:::i;:::-;38332:25;;;;:::i;:::-;38331:34;;;;:::i;:::-;38321:6;:44;;38299:141;;;::::0;-1:-1:-1;;;38299:141:0;;8397:2:1;38299:141:0::1;::::0;::::1;8379:21:1::0;8436:2;8416:18;;;8409:30;8475:34;8455:18;;;8448:62;-1:-1:-1;;;8526:18:1;;;8519:45;8581:19;;38299:141:0::1;8195:411:1::0;38299:141:0::1;38474:17;:6:::0;38484::::1;38474:17;:::i;:::-;38451:20;:40:::0;-1:-1:-1;38225:274:0:o;12755:531::-;12897:4;12914:36;12924:6;12932:9;12943:6;12914:9;:36::i;:::-;-1:-1:-1;;;;;12990:19:0;;12963:24;12990:19;;;:11;:19;;;;;;;;935:10;12990:33;;;;;;;;13056:26;;;;13034:116;;;;-1:-1:-1;;;13034:116:0;;8813:2:1;13034:116:0;;;8795:21:1;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;-1:-1:-1;;;8942:18:1;;;8935:38;8990:19;;13034:116:0;8611:404:1;13034:116:0;13186:57;13195:6;935:10;13236:6;13217:16;:25;13186:8;:57::i;:::-;-1:-1:-1;13274:4:0;;12755:531;-1:-1:-1;;;;12755:531:0:o;37436:218::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;37497:20:::1;::::0;::::1;;37494:153;;;37539:20;:28:::0;;-1:-1:-1;;37539:28:0::1;::::0;;37436:218::o;37494:153::-:1;37608:20;:27:::0;;-1:-1:-1;;37608:27:0::1;37631:4;37608:27;::::0;;37494:153:::1;37436:218::o:0;13695:299::-;935:10;13812:4;13906:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13906:34:0;;;;;;;;;;13812:4;;13834:130;;13884:7;;13906:47;;13943:10;;13906:47;:::i;:::-;13834:8;:130::i;51042:185::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;51108:9:::1;::::0;-1:-1:-1;;;;;51108:9:0::1;51100:58;;;::::0;-1:-1:-1;;;51100:58:0;;7266:2:1;51100:58:0::1;::::0;::::1;7248:21:1::0;7305:2;7285:18;;;7278:30;-1:-1:-1;;;7324:18:1;;;7317:52;7386:18;;51100:58:0::1;7064:346:1::0;51100:58:0::1;51177:9;::::0;51169:50:::1;::::0;-1:-1:-1;;;;;51177:9:0;;::::1;::::0;51197:21:::1;51169:50:::0;::::1;;;::::0;51177:9:::1;51169:50:::0;51177:9;51169:50;51197:21;51177:9;51169:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51042:185::o:0;39142:309::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;39258:15:::1;:31:::0;;;39300:9:::1;:19:::0;;;39345:27:::1;39312:7:::0;39276:13;39345:27:::1;:::i;:::-;39330:12;:42:::0;;;39407:2:::1;-1:-1:-1::0;39391:18:0::1;39383:60;;;::::0;-1:-1:-1;;;39383:60:0;;9222:2:1;39383:60:0::1;::::0;::::1;9204:21:1::0;9261:2;9241:18;;;9234:30;9300:31;9280:18;;;9273:59;9349:18;;39383:60:0::1;9020:353:1::0;2858:105:0;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;2925:30:::1;2952:1;2925:18;:30::i;48619:555::-:0;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;48821:3:::1;48798:19;:26;;48776:127;;;::::0;-1:-1:-1;;;48776:127:0;;9580:2:1;48776:127:0::1;::::0;::::1;9562:21:1::0;9619:2;9599:18;;;9592:30;9658:34;9638:18;;;9631:62;-1:-1:-1;;;9709:18:1;;;9702:49;9768:19;;48776:127:0::1;9378:415:1::0;48776:127:0::1;48948:4;48936:8;:16;;:33;;;;-1:-1:-1::0;48956:13:0;48936:33:::1;48914:131;;;::::0;-1:-1:-1;;;48914:131:0;;10000:2:1;48914:131:0::1;::::0;::::1;9982:21:1::0;10039:2;10019:18;;;10012:30;10078:34;10058:18;;;10051:62;-1:-1:-1;;;10129:18:1;;;10122:46;10185:19;;48914:131:0::1;9798:412:1::0;48914:131:0::1;49056:15;:37:::0;;;;49104:16:::1;:27:::0;49142:13:::1;:24:::0;;-1:-1:-1;;49142:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48619:555::o;40483:166::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;40596:9:::1;::::0;40565:41:::1;::::0;-1:-1:-1;;;;;40596:9:0;;::::1;::::0;40565:41;::::1;::::0;::::1;::::0;40596:9:::1;::::0;40565:41:::1;40617:9;:24:::0;;-1:-1:-1;;;;;;40617:24:0::1;-1:-1:-1::0;;;;;40617:24:0;;;::::1;::::0;;;::::1;::::0;;40483:166::o;37314:83::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;37367:14:::1;:22:::0;;-1:-1:-1;;37367:22:0::1;::::0;;37314:83::o;38771:167::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38884:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38884:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38771:167::o;37075:187::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;37130:13:::1;:20:::0;;-1:-1:-1;;37161:18:0;;;;;37207:15:::1;37190:14;:32:::0;37238:16:::1;::::0;::::1;::::0;-1:-1:-1;;37238:16:0::1;37075:187::o:0;39034:100::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;39105:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39105:21:0;;::::1;::::0;;;::::1;::::0;;39034:100::o;9964:106::-;10022:13;10055:7;10048:14;;;;;:::i;39973:306::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;40119:13:::1;-1:-1:-1::0;;;;;40111:21:0::1;:4;-1:-1:-1::0;;;;;40111:21:0::1;;;40089:128;;;::::0;-1:-1:-1;;;40089:128:0;;10417:2:1;40089:128:0::1;::::0;::::1;10399:21:1::0;10456:2;10436:18;;;10429:30;10495:34;10475:18;;;10468:62;10566:27;10546:18;;;10539:55;10611:19;;40089:128:0::1;10215:421:1::0;40089:128:0::1;40230:41;40259:4;40265:5;40230:28;:41::i;14497:484::-:0;935:10;14619:4;14668:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14668:34:0;;;;;;;;;;14735:35;;;;14713:122;;;;-1:-1:-1;;;14713:122:0;;10843:2:1;14713:122:0;;;10825:21:1;10882:2;10862:18;;;10855:30;10921:34;10901:18;;;10894:62;-1:-1:-1;;;10972:18:1;;;10965:35;11017:19;;14713:122:0;10641:401:1;14713:122:0;14871:67;935:10;14894:7;14922:15;14903:16;:34;14871:8;:67::i;:::-;-1:-1:-1;14969:4:0;;14497:484;-1:-1:-1;;;14497:484:0:o;11430:218::-;11554:4;11576:42;935:10;11600:9;11611:6;11576:9;:42::i;39783:182::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39868:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39868:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39923:34;;2089:41:1;;;39923:34:0::1;::::0;2062:18:1;39923:34:0::1;;;;;;;39783:182:::0;;:::o;38507:256::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;38647:4:::1;38639;38618:13;10957:12:::0;;;10869:108;38618:13:::1;:17;::::0;38634:1:::1;38618:17;:::i;:::-;38617:26;;;;:::i;:::-;38616:35;;;;:::i;:::-;38606:6;:45;;38584:131;;;::::0;-1:-1:-1;;;38584:131:0;;11249:2:1;38584:131:0::1;::::0;::::1;11231:21:1::0;11288:2;11268:18;;;11261:30;11327:34;11307:18;;;11300:62;-1:-1:-1;;;11378:18:1;;;11371:34;11422:19;;38584:131:0::1;11047:400:1::0;38584:131:0::1;38738:17;:6:::0;38748::::1;38738:17;:::i;:::-;38726:9;:29:::0;-1:-1:-1;38507:256:0:o;51433:205::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;51533:6:::1;51529:94;51544:6;:13;51542:1;:15;51529:94;;;51607:4;51583:10;:21;51594:6;51601:1;51594:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51583:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51583:21:0;:28;;-1:-1:-1;;51583:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51558:3;::::1;::::0;::::1;:::i;:::-;;;;51529:94;;;;51433:205:::0;;:::o;37724:493::-;2280:6;;37832:4;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;37911:3:::1;37890:13;10957:12:::0;;;10869:108;37890:13:::1;:17;::::0;37906:1:::1;37890:17;:::i;:::-;37889:25;;;;:::i;:::-;37876:9;:38;;37854:141;;;::::0;-1:-1:-1;;;37854:141:0;;11926:2:1;37854:141:0::1;::::0;::::1;11908:21:1::0;11965:2;11945:18;;;11938:30;12004:34;11984:18;;;11977:62;-1:-1:-1;;;12055:18:1;;;12048:51;12116:19;;37854:141:0::1;11724:417:1::0;37854:141:0::1;38063:3;38042:13;10957:12:::0;;;10869:108;38042:13:::1;:17;::::0;38058:1:::1;38042:17;:::i;:::-;38041:25;;;;:::i;:::-;38028:9;:38;;38006:140;;;::::0;-1:-1:-1;;;38006:140:0;;12348:2:1;38006:140:0::1;::::0;::::1;12330:21:1::0;12387:2;12367:18;;;12360:30;12426:34;12406:18;;;12399:62;-1:-1:-1;;;12477:18:1;;;12470:50;12537:19;;38006:140:0::1;12146:416:1::0;38006:140:0::1;-1:-1:-1::0;38157:18:0::1;:30:::0;;;38205:4:::1;2498:1;37724:493:::0;;;:::o;3118:240::-;2280:6;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3223:22:0;::::1;3201:110;;;::::0;-1:-1:-1;;;3201:110:0;;12769:2:1;3201:110:0::1;::::0;::::1;12751:21:1::0;12808:2;12788:18;;;12781:30;12847:34;12827:18;;;12820:62;-1:-1:-1;;;12898:18:1;;;12891:36;12944:19;;3201:110:0::1;12567:402:1::0;3201:110:0::1;3322:28;3341:8;3322:18;:28::i;49978:1056::-:0;2280:6;;50089:4;;-1:-1:-1;;;;;2280:6:0;935:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;33215:10:::1;50151:20;;:42;;;;:::i;:::-;50133:15;:60;50111:142;;;::::0;-1:-1:-1;;;50111:142:0;;13176:2:1;50111:142:0::1;::::0;::::1;13158:21:1::0;;;13195:18;;;13188:30;13254:34;13234:18;;;13227:62;13306:18;;50111:142:0::1;12974:356:1::0;50111:142:0::1;50283:4;50272:7;:15;;50264:70;;;::::0;-1:-1:-1;;;50264:70:0;;13537:2:1;50264:70:0::1;::::0;::::1;13519:21:1::0;13576:2;13556:18;;;13549:30;13615:34;13595:18;;;13588:62;-1:-1:-1;;;13666:18:1;;;13659:40;13716:19;;50264:70:0::1;13335:406:1::0;50264:70:0::1;50368:15;50345:20;:38:::0;50469:29:::1;::::0;-1:-1:-1;;;50469:29:0;;-1:-1:-1;;;;;50484:13:0::1;2332:32:1::0;50469:29:0::1;::::0;::::1;2314:51:1::0;50438:28:0::1;::::0;50469:4:::1;::::0;:14:::1;::::0;2287:18:1;;50469:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50438:60:::0;-1:-1:-1;50548:20:0::1;50571:44;50609:5;50571:33;50438:60:::0;50596:7;50571:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;50548:67:::0;-1:-1:-1;50720:16:0;;50716:110:::1;;50753:61;50769:13;50792:6;50801:12;50753:15;:61::i;:::-;50901:19;50938:13;50901:51;;50963:4;-1:-1:-1::0;;;;;50963:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50990:14:0::1;::::0;::::1;::::0;-1:-1:-1;50990:14:0;;-1:-1:-1;50990:14:0::1;-1:-1:-1::0;51022:4:0::1;::::0;49978:1056;-1:-1:-1;;;;49978:1056:0:o;17365:380::-;-1:-1:-1;;;;;17501:19:0;;17493:68;;;;-1:-1:-1;;;17493:68:0;;14137:2:1;17493:68:0;;;14119:21:1;14176:2;14156:18;;;14149:30;14215:34;14195:18;;;14188:62;-1:-1:-1;;;14266:18:1;;;14259:34;14310:19;;17493:68:0;13935:400:1;17493:68:0;-1:-1:-1;;;;;17580:21:0;;17572:68;;;;-1:-1:-1;;;17572:68:0;;14542:2:1;17572:68:0;;;14524:21:1;14581:2;14561:18;;;14554:30;14620:34;14600:18;;;14593:62;-1:-1:-1;;;14671:18:1;;;14664:32;14713:19;;17572:68:0;14340:398:1;17572:68:0;-1:-1:-1;;;;;17653:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17705:32;;2522:25:1;;;17705:32:0;;2495:18:1;17705:32:0;;;;;;;17365:380;;;:::o;41035:4972::-;-1:-1:-1;;;;;41167:18:0;;41159:68;;;;-1:-1:-1;;;41159:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41246:16:0;;41238:64;;;;-1:-1:-1;;;41238:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41322:16:0;;;;;;:10;:16;;;;;;;;41321:17;41313:50;;;;-1:-1:-1;;;41313:50:0;;15755:2:1;41313:50:0;;;15737:21:1;15794:2;15774:18;;;15767:30;-1:-1:-1;;;15813:18:1;;;15806:50;15873:18;;41313:50:0;15553:344:1;41313:50:0;-1:-1:-1;;;;;41383:14:0;;;;;;:10;:14;;;;;;;;41382:15;41374:51;;;;-1:-1:-1;;;41374:51:0;;16104:2:1;41374:51:0;;;16086:21:1;16143:2;16123:18;;;16116:30;16182:25;16162:18;;;16155:53;16225:18;;41374:51:0;15902:347:1;41374:51:0;41442:11;41438:93;;41470:28;41486:4;41492:2;41496:1;41470:15;:28::i;41438:93::-;41547:14;;;;41543:2487;;;2280:6;;-1:-1:-1;;;;;41600:15:0;;;2280:6;;41600:15;;;;:49;;-1:-1:-1;2280:6:0;;-1:-1:-1;;;;;41636:13:0;;;2280:6;;41636:13;;41600:49;:86;;;;-1:-1:-1;;;;;;41670:16:0;;;;41600:86;:128;;;;-1:-1:-1;;;;;;41707:21:0;;41721:6;41707:21;;41600:128;:158;;;;-1:-1:-1;41750:8:0;;-1:-1:-1;;;41750:8:0;;;;41749:9;41600:158;41578:2441;;;41798:13;;;;;;;41793:223;;-1:-1:-1;;;;;41870:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41899:23:0;;;;;;:19;:23;;;;;;;;41870:52;41836:160;;;;-1:-1:-1;;;41836:160:0;;16456:2:1;41836:160:0;;;16438:21:1;16495:2;16475:18;;;16468:30;-1:-1:-1;;;16514:18:1;;;16507:52;16576:18;;41836:160:0;16254:346:1;41836:160:0;42172:20;;;;42168:641;;;2280:6;;-1:-1:-1;;;;;42247:13:0;;;2280:6;;42247:13;;;;:72;;;42303:15;-1:-1:-1;;;;;42289:30:0;:2;-1:-1:-1;;;;;42289:30:0;;;42247:72;:129;;;;;42362:13;-1:-1:-1;;;;;42348:28:0;:2;-1:-1:-1;;;;;42348:28:0;;;42247:129;42217:573;;;42494:9;42465:39;;;;:28;:39;;;;;;42540:12;-1:-1:-1;42427:258:0;;;;-1:-1:-1;;;42427:258:0;;16807:2:1;42427:258:0;;;16789:21:1;16846:2;16826:18;;;16819:30;16885:34;16865:18;;;16858:62;16956:34;16936:18;;;16929:62;-1:-1:-1;;;17007:19:1;;;17000:40;17057:19;;42427:258:0;16605:477:1;42427:258:0;42741:9;42712:39;;;;:28;:39;;;;;42754:12;42712:54;;42217:573;-1:-1:-1;;;;;42883:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42940:35:0;;;;;;:31;:35;;;;;;;;42939:36;42883:92;42857:1147;;;43062:20;;43052:6;:30;;43018:169;;;;-1:-1:-1;;;43018:169:0;;17289:2:1;43018:169:0;;;17271:21:1;17328:2;17308:18;;;17301:30;17367:34;17347:18;;;17340:62;-1:-1:-1;;;17418:18:1;;;17411:51;17479:19;;43018:169:0;17087:417:1;43018:169:0;43270:9;;-1:-1:-1;;;;;11191:18:0;;11159:7;11191:18;;;;;;;;;;;43244:22;;:6;:22;:::i;:::-;:35;;43210:140;;;;-1:-1:-1;;;43210:140:0;;17711:2:1;43210:140:0;;;17693:21:1;17750:2;17730:18;;;17723:30;-1:-1:-1;;;17769:18:1;;;17762:49;17828:18;;43210:140:0;17509:343:1;43210:140:0;42857:1147;;;-1:-1:-1;;;;;43448:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43503:37:0;;;;;;:31;:37;;;;;;;;43502:38;43448:92;43422:582;;;43627:20;;43617:6;:30;;43583:170;;;;-1:-1:-1;;;43583:170:0;;18059:2:1;43583:170:0;;;18041:21:1;18098:2;18078:18;;;18071:30;18137:34;18117:18;;;18110:62;-1:-1:-1;;;18188:18:1;;;18181:52;18250:19;;43583:170:0;17857:418:1;43422:582:0;-1:-1:-1;;;;;43784:35:0;;;;;;:31;:35;;;;;;;;43779:225;;43904:9;;-1:-1:-1;;;;;11191:18:0;;11159:7;11191:18;;;;;;;;;;;43878:22;;:6;:22;:::i;:::-;:35;;43844:140;;;;-1:-1:-1;;;43844:140:0;;17711:2:1;43844:140:0;;;17693:21:1;17750:2;17730:18;;;17723:30;-1:-1:-1;;;17769:18:1;;;17762:49;17828:18;;43844:140:0;17509:343:1;43844:140:0;44091:4;44042:28;11191:18;;;;;;;;;;;44149;;44125:42;;;;;;;44198:35;;-1:-1:-1;44222:11:0;;;;;;;44198:35;:61;;;;-1:-1:-1;44251:8:0;;-1:-1:-1;;;44251:8:0;;;;44250:9;44198:61;:110;;;;-1:-1:-1;;;;;;44277:31:0;;;;;;:25;:31;;;;;;;;44276:32;44198:110;:153;;;;-1:-1:-1;;;;;;44326:25:0;;;;;;:19;:25;;;;;;;;44325:26;44198:153;:194;;;;-1:-1:-1;;;;;;44369:23:0;;;;;;:19;:23;;;;;;;;44368:24;44198:194;44180:326;;;44419:8;:15;;-1:-1:-1;;;;44419:15:0;-1:-1:-1;;;44419:15:0;;;44451:10;:8;:10::i;:::-;44478:8;:16;;-1:-1:-1;;;;44478:16:0;;;44180:326;44537:8;;-1:-1:-1;;;44537:8:0;;;;44536:9;:55;;;;-1:-1:-1;;;;;;44562:29:0;;;;;;:25;:29;;;;;;;;44536:55;:85;;;;-1:-1:-1;44608:13:0;;;;44536:85;:153;;;;;44674:15;;44657:14;;:32;;;;:::i;:::-;44638:15;:51;;44536:153;:196;;;;-1:-1:-1;;;;;;44707:25:0;;;;;;:19;:25;;;;;;;;44706:26;44536:196;44518:282;;;44759:29;:27;:29::i;:::-;;44518:282;44828:8;;-1:-1:-1;;;;;44938:25:0;;44812:12;44938:25;;;:19;:25;;;;;;44828:8;-1:-1:-1;;;44828:8:0;;;;;44827:9;;44938:25;;:52;;-1:-1:-1;;;;;;44967:23:0;;;;;;:19;:23;;;;;;;;44938:52;44934:100;;;-1:-1:-1;45017:5:0;44934:100;45046:12;45151:7;45147:807;;;-1:-1:-1;;;;;45203:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45252:1;45236:13;;:17;45203:50;45199:606;;;45281:34;45311:3;45281:25;45292:13;;45281:6;:10;;:25;;;;:::i;:34::-;45274:41;;45384:13;;45364:16;;45357:4;:23;;;;:::i;:::-;45356:41;;;;:::i;:::-;45334:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45454:13:0;;45440:10;;45433:17;;:4;:17;:::i;:::-;45432:35;;;;:::i;:::-;45416:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;45199:606:0;;-1:-1:-1;45199:606:0;;-1:-1:-1;;;;;45529:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45579:1;45564:12;;:16;45529:51;45525:280;;;45608:33;45637:3;45608:24;45619:12;;45608:6;:10;;:24;;;;:::i;:33::-;45601:40;;45709:12;;45690:15;;45683:4;:22;;;;:::i;:::-;45682:39;;;;:::i;:::-;45660:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45777:12:0;;45764:9;;45757:16;;:4;:16;:::i;:::-;45756:33;;;;:::i;:::-;45740:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45525:280:0;45825:8;;45821:91;;45854:42;45870:4;45884;45891;45854:15;:42::i;:::-;45928:14;45938:4;45928:14;;:::i;:::-;;;45147:807;45966:33;45982:4;45988:2;45992:6;45966:15;:33::i;:::-;41148:4859;;;;41035:4972;;;:::o;3518:191::-;3611:6;;;-1:-1:-1;;;;;3628:17:0;;;-1:-1:-1;;;;;;3628:17:0;;;;;;;3661:40;;3611:6;;;3628:17;3611:6;;3661:40;;3592:16;;3661:40;3581:128;3518:191;:::o;40287:188::-;-1:-1:-1;;;;;40370:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40370:39:0;;;;;;;;;;40427:40;;40370:39;;:31;40427:40;;;40287:188;;:::o;22978:98::-;23036:7;23063:5;23067:1;23063;:5;:::i;:::-;23056:12;22978:98;-1:-1:-1;;;22978:98:0:o;23377:::-;23435:7;23462:5;23466:1;23462;:5;:::i;15471:770::-;-1:-1:-1;;;;;15611:20:0;;15603:70;;;;-1:-1:-1;;;15603:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15692:23:0;;15684:71;;;;-1:-1:-1;;;15684:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15852:17:0;;15828:21;15852:17;;;;;;;;;;;15902:23;;;;15880:111;;;;-1:-1:-1;;;15880:111:0;;18612:2:1;15880:111:0;;;18594:21:1;18651:2;18631:18;;;18624:30;18690:34;18670:18;;;18663:62;-1:-1:-1;;;18741:18:1;;;18734:36;18787:19;;15880:111:0;18410:402:1;15880:111:0;-1:-1:-1;;;;;16027:17:0;;;:9;:17;;;;;;;;;;;16047:22;;;16027:42;;16091:20;;;;;;;;:30;;16063:6;;16027:9;16091:30;;16063:6;;16091:30;:::i;:::-;;;;;;;;16156:9;-1:-1:-1;;;;;16139:35:0;16148:6;-1:-1:-1;;;;;16139:35:0;;16167:6;16139:35;;;;2522:25:1;;2510:2;2495:18;;2376:177;16139:35:0;;;;;;;;15592:649;15471:770;;;:::o;47133:1478::-;47216:4;47172:23;11191:18;;;;;;;;;;;47172:50;;47233:25;47282:12;;47261:18;;:33;;;;:::i;:::-;47233:61;-1:-1:-1;47305:12:0;47334:20;;;:46;;-1:-1:-1;47358:22:0;;47334:46;47330:85;;;47397:7;;;47133:1478::o;47330:85::-;47449:18;;:23;;47470:2;47449:23;:::i;:::-;47431:15;:41;47427:115;;;47507:18;;:23;;47528:2;47507:23;:::i;:::-;47489:41;;47427:115;47556:23;47636:17;47601:18;;47583:15;:36;;;;:::i;:::-;47582:71;;;;:::i;:::-;47556:97;-1:-1:-1;47708:26:0;47737:43;47757:22;47556:97;47777:1;47757:19;:22::i;:::-;47737:15;;:19;:43::i;:::-;47708:72;-1:-1:-1;47821:21:0;47855:36;47708:72;47855:16;:36::i;:::-;47904:18;47925:44;:21;47951:17;47925:25;:44::i;:::-;47904:65;;48024:17;48044:74;48092:25;48115:1;48092:18;;:22;;:25;;;;:::i;:::-;48077:12;;:40;;;;:::i;:::-;48059:12;;48044:28;;:10;;:14;:28::i;:74::-;48024:94;-1:-1:-1;48131:23:0;48157:22;48024:94;48157:10;:22;:::i;:::-;48213:1;48192:18;:22;;;48225:12;:16;;;48276:9;;48268:45;;48131:48;;-1:-1:-1;;;;;;48276:9:0;;48299;;48268:45;48213:1;48268:45;48299:9;48276;48268:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48254:59:0;;-1:-1:-1;;48330:19:0;;;;;:42;;;48371:1;48353:15;:19;48330:42;48326:278;;;48389:46;48402:15;48419;48389:12;:46::i;:::-;48559:18;;48455:137;;;19229:25:1;;;19285:2;19270:18;;19263:34;;;19313:18;;;19306:34;;;;48455:137:0;;;;;;19217:2:1;48455:137:0;;;48326:278;47161:1450;;;;;;;;;47133:1478::o;49182:788::-;49273:15;49256:14;:32;49374:29;;-1:-1:-1;;;49374:29:0;;-1:-1:-1;;;;;49389:13:0;2332:32:1;49374:29:0;;;2314:51:1;49239:4:0;;;;49374;;:14;;2287:18:1;;49374:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49343:60;;49453:20;49476:77;49537:5;49476:42;49501:16;;49476:20;:24;;:42;;;;:::i;:77::-;49453:100;-1:-1:-1;49658:16:0;;49654:110;;49691:61;49707:13;49730:6;49739:12;49691:15;:61::i;:::-;49839:19;49876:13;49839:51;;49901:4;-1:-1:-1;;;;;49901:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49928:12:0;;;;-1:-1:-1;49928:12:0;;-1:-1:-1;49928:12:0;49958:4;49951:11;;;;;49182:788;:::o;22621:98::-;22679:7;22706:5;22710:1;22706;:5;:::i;46015:589::-;46165:16;;;46179:1;46165:16;;;;;;;;46141:21;;46165:16;;;;;;;;;;-1:-1:-1;46165:16:0;46141:40;;46210:4;46192;46197:1;46192:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46192:23:0;;;-1:-1:-1;;;;;46192:23:0;;;;;46236:15;-1:-1:-1;;;;;46236:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46226:4;46231:1;46226:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46226:32:0;;;-1:-1:-1;;;;;46226:32:0;;;;;46271:62;46288:4;46303:15;46321:11;46271:8;:62::i;:::-;46372:224;;-1:-1:-1;;;46372:224:0;;-1:-1:-1;;;;;46372:15:0;:66;;;;:224;;46453:11;;46479:1;;46523:4;;46550;;46570:15;;46372:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46070:534;46015:589;:::o;46612:513::-;46760:62;46777:4;46792:15;46810:11;46760:8;:62::i;:::-;46865:15;-1:-1:-1;;;;;46865:31:0;;46904:9;46937:4;46957:11;46983:1;47026;47069:7;2280:6;;-1:-1:-1;;;;;2280:6:0;;2207:87;47069:7;46865:252;;;;;;-1:-1:-1;;;;;;46865:252:0;;;-1:-1:-1;;;;;20951:15:1;;;46865:252:0;;;20933:34:1;20983:18;;;20976:34;;;;21026:18;;;21019:34;;;;21069:18;;;21062:34;21133:15;;;21112:19;;;21105:44;47091:15:0;21165:19:1;;;21158:35;20867:19;;46865:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46612:513;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:131::-;-1:-1:-1;;;;;342:31:1;;332:42;;322:70;;388:1;385;378:12;403:134;471:20;;500:31;471:20;500:31;:::i;542:160::-;607:20;;663:13;;656:21;646:32;;636:60;;692:1;689;682:12;707:315;772:6;780;833:2;821:9;812:7;808:23;804:32;801:52;;;849:1;846;839:12;801:52;888:9;875:23;907:31;932:5;907:31;:::i;:::-;957:5;-1:-1:-1;981:35:1;1012:2;997:18;;981:35;:::i;:::-;971:45;;707:315;;;;;:::o;1027:597::-;1139:4;1168:2;1197;1186:9;1179:21;1229:6;1223:13;1272:6;1267:2;1256:9;1252:18;1245:34;1297:1;1307:140;1321:6;1318:1;1315:13;1307:140;;;1416:14;;;1412:23;;1406:30;1382:17;;;1401:2;1378:26;1371:66;1336:10;;1307:140;;;1465:6;1462:1;1459:13;1456:91;;;1535:1;1530:2;1521:6;1510:9;1506:22;1502:31;1495:42;1456:91;-1:-1:-1;1608:2:1;1587:15;-1:-1:-1;;1583:29:1;1568:45;;;;1615:2;1564:54;;1027:597;-1:-1:-1;;;1027:597:1:o;1629:315::-;1697:6;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1813:9;1800:23;1832:31;1857:5;1832:31;:::i;:::-;1882:5;1934:2;1919:18;;;;1906:32;;-1:-1:-1;;;1629:315:1:o;2558:180::-;2617:6;2670:2;2658:9;2649:7;2645:23;2641:32;2638:52;;;2686:1;2683;2676:12;2638:52;-1:-1:-1;2709:23:1;;2558:180;-1:-1:-1;2558:180:1:o;2743:456::-;2820:6;2828;2836;2889:2;2877:9;2868:7;2864:23;2860:32;2857:52;;;2905:1;2902;2895:12;2857:52;2944:9;2931:23;2963:31;2988:5;2963:31;:::i;:::-;3013:5;-1:-1:-1;3070:2:1;3055:18;;3042:32;3083:33;3042:32;3083:33;:::i;:::-;2743:456;;3135:7;;-1:-1:-1;;;3189:2:1;3174:18;;;;3161:32;;2743:456::o;3601:247::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3768:9;3755:23;3787:31;3812:5;3787:31;:::i;3853:316::-;3927:6;3935;3943;3996:2;3984:9;3975:7;3971:23;3967:32;3964:52;;;4012:1;4009;4002:12;3964:52;4048:9;4035:23;4025:33;;4105:2;4094:9;4090:18;4077:32;4067:42;;4128:35;4159:2;4148:9;4144:18;4128:35;:::i;:::-;4118:45;;3853:316;;;;;:::o;4174:180::-;4230:6;4283:2;4271:9;4262:7;4258:23;4254:32;4251:52;;;4299:1;4296;4289:12;4251:52;4322:26;4338:9;4322:26;:::i;4359:127::-;4420:10;4415:3;4411:20;4408:1;4401:31;4451:4;4448:1;4441:15;4475:4;4472:1;4465:15;4491:1191;4581:6;4589;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;4698:9;4685:23;4727:18;4768:2;4760:6;4757:14;4754:34;;;4784:1;4781;4774:12;4754:34;4822:6;4811:9;4807:22;4797:32;;4867:7;4860:4;4856:2;4852:13;4848:27;4838:55;;4889:1;4886;4879:12;4838:55;4925:2;4912:16;4947:4;4970:2;4966;4963:10;4960:36;;;4976:18;;:::i;:::-;5022:2;5019:1;5015:10;5054:2;5048:9;5117:2;5113:7;5108:2;5104;5100:11;5096:25;5088:6;5084:38;5172:6;5160:10;5157:22;5152:2;5140:10;5137:18;5134:46;5131:72;;;5183:18;;:::i;:::-;5219:2;5212:22;5269:18;;;5303:15;;;;-1:-1:-1;5345:11:1;;;5341:20;;;5373:19;;;5370:39;;;5405:1;5402;5395:12;5370:39;5429:11;;;;5449:148;5465:6;5460:3;5457:15;5449:148;;;5531:23;5550:3;5531:23;:::i;:::-;5519:36;;5482:12;;;;5575;;;;5449:148;;;5616:6;-1:-1:-1;5641:35:1;;-1:-1:-1;5657:18:1;;;5641:35;:::i;:::-;5631:45;;;;;;4491:1191;;;;;:::o;5687:388::-;5755:6;5763;5816:2;5804:9;5795:7;5791:23;5787:32;5784:52;;;5832:1;5829;5822:12;5784:52;5871:9;5858:23;5890:31;5915:5;5890:31;:::i;:::-;5940:5;-1:-1:-1;5997:2:1;5982:18;;5969:32;6010:33;5969:32;6010:33;:::i;:::-;6062:7;6052:17;;;5687:388;;;;;:::o;6080:356::-;6282:2;6264:21;;;6301:18;;;6294:30;6360:34;6355:2;6340:18;;6333:62;6427:2;6412:18;;6080:356::o;6441:127::-;6502:10;6497:3;6493:20;6490:1;6483:31;6533:4;6530:1;6523:15;6557:4;6554:1;6547:15;6573:128;6613:3;6644:1;6640:6;6637:1;6634:13;6631:39;;;6650:18;;:::i;:::-;-1:-1:-1;6686:9:1;;6573:128::o;7415:380::-;7494:1;7490:12;;;;7537;;;7558:61;;7612:4;7604:6;7600:17;7590:27;;7558:61;7665:2;7657:6;7654:14;7634:18;7631:38;7628:161;;;7711:10;7706:3;7702:20;7699:1;7692:31;7746:4;7743:1;7736:15;7774:4;7771:1;7764:15;7628:161;;7415:380;;;:::o;7800:168::-;7840:7;7906:1;7902;7898:6;7894:14;7891:1;7888:21;7883:1;7876:9;7869:17;7865:45;7862:71;;;7913:18;;:::i;:::-;-1:-1:-1;7953:9:1;;7800:168::o;7973:217::-;8013:1;8039;8029:132;;8083:10;8078:3;8074:20;8071:1;8064:31;8118:4;8115:1;8108:15;8146:4;8143:1;8136:15;8029:132;-1:-1:-1;8175:9:1;;7973:217::o;11452:127::-;11513:10;11508:3;11504:20;11501:1;11494:31;11544:4;11541:1;11534:15;11568:4;11565:1;11558:15;11584:135;11623:3;-1:-1:-1;;11644:17:1;;11641:43;;;11664:18;;:::i;:::-;-1:-1:-1;11711:1:1;11700:13;;11584:135::o;13746:184::-;13816:6;13869:2;13857:9;13848:7;13844:23;13840:32;13837:52;;;13885:1;13882;13875:12;13837:52;-1:-1:-1;13908:16:1;;13746:184;-1:-1:-1;13746:184:1:o;14743:401::-;14945:2;14927:21;;;14984:2;14964:18;;;14957:30;15023:34;15018:2;15003:18;;14996:62;-1:-1:-1;;;15089:2:1;15074:18;;15067:35;15134:3;15119:19;;14743:401::o;15149:399::-;15351:2;15333:21;;;15390:2;15370:18;;;15363:30;15429:34;15424:2;15409:18;;15402:62;-1:-1:-1;;;15495:2:1;15480:18;;15473:33;15538:3;15523:19;;15149:399::o;18280:125::-;18320:4;18348:1;18345;18342:8;18339:34;;;18353:18;;:::i;:::-;-1:-1:-1;18390:9:1;;18280:125::o;19351:251::-;19421:6;19474:2;19462:9;19453:7;19449:23;19445:32;19442:52;;;19490:1;19487;19480:12;19442:52;19522:9;19516:16;19541:31;19566:5;19541:31;:::i;19607:980::-;19869:4;19917:3;19906:9;19902:19;19948:6;19937:9;19930:25;19974:2;20012:6;20007:2;19996:9;19992:18;19985:34;20055:3;20050:2;20039:9;20035:18;20028:31;20079:6;20114;20108:13;20145:6;20137;20130:22;20183:3;20172:9;20168:19;20161:26;;20222:2;20214:6;20210:15;20196:29;;20243:1;20253:195;20267:6;20264:1;20261:13;20253:195;;;20332:13;;-1:-1:-1;;;;;20328:39:1;20316:52;;20423:15;;;;20388:12;;;;20364:1;20282:9;20253:195;;;-1:-1:-1;;;;;;;20504:32:1;;;;20499:2;20484:18;;20477:60;-1:-1:-1;;;20568:3:1;20553:19;20546:35;20465:3;19607:980;-1:-1:-1;;;19607:980:1:o;21204:306::-;21292:6;21300;21308;21361:2;21349:9;21340:7;21336:23;21332:32;21329:52;;;21377:1;21374;21367:12;21329:52;21406:9;21400:16;21390:26;;21456:2;21445:9;21441:18;21435:25;21425:35;;21500:2;21489:9;21485:18;21479:25;21469:35;;21204:306;;;;;:::o

Swarm Source

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