searxng/searx/webapp.py
Joseph Cheung 899d7cdb41 d
2023-03-06 01:55:10 +08:00

2121 lines
380 KiB
Python
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint
# pyright: basic
"""WebbApp
"""
# pylint: disable=use-dict-literal
import hashlib
import hmac
import json
import os
import sys
import base64
import requests
import markdown
import re
import datetime
from textrank4zh import TextRank4Keyword, TextRank4Sentence
import pycorrector
from timeit import default_timer
from html import escape
from io import StringIO
import typing
from typing import List, Dict, Iterable
import urllib
import urllib.parse
from urllib.parse import urlencode, unquote
import httpx
from pygments import highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter # pylint: disable=no-name-in-module
import flask
from flask import (
Flask,
render_template,
url_for,
make_response,
redirect,
send_from_directory,
)
from flask.wrappers import Response
from flask.json import jsonify
from flask_babel import (
Babel,
gettext,
format_decimal,
)
from searx import (
logger,
get_setting,
settings,
searx_debug,
)
from searx import infopage
from searx.data import ENGINE_DESCRIPTIONS
from searx.results import Timing, UnresponsiveEngine
from searx.settings_defaults import OUTPUT_FORMATS
from searx.settings_loader import get_default_settings_path
from searx.exceptions import SearxParameterException
from searx.engines import (
OTHER_CATEGORY,
categories,
engines,
engine_shortcuts,
)
from searx.webutils import (
UnicodeWriter,
highlight_content,
get_static_files,
get_result_templates,
get_themes,
prettify_url,
new_hmac,
is_hmac_of,
is_flask_run_cmdline,
group_engines_in_tab,
searxng_l10n_timespan,
)
from searx.webadapter import (
get_search_query_from_webapp,
get_selected_categories,
)
from searx.utils import (
html_to_text,
gen_useragent,
dict_subset,
match_language,
)
from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
from searx.query import RawTextQuery
from searx.plugins import Plugin, plugins, initialize as plugin_initialize
from searx.plugins.oa_doi_rewrite import get_doi_resolver
from searx.preferences import (
Preferences,
ValidationException,
)
from searx.answerers import (
answerers,
ask,
)
from searx.metrics import (
get_engines_stats,
get_engine_errors,
get_reliabilities,
histogram,
counter,
)
from searx.flaskfix import patch_application
from searx.locales import (
LOCALE_NAMES,
RTL_LOCALES,
localeselector,
locales_initialize,
)
# renaming names from searx imports ...
from searx.autocomplete import search_autocomplete, backends as autocomplete_backends
from searx.languages import language_codes as languages
from searx.redisdb import initialize as redis_initialize
from searx.search import SearchWithPlugins, initialize as search_initialize
from searx.network import stream as http_stream, set_context_network_name
from searx.search.checker import get_result as checker_get_result
logger = logger.getChild('webapp')
# check secret_key
if not searx_debug and settings['server']['secret_key'] == 'ultrasecretkey':
logger.error('server.secret_key is not changed. Please use something else instead of ultrasecretkey.')
sys.exit(1)
# about static
logger.debug('static directory is %s', settings['ui']['static_path'])
static_files = get_static_files(settings['ui']['static_path'])
# about templates
logger.debug('templates directory is %s', settings['ui']['templates_path'])
default_theme = settings['ui']['default_theme']
templates_path = settings['ui']['templates_path']
themes = get_themes(templates_path)
result_templates = get_result_templates(templates_path)
STATS_SORT_PARAMETERS = {
'name': (False, 'name', ''),
'score': (True, 'score_per_result', 0),
'result_count': (True, 'result_count', 0),
'time': (False, 'total', 0),
'reliability': (False, 'reliability', 100),
}
# Flask app
app = Flask(__name__, static_folder=settings['ui']['static_path'], template_folder=templates_path)
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-member
app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member
app.secret_key = settings['server']['secret_key']
timeout_text = gettext('timeout')
parsing_error_text = gettext('parsing error')
http_protocol_error_text = gettext('HTTP protocol error')
network_error_text = gettext('network error')
ssl_cert_error_text = gettext("SSL error: certificate validation has failed")
exception_classname_to_text = {
None: gettext('unexpected crash'),
'timeout': timeout_text,
'asyncio.TimeoutError': timeout_text,
'httpx.TimeoutException': timeout_text,
'httpx.ConnectTimeout': timeout_text,
'httpx.ReadTimeout': timeout_text,
'httpx.WriteTimeout': timeout_text,
'httpx.HTTPStatusError': gettext('HTTP error'),
'httpx.ConnectError': gettext("HTTP connection error"),
'httpx.RemoteProtocolError': http_protocol_error_text,
'httpx.LocalProtocolError': http_protocol_error_text,
'httpx.ProtocolError': http_protocol_error_text,
'httpx.ReadError': network_error_text,
'httpx.WriteError': network_error_text,
'httpx.ProxyError': gettext("proxy error"),
'searx.exceptions.SearxEngineCaptchaException': gettext("CAPTCHA"),
'searx.exceptions.SearxEngineTooManyRequestsException': gettext("too many requests"),
'searx.exceptions.SearxEngineAccessDeniedException': gettext("access denied"),
'searx.exceptions.SearxEngineAPIException': gettext("server API error"),
'searx.exceptions.SearxEngineXPathException': parsing_error_text,
'KeyError': parsing_error_text,
'json.decoder.JSONDecodeError': parsing_error_text,
'lxml.etree.ParserError': parsing_error_text,
'ssl.SSLCertVerificationError': ssl_cert_error_text, # for Python > 3.7
'ssl.CertificateError': ssl_cert_error_text, # for Python 3.7
}
class ExtendedRequest(flask.Request):
"""This class is never initialized and only used for type checking."""
preferences: Preferences
errors: List[str]
user_plugins: List[Plugin]
form: Dict[str, str]
start_time: float
render_time: float
timings: List[Timing]
request = typing.cast(ExtendedRequest, flask.request)
def get_locale():
locale = localeselector()
logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale)
return locale
babel = Babel(app, locale_selector=get_locale)
def _get_browser_language(req, lang_list):
for lang in req.headers.get("Accept-Language", "en").split(","):
if ';' in lang:
lang = lang.split(';')[0]
if '-' in lang:
lang_parts = lang.split('-')
lang = "{}-{}".format(lang_parts[0], lang_parts[-1].upper())
locale = match_language(lang, lang_list, fallback=None)
if locale is not None:
return locale
return 'en'
def _get_locale_rfc5646(locale):
"""Get locale name for <html lang="...">
Chrom* browsers don't detect the language when there is a subtag (ie a territory).
For example "zh-TW" is detected but not "zh-Hant-TW".
This function returns a locale without the subtag.
"""
parts = locale.split('-')
return parts[0].lower() + '-' + parts[-1].upper()
# code-highlighter
@app.template_filter('code_highlighter')
def code_highlighter(codelines, language=None):
if not language:
language = 'text'
try:
# find lexer by programming language
lexer = get_lexer_by_name(language, stripall=True)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
# if lexer is not found, using default one
lexer = get_lexer_by_name('text', stripall=True)
html_code = ''
tmp_code = ''
last_line = None
line_code_start = None
# parse lines
for line, code in codelines:
if not last_line:
line_code_start = line
# new codeblock is detected
if last_line is not None and last_line + 1 != line:
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
# reset conditions for next codepart
tmp_code = ''
line_code_start = line
# add codepart
tmp_code += code + '\n'
# update line
last_line = line
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
return html_code
def get_result_template(theme_name: str, template_name: str):
themed_path = theme_name + '/result_templates/' + template_name
if themed_path in result_templates:
return themed_path
return 'result_templates/' + template_name
def custom_url_for(endpoint: str, **values):
suffix = ""
if endpoint == 'static' and values.get('filename'):
file_hash = static_files.get(values['filename'])
if not file_hash:
# try file in the current theme
theme_name = request.preferences.get_value('theme')
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
file_hash = static_files.get(filename_with_theme)
if file_hash:
values['filename'] = filename_with_theme
if get_setting('ui.static_use_hash') and file_hash:
suffix = "?" + file_hash
if endpoint == 'info' and 'locale' not in values:
locale = request.preferences.get_value('locale')
if _INFO_PAGES.get_page(values['pagename'], locale) is None:
locale = _INFO_PAGES.locale_default
values['locale'] = locale
return url_for(endpoint, **values) + suffix
def morty_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not settings['result_proxy']['url']:
return url
url_params = dict(mortyurl=url)
if settings['result_proxy']['key']:
url_params['mortyhash'] = hmac.new(settings['result_proxy']['key'], url.encode(), hashlib.sha256).hexdigest()
return '{0}?{1}'.format(settings['result_proxy']['url'], urlencode(url_params))
def image_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not request.preferences.get_value('image_proxy'):
return url
if url.startswith('data:image/'):
# 50 is an arbitrary number to get only the beginning of the image.
partial_base64 = url[len('data:image/') : 50].split(';')
if (
len(partial_base64) == 2
and partial_base64[0] in ['gif', 'png', 'jpeg', 'pjpeg', 'webp', 'tiff', 'bmp']
and partial_base64[1].startswith('base64,')
):
return url
return None
if settings['result_proxy']['url']:
return morty_proxify(url)
h = new_hmac(settings['server']['secret_key'], url.encode())
return '{0}?{1}'.format(url_for('image_proxy'), urlencode(dict(url=url.encode(), h=h)))
def get_translations():
return {
# when there is autocompletion
'no_item_found': gettext('No item found'),
# /preferences: the source of the engine description (wikipedata, wikidata, website)
'Source': gettext('Source'),
# infinite scroll
'error_loading_next_page': gettext('Error loading the next page'),
}
def _get_enable_categories(all_categories: Iterable[str]):
disabled_engines = request.preferences.engines.get_disabled()
enabled_categories = set(
# pylint: disable=consider-using-dict-items
category
for engine_name in engines
for category in engines[engine_name].categories
if (engine_name, category) not in disabled_engines
)
return [x for x in all_categories if x in enabled_categories]
def get_pretty_url(parsed_url: urllib.parse.ParseResult):
path = parsed_url.path
path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
path = unquote(path.replace("/", " "))
return [parsed_url.scheme + "://" + parsed_url.netloc, path]
def get_client_settings():
req_pref = request.preferences
return {
'autocomplete_provider': req_pref.get_value('autocomplete'),
'autocomplete_min': get_setting('search.autocomplete_min'),
'http_method': req_pref.get_value('method'),
'infinite_scroll': req_pref.get_value('infinite_scroll'),
'translations': get_translations(),
'search_on_category_select': req_pref.plugins.choices['searx.plugins.search_on_category_select'],
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
'theme_static_path': custom_url_for('static', filename='themes/simple'),
}
def render(template_name: str, **kwargs):
kwargs['client_settings'] = str(
base64.b64encode(
bytes(
json.dumps(get_client_settings()),
encoding='utf-8',
)
),
encoding='utf-8',
)
# values from the HTTP requests
kwargs['endpoint'] = 'results' if 'q' in kwargs else request.endpoint
kwargs['cookies'] = request.cookies
kwargs['errors'] = request.errors
# values from the preferences
kwargs['preferences'] = request.preferences
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN': kwargs['safesearch'] = '1'
kwargs['theme'] = request.preferences.get_value('theme')
kwargs['method'] = request.preferences.get_value('method')
kwargs['categories_as_tabs'] = list(settings['categories_as_tabs'].keys())
kwargs['categories'] = _get_enable_categories(categories.keys())
kwargs['OTHER_CATEGORY'] = OTHER_CATEGORY
# i18n
kwargs['language_codes'] = [l for l in languages if l[0] in settings['search']['languages']]
locale = request.preferences.get_value('locale')
kwargs['locale_rfc5646'] = _get_locale_rfc5646(locale)
if locale in RTL_LOCALES and 'rtl' not in kwargs:
kwargs['rtl'] = True
if 'current_language' not in kwargs:
kwargs['current_language'] = match_language(
request.preferences.get_value('language'), settings['search']['languages']
)
# values from settings
kwargs['search_formats'] = [x for x in settings['search']['formats'] if x != 'html']
kwargs['instance_name'] = get_setting('general.instance_name')
kwargs['searx_version'] = VERSION_STRING
kwargs['searx_git_url'] = GIT_URL
kwargs['enable_metrics'] = get_setting('general.enable_metrics')
kwargs['get_setting'] = get_setting
kwargs['get_pretty_url'] = get_pretty_url
# values from settings: donation_url
donation_url = get_setting('general.donation_url')
if donation_url is True:
donation_url = custom_url_for('info', pagename='donate')
kwargs['donation_url'] = donation_url
# helpers to create links to other pages
kwargs['url_for'] = custom_url_for # override url_for function in templates
kwargs['image_proxify'] = image_proxify
kwargs['proxify'] = morty_proxify if settings['result_proxy']['url'] is not None else None
kwargs['proxify_results'] = settings['result_proxy']['proxify_results']
kwargs['cache_url'] = settings['ui']['cache_url']
kwargs['get_result_template'] = get_result_template
kwargs['doi_resolver'] = get_doi_resolver(request.preferences)
kwargs['opensearch_url'] = (
url_for('opensearch')
+ '?'
+ urlencode(
{
'method': request.preferences.get_value('method'),
'autocomplete': request.preferences.get_value('autocomplete'),
}
)
)
# scripts from plugins
kwargs['scripts'] = set()
for plugin in request.user_plugins:
for script in plugin.js_dependencies:
kwargs['scripts'].add(script)
# styles from plugins
kwargs['styles'] = set()
for plugin in request.user_plugins:
for css in plugin.css_dependencies:
kwargs['styles'].add(css)
start_time = default_timer()
result = render_template('{}/{}'.format(kwargs['theme'], template_name), **kwargs)
request.render_time += default_timer() - start_time # pylint: disable=assigning-non-slot
return result
@app.before_request
def pre_request():
request.start_time = default_timer() # pylint: disable=assigning-non-slot
request.render_time = 0 # pylint: disable=assigning-non-slot
request.timings = [] # pylint: disable=assigning-non-slot
request.errors = [] # pylint: disable=assigning-non-slot
preferences = Preferences(themes, list(categories.keys()), engines, plugins) # pylint: disable=redefined-outer-name
user_agent = request.headers.get('User-Agent', '').lower()
if 'webkit' in user_agent and 'android' in user_agent:
preferences.key_value_settings['method'].value = 'GET'
request.preferences = preferences # pylint: disable=assigning-non-slot
try:
preferences.parse_dict(request.cookies)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings, please edit your preferences'))
# merge GET, POST vars
# request.form
request.form = dict(request.form.items()) # pylint: disable=assigning-non-slot
for k, v in request.args.items():
if k not in request.form:
request.form[k] = v
if request.form.get('preferences'):
preferences.parse_encoded_data(request.form['preferences'])
else:
try:
preferences.parse_dict(request.form)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings'))
# language is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("language"):
language = _get_browser_language(request, settings['search']['languages'])
preferences.parse_dict({"language": language})
logger.debug('set language %s (from browser)', preferences.get_value("language"))
# locale is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("locale"):
locale = _get_browser_language(request, LOCALE_NAMES.keys())
preferences.parse_dict({"locale": locale})
logger.debug('set locale %s (from browser)', preferences.get_value("locale"))
# request.user_plugins
request.user_plugins = [] # pylint: disable=assigning-non-slot
allowed_plugins = preferences.plugins.get_enabled()
disabled_plugins = preferences.plugins.get_disabled()
for plugin in plugins:
if (plugin.default_on and plugin.id not in disabled_plugins) or plugin.id in allowed_plugins:
request.user_plugins.append(plugin)
@app.after_request
def add_default_headers(response: flask.Response):
# set default http headers
for header, value in settings['server']['default_http_headers'].items():
if header in response.headers:
continue
response.headers[header] = value
return response
@app.after_request
def post_request(response: flask.Response):
total_time = default_timer() - request.start_time
timings_all = [
'total;dur=' + str(round(total_time * 1000, 3)),
'render;dur=' + str(round(request.render_time * 1000, 3)),
]
if len(request.timings) > 0:
timings = sorted(request.timings, key=lambda t: t.total)
timings_total = [
'total_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.total * 1000, 3)) for i, t in enumerate(timings)
]
timings_load = [
'load_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.load * 1000, 3))
for i, t in enumerate(timings)
if t.load
]
timings_all = timings_all + timings_total + timings_load
# response.headers.add('Server-Timing', ', '.join(timings_all))
return response
def index_error(output_format: str, error_message: str):
if output_format == 'json':
return Response(json.dumps({'error': error_message}), mimetype='application/json')
if output_format == 'csv':
response = Response('', mimetype='application/csv')
cont_disp = 'attachment;Filename=searx.csv'
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=[],
q=request.form['q'] if 'q' in request.form else '',
number_of_results=0,
error_message=error_message,
)
return Response(response_rss, mimetype='text/xml')
# html
request.errors.append(gettext('search error'))
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
@app.route('/', methods=['GET', 'POST'])
def index():
"""Render index page."""
# redirect to search if there's a query in the request
if request.form.get('q'):
query = ('?' + request.query_string.decode()) if request.query_string else ''
return redirect(url_for('search') + query, 308)
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
current_locale = request.preferences.get_value("locale"),
# fmt: on
)
@app.route('/healthz', methods=['GET'])
def health():
return Response('OK', mimetype='text/plain')
@app.route('/keytext', methods=['POST'])
def keytext():
res = []
text = request.json['text']
tr4s = TextRank4Sentence()
tr4s.analyze(text=text, lower=True, source = 'all_filters')
for item in tr4s.get_key_sentences(num=15):
res.append(item.sentence)
return Response(json.dumps(res), mimetype='application/json')
@app.route('/search', methods=['GET', 'POST'])
def search():
"""Search query in q and return results.
Supported outputs: html, json, csv, rss.
"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# output_format
output_format = request.form.get('format', 'html')
if output_format not in OUTPUT_FORMATS:
output_format = 'html'
if output_format not in settings['search']['formats']:
flask.abort(403)
# check if there is query (not None and not an empty string)
if not request.form.get('q'):
if output_format == 'html':
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
return index_error(output_format, 'No query'), 400
# search
search_query = None
raw_text_query = None
result_container = None
original_search_query = ""
search_type = "搜索网页"
net_search = True
net_search_str = 'true'
prompt = ""
add_system = '[]'
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
add_system = "[{'role':'system','content':'拒绝回复法律、政治、政治人物相关内容'}]"
try:
search_query, raw_text_query, _, _ = get_search_query_from_webapp(request.preferences, request.form)
# search = Search(search_query) # without plugins
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN' and gfw.exists(search_query.query):
return render('404.html'), 404
try:
original_search_query = search_query.query
if "模仿" in search_query.query or "扮演" in search_query.query or "你能" in search_query.query or "请推荐" in search_query.query or "帮我" in search_query.query or "写一段" in search_query.query or "写一个" in search_query.query or "请问" in search_query.query or "请给" in search_query.query or "请你" in search_query.query or "请推荐" in search_query.query or "是谁" in search_query.query or "能帮忙" in search_query.query or "介绍一下" in search_query.query or "为什么" in search_query.query or "什么是" in search_query.query or "有什么" in search_query.query or "怎样" in search_query.query or "给我" in search_query.query or "如何" in search_query.query or "谁是" in search_query.query or "查询" in search_query.query or "告诉我" in search_query.query or "查一下" in search_query.query or "找一个" in search_query.query or "什么样" in search_query.query or "哪个" in search_query.query or "哪些" in search_query.query or "哪一个" in search_query.query or "哪一些" in search_query.query or "啥是" in search_query.query or "为啥" in search_query.query or "怎么" in search_query.query:
if len(search_query.query)>5 and "谁是" in search_query.query:
search_query.query = search_query.query.replace("谁是","")
if len(search_query.query)>5 and "是谁" in search_query.query:
search_query.query = search_query.query.replace("是谁","")
if len(search_query.query)>5 and not "谁是" in search_query.query and not "是谁" in search_query.query:
prompt = search_query.query + "\n对以上问题生成一个Google搜索词\n"
search_type = '任务'
net_search = False
net_search_str = 'false'
elif len(original_search_query)>10:
prompt = "任务:写诗 写故事 写代码 写论文摘要 模仿推特用户 生成搜索广告 回答问题 聊天话题 搜索网页 搜索视频 搜索地图 搜索新闻 查看食谱 搜索商品 写歌词 写论文 模仿名人 翻译语言 摘要文章 讲笑话 做数学题 搜索图片 播放音乐 查看天气\n1.判断是以上任务的哪一个2.判断是否需要联网回答3.给出搜索关键词\n"
prompt = prompt + "提问:" + search_query.query + '答案用json数组例如["写诗","","详细关键词"]来表述'
acts = ['写诗', '写故事', '写代码', '写论文摘要', '模仿推特用户', '生成搜索广告', '回答问题', '聊天话题', '搜索网页', '搜索视频', '搜索地图', '搜索新闻', '查看食谱', '搜索商品', '写歌词', '写论文', '模仿名人', '翻译语言', '摘要文章', '讲笑话', '做数学题', '搜索图片', '播放音乐', '查看天气']
if "今年" in prompt or "今天" in prompt:
now = datetime.datetime.now()
prompt = prompt.replace("今年",now.strftime('%Y年'))
prompt = prompt.replace("今天",now.strftime('%Y年%m月%d'))
gpt = ""
gpt_url = "https://api.openai.com/v1/chat/completions"
gpt_headers = {
"Authorization": "Bearer "+os.environ['GPTKEY'],
"Content-Type": "application/json",
}
gpt_data = {
"model": "gpt-3.5-turbo",
"messages": [{"role":"user","content":prompt}],
"max_tokens": 256,
"temperature": 0.9,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": False
}
gpt_json={}
if prompt and prompt !='' :
gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
gpt_json = gpt_response.json()
if 'choices' in gpt_json:
gpt = gpt_json['choices'][0]['message']['content']
if search_type == '任务':
for word in gpt.split('\n'):
if word != "":
gpt = word.replace("\"","").replace("\'","").replace("","").replace("","").replace("","").replace("","")
break
if gpt!="":
search_query.query = gpt
if 'Google' not in original_search_query and 'google' not in original_search_query and '谷歌' not in original_search_query and ('Google' in search_query.query or 'google' in search_query.query or '谷歌' in search_query.query):
search_query.query=search_query.query.replace("Google","").replace("google","").replace("谷歌","")
else:
gpt_judge = []
for tmpj in gpt.split():
try:
gpt_judge = json.loads(tmpj)
except:pass
if len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='True' or gpt_judge[1]=='true'):
search_query.query = gpt_judge[2]
search_type = gpt_judge[0]
net_search = True
net_search_str = 'true'
elif len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='False' or gpt_judge[1]=='false'):
search_type = gpt_judge[0]
net_search = False
net_search_str = 'false'
except Exception as ee:
logger.exception(ee, exc_info=True)
search = SearchWithPlugins(search_query, request.user_plugins, request) # pylint: disable=redefined-outer-name
result_container = search.search()
except SearxParameterException as e:
logger.exception('search error: SearxParameterException')
return index_error(output_format, e.message), 400
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
return index_error(output_format, gettext('No item found')), 500
# results
results = result_container.get_ordered_results()
number_of_results = result_container.results_number()
if number_of_results < result_container.results_length():
number_of_results = 0
# OPENAI GPT
raws = []
try:
url_pair = []
url_proxy = {}
prompt = ""
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
for res in results:
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
except:pass
for res in results:
if 'engine' in res and res['engine'] == 'twitter':
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
continue
except:pass
if 'url' not in res: continue
if 'title' not in res: continue
if 'content' not in res: continue
if res['content'] == '': continue
new_url = 'https://url'+str(len(url_pair))
url_pair.append(res['url'])
url_proxy[res['url']] = (morty_proxify(res['url'].replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")))
res['title'] = res['title'].replace("التغريدات مع الردود بواسطة","")
res['content'] = res['content'].replace(" "," ")
res['content'] = res['content'].replace("Translate Tweet. ","")
res['content'] = res['content'].replace("Learn more ","")
res['content'] = res['content'].replace("Translate Tweet.","")
res['content'] = res['content'].replace("Retweeted.","Reposted.")
res['content'] = res['content'].replace("Learn more.","")
res['content'] = res['content'].replace("Show replies.","")
res['content'] = res['content'].replace("See new Tweets. ","")
if "作者简介:金融学客座教授,硕士生导师" in res['content']: res['content']=res['title']
res['content'] = res['content'].replace("You're unable to view this Tweet because this account owner limits who can view their Tweets.","Private Tweet.")
res['content'] = res['content'].replace("Twitter for Android · ","")
res['content'] = res['content'].replace("This Tweet was deleted by the Tweet author.","Deleted Tweet.")
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
tmp_prompt = '运算结果:'+ res['content'] +'\n\n'
else: tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
raws.insert(0,tmp_prompt)
else: raws.append(tmp_prompt)
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
if prompt != "":
gpt = ""
gpt_url = "https://search.kg/completions"
gpt_headers = {
"Content-Type": "application/json",
}
if '搜索' not in search_type:
gpt_data = {
"messages": [{'role':'system','content':'如果使用了网络知识,在文中用(网址)标注对应内容来源链接'},{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的网络知识"},{'role':'user','content':original_search_query}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
else:
gpt_data = {
"messages": [{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的搜索结果"},{'role':'user','content':"总结简报,在文中用(网址)标注对应内容来源链接"}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
gpt = json.dumps({'data':gpt_data, 'url_pair':url_pair, 'url_proxy':url_proxy, 'raws': raws})
gpt = '<div id="chat_section"><div id="chat_intro"></div><div id="chat"></div>' + r'''
<div id="modal" class="modal">
<div id="modal-title" class="modal-title">网页速览<span>
<a id="closebtn" href="javascript:void(0);" class="close-modal closebtn"></a></span>
</div>
<div class="modal-input-content" id="modal-input-content">
<div id="iframe-wrapper">
<iframe sandbox="allow-same-origin allow-forms allow-scripts"></iframe>
<div id='readability-reader' style='display:none'></div>
</div>
</div>
</div>
<script>
// 1. 获取元素
var modal = document.querySelector('.modal');
var closeBtn = document.querySelector('#closebtn');
var title = document.querySelector('#modal-title');
// 2. 点击弹出层这个链接 link 让mask 和modal 显示出来
// 3. 点击 closeBtn 就隐藏 mask 和 modal
closeBtn.addEventListener('click', function () {
modal.style.display = 'none';
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_talk"))
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_continue"))
document.querySelector("#readability-reader").innerHTML = '';
try{iframe.removeAttribute('src');}catch(e){}
})
// 4. 开始拖拽
// (1) 当我们鼠标按下, 就获得鼠标在盒子内的坐标
modal.addEventListener('mousedown', function (e) {
var x = e.pageX - modal.offsetLeft;
var y = e.pageY - modal.offsetTop;
// (2) 鼠标移动的时候,把鼠标在页面中的坐标,减去 鼠标在盒子内的坐标就是模态框的left和top值
document.addEventListener('mousemove', move)
function move(e) {
modal.style.left = e.pageX - x + 'px';
modal.style.top = e.pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('mouseup', function () {
document.removeEventListener('mousemove', move);
})
})
modal.addEventListener('touchstart', function (e) {
var x = e.touches[0].pageX - modal.offsetLeft;
var y = e.touches[0].pageY - modal.offsetTop;
document.addEventListener('touchmove', move)
function move(e) {
modal.style.left = e.touches[0].pageX - x + 'px';
modal.style.top = e.touches[0].pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('touchend', function () {
document.removeEventListener('touchmove ', move);
})
})
</script>
<style>
.modal-header {
width: 100%;
text-align: center;
height: 30px;
font-size: 24px;
line-height: 30px;
}
.modal {
display: none;
width: 45%;
position: fixed;
left: 32%;
top: 50%;
background: var(--color-header-background);
z-index: 10001;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 50em) {
.modal {
width: 85%;
left: 50%;
top: 50%;
}
}
.modal-title {
width: 100%;
margin: 10px 0px 0px 0px;
text-align: center;
line-height: 40px;
height: 40px;
font-size: 18px;
position: relative;
cursor: move;
}
.modal-button {
width: 50%;
margin: 30px auto 0px auto;
line-height: 40px;
font-size: 14px;
border: #ebebeb 1px solid;
text-align: center;
}
.modal-button a {
display: block;
}
.modal-input input.list-input {
float: left;
line-height: 35px;
height: 35px;
width: 350px;
border: #ebebeb 1px solid;
text-indent: 5px;
}
.modal-input {
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.modal-input label {
float: left;
width: 90px;
padding-right: 10px;
text-align: right;
line-height: 35px;
height: 35px;
font-size: 14px;
}
.modal-title span {
position: absolute;
right: 0px;
top: -15px;
}
#chat_talk {
width: 100%;
max-height: 30vh;
position: relative;
overflow: scroll;
padding-top: 1em;
}
#iframe-wrapper {
width: 100%;
height: 40vh;
position: relative;
overflow: hidden; /* 防止滚动条溢出 */
}
#iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
#iframe-wrapper div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
.closebtn{
width: 25px;
height: 25px;
display: inline-block;
cursor: pointer;
position: absolute;
top: 15px;
right: 15px;
}
.closebtn::before, .closebtn::after {
content: '';
position: absolute;
height: 2px;
width: 20px;
top: 12px;
right: 2px;
background: #999;
cursor: pointer;
}
.closebtn::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.closebtn::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
</style>
<div id="chat_talk"></div>
<div id="chat_continue" style="display:none">
<div id="chat_more" style="display:none"></div>
<hr>
<textarea id="chat_input" style="margin: auto;display: block;background: rgb(209 219 250 / 30%);outline: 0px;color: var(--color-search-font);font-size: 1.2rem;border-radius: 3px;border: none;height: 3em;resize: vertical;width: 75%;"></textarea>
<button id="chat_send" onclick='send_chat()' style="
width: 75%;
display: block;
margin: auto;
margin-top: .8em;
border-radius: .8rem;
height: 2em;
background: linear-gradient(81.62deg, #2870ea 8.72%, #1b4aef 85.01%);
color: #fff;
border: none;
cursor: pointer;
">发送</button>
</div>
</div>
<style>
.chat_answer {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 3em 0.5em 0;
padding: 8px 12px;
color: white;
background: rgba(27,74,239,0.7);
}
.chat_question {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 0 0.5em 3em;
padding: 8px 12px;
color: black;
background: rgba(245, 245, 245, 0.7);
}
button.btn_more {
min-height: 30px;
text-align: left;
background: rgb(209, 219, 250);
border-radius: 8px;
overflow: hidden;
box-sizing: border-box;
padding: 0px 12px;
margin: 1px;
cursor: pointer;
font-weight: 500;
line-height: 28px;
border: 1px solid rgb(18, 59, 182);
color: rgb(18, 59, 182);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: rgba(0, 0, 0, 0.3);
box-shadow: rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(17, 16, 16, 0.13);
-webkit-box-shadow: rgba(0, 0, 0, 0.9);
box-shadow: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(211, 173, 209, 0.4);
}
</style>
''' + '<div id="prompt" style="display:none">' + (base64.b64encode(gpt.encode("utf-8")).decode('UTF-8') ) + '</div>'
# gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
# gpt_json = gpt_response.json()
# if 'choices' in gpt_json:
# gpt = gpt_json['choices'][0]['text']
# gpt = gpt.replace("简报:","").replace("简报:","")
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("https://url"+str(i),url_pair[i])
# rgpt = gpt
if gpt and gpt!="":
if original_search_query != search_query.query:
gpt = "Search 为您搜索:" + search_query.query + "\n\n" + gpt
gpt = gpt + r'''<style>
a.footnote {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 600;
vertical-align: top;
top: 0px;
margin: 1px 1px;
min-width: 14px;
height: 14px;
border-radius: 3px;
color: rgb(18, 59, 182);
background: rgb(209, 219, 250);
outline: transparent solid 1px;
}
</style>
<script src="/static/themes/magi/Readability-readerable.js"></script>
<script src="/static/themes/magi/Readability.js"></script>
<script src="/static/themes/magi/markdown.js"></script>
<script src="/static/themes/magi/stop_words.js"></script>
<script>
const original_search_query = "''' + original_search_query.replace('"',"") + r'''"
const search_queryquery = "''' + search_query.query.replace('"',"") + r'''"
const search_type = "''' + search_type + r'''"
const net_search = ''' + net_search_str + r'''
const add_system = ''' + add_system +r'''
</script><script>
const _0xeae0e=_0x2717,_0x122511=_0x2717,_0x1317da=_0x2717,_0x44cb5b=_0x2717,_0x4e848e=_0x2717;(function(_0xcf94e,_0x3b6cb9){const _0x4af03b=_0x2717,_0x3c17b7=_0x2717,_0x20997c=_0x2717,_0x2dea49=_0x2717,_0x135dc9=_0x2717,_0x3001ee=_0xcf94e();while(!![]){try{const _0x7327e9=-parseInt(_0x4af03b(0x927))/(-0x1*-0x2ad+-0x2428+-0x4*-0x85f)+parseInt(_0x3c17b7(0xc16))/(0x1*0xe61+-0x22a+0x271*-0x5)+-parseInt(_0x20997c(0x49b))/(-0xaa3*0x1+-0x2d7*0x3+0x132b)*(-parseInt(_0x20997c(0x2c5))/(-0x22fa+-0x2d*0x60+0x2*0x19ef))+-parseInt(_0x3c17b7(0xbb9))/(-0x65a*-0x2+-0x1319+0x66a)*(parseInt(_0x2dea49(0xa9f))/(0x184a+-0x538+-0x130c))+-parseInt(_0x4af03b(0xcd0))/(0xd*0x28d+0x283*0x1+-0x23a5)+-parseInt(_0x3c17b7(0x628))/(0x1b8*0xf+-0x34+-0x6*0x442)+-parseInt(_0x3c17b7(0x345))/(0x223c+-0xa6a+0x17c9*-0x1)*(-parseInt(_0x135dc9(0x731))/(-0x46f+-0x1*-0x1ae+0x2cb));if(_0x7327e9===_0x3b6cb9)break;else _0x3001ee['push'](_0x3001ee['shift']());}catch(_0x4347ae){_0x3001ee['push'](_0x3001ee['shift']());}}}(_0x5055,-0x75d*-0x22+-0x5b587+0x80bd0));function proxify(){const _0x4ab6ee=_0x2717,_0xeb16d5=_0x2717,_0x49ee98=_0x2717,_0x34a281=_0x2717,_0x4a57a4=_0x2717,_0x31064c={'SFlVM':function(_0x2c2495,_0x19ab9d){return _0x2c2495!==_0x19ab9d;},'twaEu':_0x4ab6ee(0x2e8),'xNJXD':function(_0x1c5cb4,_0x389c5a,_0x2430fd){return _0x1c5cb4(_0x389c5a,_0x2430fd);},'shHYU':function(_0x2eb672,_0x38eded){return _0x2eb672+_0x38eded;},'dJzQW':function(_0x2d529b,_0x3157d5){return _0x2d529b>=_0x3157d5;},'fwIkW':function(_0x366d01,_0x3da68b){return _0x366d01===_0x3da68b;},'xXwjo':_0xeb16d5(0x43d),'zPxZn':_0xeb16d5(0x474)+_0x49ee98(0x9e7),'rYmPy':function(_0xf22a29,_0x4c3580){return _0xf22a29(_0x4c3580);},'ymZTw':function(_0x1e8e9c,_0x3eb7e9){return _0x1e8e9c+_0x3eb7e9;},'QZQQX':_0xeb16d5(0x5c2),'lqDAd':function(_0x47eaf7,_0x40f4db){return _0x47eaf7+_0x40f4db;},'RqjCA':function(_0x29841e,_0x27f8f9){return _0x29841e(_0x27f8f9);},'tFBse':function(_0x53772d,_0x4c892a){return _0x53772d+_0x4c892a;},'VZIvx':function(_0x808b79,_0xf8e230){return _0x808b79(_0xf8e230);},'rjjYc':function(_0x2c595f,_0x7c2e83){return _0x2c595f+_0x7c2e83;},'SkEoZ':function(_0x2c42cf,_0x1b96a6){return _0x2c42cf(_0x1b96a6);},'TlAtM':function(_0x2353dd,_0x7fbd0a){return _0x2353dd+_0x7fbd0a;},'zDRmG':_0x34a281(0x541)};for(let _0x341b59=Object[_0x49ee98(0x1f2)](prompt[_0x49ee98(0x279)+_0x4ab6ee(0xa6e)])[_0x34a281(0x7c2)+'h'];_0x31064c[_0xeb16d5(0x810)](_0x341b59,0x627*0x2+-0x2531+0x18e3);--_0x341b59){if(_0x31064c[_0x4a57a4(0x6d6)](_0x31064c[_0xeb16d5(0x611)],_0x31064c[_0x34a281(0x611)])){if(document[_0x49ee98(0x938)+_0x49ee98(0x502)+_0x34a281(0x1dd)](_0x31064c[_0x49ee98(0xb04)](_0x31064c[_0x34a281(0x246)],_0x31064c[_0x34a281(0xcb1)](String,_0x31064c[_0xeb16d5(0xa56)](_0x341b59,-0xc1a*0x2+0xf77+-0x6*-0x175))))){if(_0x31064c[_0x4ab6ee(0x365)](_0x31064c[_0x49ee98(0x4bd)],_0x31064c[_0x4a57a4(0x4bd)]))_0x113dc7=_0x30f62b[_0x4ab6ee(0xb69)+_0x4a57a4(0x5c6)+'t'],_0x5b70b1[_0x4a57a4(0x33c)+'e']();else{let _0x466ec6=document[_0x49ee98(0x938)+_0x4ab6ee(0x502)+_0x4ab6ee(0x1dd)](_0x31064c[_0x4a57a4(0x252)](_0x31064c[_0x4a57a4(0x246)],_0x31064c[_0x4ab6ee(0x1e5)](String,_0x31064c[_0x4a57a4(0xb04)](_0x341b59,-0x17a*-0x1+0x192f*0x1+0xd54*-0x2))))[_0x4a57a4(0x541)];if(!_0x466ec6||!prompt[_0x4a57a4(0x279)+_0xeb16d5(0xa6e)][_0x466ec6])continue;const _0x44cc2d=prompt[_0x4ab6ee(0x279)+_0x4a57a4(0xa6e)][_0x466ec6];document[_0x49ee98(0x938)+_0x4ab6ee(0x502)+_0xeb16d5(0x1dd)](_0x31064c[_0x4ab6ee(0x498)](_0x31064c[_0x4ab6ee(0x246)],_0x31064c[_0x34a281(0x7f7)](String,_0x31064c[_0x49ee98(0x94d)](_0x341b59,0x14ab*-0x1+0x1f36+-0x545*0x2))))[_0x49ee98(0xa97)+'ck']=function(){const _0x10b3c8=_0x4ab6ee,_0x3e69be=_0xeb16d5,_0x28e27b=_0x4ab6ee,_0x25f62=_0x49ee98,_0x22f26e=_0x49ee98;_0x31064c[_0x10b3c8(0x365)](_0x31064c[_0x3e69be(0xbc2)],_0x31064c[_0x10b3c8(0xbc2)])?_0x1b4a2c='':_0x31064c[_0x25f62(0x617)](modal_open,_0x44cc2d,_0x31064c[_0x10b3c8(0xb04)](_0x341b59,-0x17a6+-0xb45+-0x1*-0x22ec));},document[_0x49ee98(0x938)+_0x4a57a4(0x502)+_0xeb16d5(0x1dd)](_0x31064c[_0x4ab6ee(0xa56)](_0x31064c[_0xeb16d5(0x246)],_0x31064c[_0x4ab6ee(0xc06)](String,_0x31064c[_0x4ab6ee(0x4a4)](_0x341b59,-0x1*-0x13ac+0x436*-0x7+0x9cf))))[_0x49ee98(0x33c)+_0x4a57a4(0x8f4)+_0xeb16d5(0x385)](_0x31064c[_0x34a281(0x410)]),document[_0x4ab6ee(0x938)+_0x49ee98(0x502)+_0x34a281(0x1dd)](_0x31064c[_0xeb16d5(0x498)](_0x31064c[_0x4ab6ee(0x246)],_0x31064c[_0x4ab6ee(0x7f7)](String,_0x31064c[_0x4a57a4(0x94d)](_0x341b59,0xd*0xb7+-0x2*-0x1018+-0x1*0x297a))))[_0x49ee98(0x33c)+_0x4ab6ee(0x8f4)+_0x34a281(0x385)]('id');}}}else _0x3b1c47[_0x4ab6ee(0x57f)]();}}const _load_wasm_jieba=async()=>{const _0x2f088a=_0x2717,_0x4e6c8c=_0x2717,_0x351fdb=_0x2717,_0x12a45c=_0x2717,_0x3dae09=_0x2717,_0x5c87a7={'JCFnr':function(_0x14588f,_0x533f0c){return _0x14588f!==_0x533f0c;},'FOeZH':_0x2f088a(0x697)+_0x2f088a(0x22e)+_0x351fdb(0xaaa)+_0x12a45c(0x5e7)+_0x2f088a(0xc95)+_0x4e6c8c(0xac5)+_0x4e6c8c(0x860)+'s','awtVq':function(_0x4fa996){return _0x4fa996();}};if(_0x5c87a7[_0x4e6c8c(0xb37)](window[_0x12a45c(0xbdc)],undefined))return;const {default:_0x3421e9,cut:_0x1eaa1f}=await import(_0x5c87a7[_0x3dae09(0xcd1)]),_0x46d3ed=await _0x5c87a7[_0x4e6c8c(0x427)](_0x3421e9);return window[_0x2f088a(0xbdc)]=_0x1eaa1f,_0x46d3ed;};_load_wasm_jieba();function cosineSimilarity(_0x248ace,_0xd40289){const _0x2f352f=_0x2717,_0x135c0e=_0x2717,_0x47d742=_0x2717,_0x15146d=_0x2717,_0x20bc16=_0x2717,_0x3a6336={'yfjtM':function(_0x141231,_0x2156df){return _0x141231(_0x2156df);},'wtcwk':_0x2f352f(0x33d)+'ss','sFVOv':function(_0xbf9822,_0x130e18){return _0xbf9822+_0x130e18;},'aBdgh':_0x2f352f(0x676)+'es','HSoKP':function(_0x5db6ba,_0x4c9aa1,_0x77e7be){return _0x5db6ba(_0x4c9aa1,_0x77e7be);},'UHtSA':function(_0x4fb0a5,_0x4b03a8,_0x23407f){return _0x4fb0a5(_0x4b03a8,_0x23407f);},'lgQrX':function(_0x53c892,_0x2cc4f6){return _0x53c892!==_0x2cc4f6;},'isfPd':_0x47d742(0x7ce),'WdVbc':function(_0x554ecd,_0x1263e2){return _0x554ecd===_0x1263e2;},'fPKUT':_0x2f352f(0x693),'vcJKL':_0x135c0e(0x74b),'BQeJs':_0x135c0e(0x234),'WYSvP':_0x15146d(0x6d4),'OoRNH':_0x2f352f(0x834),'jylly':_0x20bc16(0xb12),'jgoYY':function(_0x314b21,_0x19e98d){return _0x314b21*_0x19e98d;},'uEjAm':function(_0x1a5832,_0x3a8847){return _0x1a5832**_0x3a8847;},'jdvza':function(_0x43ddc7,_0x3a4fbe){return _0x43ddc7**_0x3a4fbe;},'SOHnD':function(_0x51c5cc,_0x472218){return _0x51c5cc/_0x472218;}};keywordList=_0x3a6336[_0x2f352f(0xa10)](cut,_0x248ace[_0x47d742(0x7df)+_0x47d742(0x72a)+'e'](),!![]),keywordList=keywordList[_0x47d742(0x5d2)+'r'](_0x5c97c4=>!stop_words[_0x47d742(0xbbe)+_0x2f352f(0x714)](_0x5c97c4)),sentenceList=_0x3a6336[_0x15146d(0x519)](cut,_0xd40289[_0x15146d(0x7df)+_0x20bc16(0x72a)+'e'](),!![]),sentenceList=sentenceList[_0x15146d(0x5d2)+'r'](_0x515af7=>!stop_words[_0x20bc16(0xbbe)+_0x20bc16(0x714)](_0x515af7));const _0x587cf0=new Set(keywordList[_0x47d742(0x46c)+'t'](sentenceList)),_0x56b0e0={},_0x384c90={};for(const _0x1f1d0c of _0x587cf0){_0x3a6336[_0x20bc16(0x87a)](_0x3a6336[_0x20bc16(0x9ee)],_0x3a6336[_0x15146d(0x9ee)])?_0x3a6336[_0x20bc16(0x905)](_0xf37308,_0x3a6336[_0x2f352f(0x239)]):(_0x56b0e0[_0x1f1d0c]=-0xfbc+-0x1c87+-0x9*-0x4eb,_0x384c90[_0x1f1d0c]=-0x829*0x1+-0x1e73+-0x161*-0x1c);}for(const _0x8bb92f of keywordList){if(_0x3a6336[_0x2f352f(0x39b)](_0x3a6336[_0x135c0e(0x3e2)],_0x3a6336[_0x47d742(0xaa5)]))try{_0x49ee1d=_0x36aca5[_0x15146d(0x245)](_0x3a6336[_0x135c0e(0x3f7)](_0x469aae,_0x23a5e2))[_0x3a6336[_0x47d742(0x50b)]],_0x124bf4='';}catch(_0x55d4f3){_0x414df7=_0x3f2758[_0x47d742(0x245)](_0x2ac44b)[_0x3a6336[_0x47d742(0x50b)]],_0x35a0f5='';}else _0x56b0e0[_0x8bb92f]++;}for(const _0x30c451 of sentenceList){_0x3a6336[_0x2f352f(0x39b)](_0x3a6336[_0x2f352f(0x298)],_0x3a6336[_0x2f352f(0xa91)])?_0x361955+=_0x276562:_0x384c90[_0x30c451]++;}let _0x224ca1=0xef6+-0x215a+0x1*0x1264,_0x4ab509=-0x1*0x2263+0xf58+0x130b,_0x3cbfe3=-0x2e0+-0x1a*-0x6+0x244;for(const _0x303edc of _0x587cf0){_0x3a6336[_0x135c0e(0x87a)](_0x3a6336[_0x47d742(0x5f3)],_0x3a6336[_0x2f352f(0x9ff)])?(_0x224ca1+=_0x3a6336[_0x135c0e(0x2b0)](_0x56b0e0[_0x303edc],_0x384c90[_0x303edc]),_0x4ab509+=_0x3a6336[_0x135c0e(0x33e)](_0x56b0e0[_0x303edc],0x20*-0x7f+-0x21b1+0x3193*0x1),_0x3cbfe3+=_0x3a6336[_0x15146d(0x5a3)](_0x384c90[_0x303edc],0x4d*-0xe+-0x1a4e+-0xf43*-0x2)):_0x148db5+=_0x2aab32[-0x1*-0x1cd+0x47*0x64+-0x1d89][_0x15146d(0x494)][_0x15146d(0x8bd)+'nt'];}_0x4ab509=Math[_0x2f352f(0x721)](_0x4ab509),_0x3cbfe3=Math[_0x15146d(0x721)](_0x3cbfe3);const _0x436107=_0x3a6336[_0x15146d(0x5f1)](_0x224ca1,_0x3a6336[_0x2f352f(0x2b0)](_0x4ab509,_0x3cbfe3));return _0x436107;}let modalele=[],keytextres=[],fulltext=[],article,sentences=[];function modal_open(_0x41b825,_0x5abfee){const _0x164a08=_0x2717,_0x3aebf8=_0x2717,_0x5c43b9=_0x2717,_0x1e123d=_0x2717,_0x29ea5a=_0x2717,_0x281aaf={'CrXUd':function(_0x58d837,_0x34da7c){return _0x58d837+_0x34da7c;},'uwHAR':function(_0x537566,_0x528476){return _0x537566(_0x528476);},'mFJXh':function(_0x4b7e38,_0x47bef2){return _0x4b7e38+_0x47bef2;},'DdzuK':function(_0x33466e,_0x53b1f7){return _0x33466e+_0x53b1f7;},'OJxvS':_0x164a08(0xa01)+_0x164a08(0x25f)+_0x3aebf8(0x8be)+_0x3aebf8(0xaca),'nvLCb':_0x164a08(0x3d6)+_0x164a08(0xcc5)+_0x29ea5a(0x96e)+_0x164a08(0x670)+_0x164a08(0x4fd)+_0x3aebf8(0x92c)+'\x20)','BHbvH':function(_0x28fbc6,_0x5a3a61){return _0x28fbc6===_0x5a3a61;},'fbtbU':_0x164a08(0x5e5),'Qirhy':_0x5c43b9(0x92b),'axsZI':_0x29ea5a(0x33d)+'ss','byNwB':_0x3aebf8(0x9c9),'XjcaZ':_0x164a08(0xbbc),'JUfuj':function(_0x2d1183,_0x3a5b5a){return _0x2d1183(_0x3a5b5a);},'MoQQw':function(_0x89d66,_0x200c2f){return _0x89d66+_0x200c2f;},'VIcuz':_0x164a08(0x676)+'es','uVkJM':function(_0x234109,_0x519803){return _0x234109!==_0x519803;},'YJpeh':_0x164a08(0x93f),'XWpQg':_0x5c43b9(0x4ad)+_0x29ea5a(0x644)+_0x5c43b9(0x1ce)+_0x29ea5a(0x295)+_0x29ea5a(0x756),'lCPWb':function(_0x47a228,_0x23e4db){return _0x47a228===_0x23e4db;},'COIiR':_0x3aebf8(0xc07),'fZiUP':_0x3aebf8(0x813)+'d','fGBSQ':_0x5c43b9(0xbc4),'eauTJ':_0x3aebf8(0xc23),'RXuxv':function(_0xa5034d,_0xaea60c){return _0xa5034d*_0xaea60c;},'xfBpv':function(_0x404f53,_0x35f331){return _0x404f53**_0x35f331;},'sJTmA':function(_0x3e856b,_0x1ff59b){return _0x3e856b(_0x1ff59b);},'kpyuj':function(_0x4e7071,_0x3040a5){return _0x4e7071+_0x3040a5;},'duHuw':function(_0x1c09bf){return _0x1c09bf();},'aZezN':_0x5c43b9(0x97a),'yZuiJ':_0x5c43b9(0x66c),'QQZdK':function(_0x52fc81,_0x57b7f6){return _0x52fc81>_0x57b7f6;},'VaNLS':function(_0xa32ad8,_0x103034){return _0xa32ad8(_0x103034);},'eHgns':_0x1e123d(0x6c0)+_0x3aebf8(0x2dd),'gROtJ':function(_0x3506c7,_0x32c659){return _0x3506c7+_0x32c659;},'LSZPx':_0x3aebf8(0x6ba)+_0x3aebf8(0x464)+_0x164a08(0x966)+_0x5c43b9(0x7f4)+_0x29ea5a(0x1cc)+_0x29ea5a(0xa97)+_0x5c43b9(0xcc3)+_0x164a08(0x70f)+_0x3aebf8(0xa2f)+_0x29ea5a(0x4ba)+_0x164a08(0x4b6),'QfsSp':_0x5c43b9(0x2fe)+_0x5c43b9(0x4ab),'zTQdD':function(_0x44c4eb,_0x41335d){return _0x44c4eb!==_0x41335d;},'SjSkZ':_0x1e123d(0xbb1),'DBJVp':_0x3aebf8(0x3c7),'cwIam':_0x1e123d(0x4b8),'rDnWD':_0x5c43b9(0x886),'CMzuK':function(_0x5724e5,_0x40f9a3){return _0x5724e5+_0x40f9a3;},'kSGTJ':_0x5c43b9(0x6c0),'HSgyT':_0x5c43b9(0xc53),'ZXtwL':_0x1e123d(0xcf2)+'','LoAvn':_0x29ea5a(0x17b)+_0x164a08(0xcd6)+_0x1e123d(0x232)+_0x164a08(0x52c)+_0x5c43b9(0x3ba)+_0x164a08(0x411)+_0x29ea5a(0x8ef)+_0x5c43b9(0x19d)+_0x3aebf8(0x738)+_0x1e123d(0x6fc)+_0x3aebf8(0x9fc)+_0x164a08(0x640)+_0x5c43b9(0x9a5),'xeIeX':function(_0x2b47df,_0x497bce){return _0x2b47df!=_0x497bce;},'FsaAL':function(_0x374733,_0x26d969,_0x322351){return _0x374733(_0x26d969,_0x322351);},'qunnY':_0x5c43b9(0x31e)+_0x164a08(0x78a)+_0x5c43b9(0x586)+_0x164a08(0x688)+_0x164a08(0x977)+_0x29ea5a(0x798),'icama':function(_0x45c4c9,_0x503a41){return _0x45c4c9-_0x503a41;},'QErdo':function(_0x34d92f,_0x48ea82){return _0x34d92f<=_0x48ea82;},'lnUBZ':function(_0x3c9891,_0x2a1832){return _0x3c9891<_0x2a1832;},'KmuvU':_0x1e123d(0x215),'HNwRY':_0x29ea5a(0x8cb),'IxaKC':_0x164a08(0x7b9),'VWdwl':_0x164a08(0x536),'nUQnz':_0x29ea5a(0x6c0)+_0x5c43b9(0xa25),'vSCrC':function(_0x4bce8a,_0x114b48){return _0x4bce8a>_0x114b48;},'AaDDP':function(_0x37cc5a,_0x203683){return _0x37cc5a==_0x203683;},'rfRjr':_0x5c43b9(0x892)+']','FcnEU':_0x1e123d(0x1d7),'WdLVg':_0x29ea5a(0xac4),'hfnRM':_0x164a08(0xa22),'tjJkz':_0x3aebf8(0x1dc),'YbOhM':_0x29ea5a(0x2cb),'ifiUp':_0x164a08(0x225),'QyIMq':_0x5c43b9(0xadc),'bZnYt':_0x3aebf8(0x6c7),'RLdTp':_0x3aebf8(0xc2c),'TUemj':_0x5c43b9(0x423)+'pt','hzDhn':_0x5c43b9(0x47b)+_0x29ea5a(0xb47),'gIgwl':_0x1e123d(0x1c8)+_0x1e123d(0x709)+_0x1e123d(0x926)+_0x3aebf8(0xc72)+_0x164a08(0x5ee),'ztSrQ':_0x3aebf8(0x34d)+'>','dGjzq':_0x29ea5a(0x4d2),'ThcWj':_0x1e123d(0x190),'QFTtj':_0x1e123d(0xc83),'JjaQp':_0x3aebf8(0xaac)+':','SsVrm':function(_0x5e2bb5,_0x34a6fd){return _0x5e2bb5===_0x34a6fd;},'fOEBu':_0x164a08(0xa86),'DtLHX':_0x29ea5a(0x866),'sLnGU':function(_0x329aa0,_0x11c2df){return _0x329aa0(_0x11c2df);},'iwUAV':function(_0x16f734,_0x20d835){return _0x16f734+_0x20d835;},'woZBe':function(_0x2f621f,_0x4bf955){return _0x2f621f+_0x4bf955;},'DFIqU':function(_0x4cca36,_0x40a33b){return _0x4cca36+_0x40a33b;},'EDKuA':_0x1e123d(0xb10),'PRCwg':_0x29ea5a(0x5c7)+'\x0a','QMTcX':function(_0x544579,_0x1e3dab){return _0x544579===_0x1e3dab;},'ttjVe':_0x1e123d(0xb5c),'Ayblg':_0x3aebf8(0x2ea),'nfgnG':function(_0x49e575,_0x1634ac){return _0x49e575<_0x1634ac;},'kNmpq':function(_0x5ce8af,_0x335e14){return _0x5ce8af+_0x335e14;},'QxFCy':_0x1e123d(0x5a0)+'\x0a','nOwyl':function(_0x3cf12c,_0x17448b){return _0x3cf12c!==_0x17448b;},'mGkjK':_0x164a08(0xb81),'BfbpD':_0x164a08(0x8ee),'QYLXV':function(_0x1294b8,_0x1510c9){return _0x1294b8<_0x1510c9;},'HpFlk':function(_0x4f7738,_0x2e54de){return _0x4f7738+_0x2e54de;},'kfZyV':function(_0x3f62b5,_0x217c8c){return _0x3f62b5+_0x217c8c;},'xTPMR':function(_0x504aba,_0x44e70e){return _0x504aba+_0x44e70e;},'mpyPm':_0x3aebf8(0x58c)+'m','TpBAK':_0x3aebf8(0x7c1)+_0x1e123d(0x7c3)+_0x29ea5a(0xb85)+_0x29ea5a(0xba8)+_0x29ea5a(0x4dd)+_0x3aebf8(0xb29)+'何人','KhoNk':_0x164a08(0xb3a)+_0x29ea5a(0x1fb),'oRJNd':_0x1e123d(0x888)+_0x29ea5a(0xc9c)+_0x29ea5a(0x451)+_0x3aebf8(0xb06),'MkSiL':function(_0x211ded,_0x4cd163,_0x5d3b69){return _0x211ded(_0x4cd163,_0x5d3b69);},'UiRqn':function(_0x9133bc){return _0x9133bc();},'btEWq':function(_0x2c10a0,_0x2d813a){return _0x2c10a0+_0x2d813a;},'pAPeY':_0x164a08(0x697)+_0x164a08(0x22e)+_0x29ea5a(0xaaa)+_0x5c43b9(0x5e7)+_0x1e123d(0x235)+_0x29ea5a(0xa3a)+_0x5c43b9(0x64f)+_0x3aebf8(0x737)+'e=','Nwyfz':_0x164a08(0x838),'zMnuS':function(_0x378a42,_0xe1f3f4){return _0x378a42===_0xe1f3f4;},'psnOk':_0x1e123d(0x4db),'wIvrS':_0x29ea5a(0x789),'ZHKlc':_0x3aebf8(0x301),'vTtgr':function(_0xb4d638,_0x21adbe){return _0xb4d638+_0x21adbe;},'GydzY':_0x5c43b9(0x9df)+_0x5c43b9(0xcd7),'WRmWN':_0x3aebf8(0x371),'gXZPS':_0x1e123d(0x1b1)+_0x5c43b9(0x2c1)+_0x1e123d(0x37d)+_0x29ea5a(0xcc4)+_0x5c43b9(0xbdb)+_0x5c43b9(0x503)+_0x5c43b9(0x25a)+_0x1e123d(0xb7f)+_0x29ea5a(0x711)+_0x3aebf8(0x83b)+_0x1e123d(0x8a6)+_0x164a08(0x6cb)+_0x3aebf8(0xc7b),'CMtOt':_0x1e123d(0x27f)+_0x1e123d(0x6f2)+_0x5c43b9(0x859),'FpqnV':_0x3aebf8(0x610)+_0x1e123d(0x3aa)+'rl','xFWND':_0x29ea5a(0x6de)+'rl','wfcZG':_0x29ea5a(0x351)+_0x3aebf8(0x6f2)+_0x5c43b9(0x859),'aOKof':_0x164a08(0x2b7),'DDRBq':_0x3aebf8(0xcb5)+'l','vMEyz':function(_0x5822b0,_0x232f7f){return _0x5822b0+_0x232f7f;},'hzvxc':_0x164a08(0xb3b)+'rl','sBUPH':_0x1e123d(0x3a2)+'rl','QucQJ':_0x1e123d(0x2a9)+_0x3aebf8(0x31e)+_0x29ea5a(0xbae)+'l','fjkWv':function(_0x3a5992,_0x21ebd8){return _0x3a5992+_0x21ebd8;},'vYoFJ':_0x5c43b9(0x933)+'l','jVNXT':_0x164a08(0x96c),'pctEz':_0x3aebf8(0x2a9)+_0x5c43b9(0x962)+_0x3aebf8(0x3aa)+'rl','CqdnH':_0x164a08(0x997)+_0x29ea5a(0x6f2)+_0x164a08(0x859),'NXObu':function(_0x5e9eda,_0x21085f){return _0x5e9eda+_0x21085f;},'PlCgk':function(_0xcb3b31,_0x44f149){return _0xcb3b31(_0x44f149);},'csNvh':_0x29ea5a(0x2a9),'xESOI':_0x3aebf8(0xaa7)+'l','tFnCo':_0x1e123d(0x2a9)+_0x5c43b9(0x61d),'SXYTM':_0x164a08(0x27a),'hNJna':function(_0x615cb1,_0x3b639d){return _0x615cb1+_0x3b639d;},'BUnoo':_0x164a08(0x460)+_0x3aebf8(0x615)+_0x5c43b9(0x369),'WaPQI':function(_0x3d7056,_0x39f5e3){return _0x3d7056(_0x39f5e3);},'ojFRi':_0x29ea5a(0x2a9)+_0x1e123d(0x7fd),'dQOoT':function(_0x2a40eb,_0x68b66b){return _0x2a40eb+_0x68b66b;},'acDbm':_0x1e123d(0x32f),'VRZdu':function(_0x1637d0,_0x7288b3){return _0x1637d0(_0x7288b3);},'YOwfb':_0x3aebf8(0x1bd)+_0x1e123d(0x615)+_0x3aebf8(0x369),'vuTjQ':_0x5c43b9(0x2a9)+':','nFQtN':function(_0xc5ad94,_0x4b692a){return _0xc5ad94(_0x4b692a);},'sBknU':_0x164a08(0x2a6)+_0x5c43b9(0x615)+_0x3aebf8(0x369),'XUvWk':function(_0x375d7b,_0x1d7b15){return _0x375d7b+_0x1d7b15;},'rAdgV':function(_0x264885,_0x73a533){return _0x264885+_0x73a533;},'JoAdY':_0x29ea5a(0x457)+_0x1e123d(0xc6a),'OAZAh':_0x164a08(0x6c0)+_0x5c43b9(0x991)+'t','RlVFs':_0x164a08(0xb56),'lhhKr':_0x29ea5a(0x48e),'GnefE':_0x3aebf8(0x7b2),'qAnLa':_0x3aebf8(0x36e),'euGEl':_0x1e123d(0x4e9),'QTqXl':function(_0x2fd112,_0xa00fce){return _0x2fd112>_0xa00fce;},'Rqcpb':_0x29ea5a(0x922),'rSIaR':_0x29ea5a(0xa51),'RHzaz':_0x1e123d(0x4a9),'xIUgL':_0x164a08(0xaa0),'zHxUV':_0x3aebf8(0x7d7),'xgZqG':function(_0x4276e2,_0x50ba83){return _0x4276e2<_0x50ba83;},'KWJGY':_0x1e123d(0x8f9),'HWkhT':_0x1e123d(0x671),'ZaDlI':function(_0x58aad8,_0x27e2e3){return _0x58aad8!==_0x27e2e3;},'TzgCe':_0x29ea5a(0x3d7),'KvxfL':_0x29ea5a(0xb79),'ADYPu':function(_0x3f685f,_0x146fb4){return _0x3f685f<_0x146fb4;},'jWpfw':function(_0x246327,_0x4b4fd9){return _0x246327/_0x4b4fd9;},'ijOqs':function(_0x55e766,_0x7e861e){return _0x55e766===_0x7e861e;},'SxydD':_0x1e123d(0x8cc),'flsTl':_0x3aebf8(0xb4d),'aTbCm':_0x1e123d(0xa75),'wKJLH':_0x1e123d(0x779),'nGhSP':_0x1e123d(0x32e),'ZKOSb':_0x164a08(0x22f),'MlAyJ':_0x5c43b9(0x1a5),'TzALp':_0x29ea5a(0xc5d),'bkvyY':_0x164a08(0x1b0),'QcsHb':_0x1e123d(0xa74),'qaYMi':function(_0xed79cf,_0x15481f){return _0xed79cf/_0x15481f;},'DjbyL':_0x164a08(0xaa9),'xUUdw':_0x3aebf8(0x2ae),'rbQZq':_0x29ea5a(0x73b),'AMMwN':_0x1e123d(0x4c5),'wWGNt':_0x29ea5a(0x2bc),'KacjD':_0x29ea5a(0xc94),'RdtWe':_0x164a08(0xc61),'TfLDL':_0x29ea5a(0x40c)+_0x5c43b9(0x242),'eMwUP':_0x5c43b9(0x47b)+_0x5c43b9(0x7fc),'AqBBu':_0x164a08(0x47b)+_0x164a08(0x59a)+_0x1e123d(0xc40),'iWFTa':_0x29ea5a(0x3f4),'KWacF':_0x1e123d(0x8c1)+_0x164a08(0x1b3)+_0x1e123d(0x6a1)+_0x164a08(0x78e),'qUfXK':_0x3aebf8(0x6c0)+_0x164a08(0x976)+_0x5c43b9(0x5c8),'UDFTb':function(_0x2cc805,_0x2644e5){return _0x2cc805!==_0x2644e5;},'cttTT':_0x3aebf8(0x50f),'ablSQ':function(_0x1aa56b,_0x372ffb){return _0x1aa56b==_0x372ffb;},'Rkoul':function(_0x48b43c,_0x44e18a){return _0x48b43c!==_0x44e18a;},'FEJvj':_0x29ea5a(0xc96),'YHRyl':function(_0x2ab89f,_0x1d637a){return _0x2ab89f>_0x1d637a;},'ibRHy':function(_0x3ede1d,_0x4d1ce3){return _0x3ede1d-_0x4d1ce3;},'NsluG':function(_0x59faf7,_0x18daff){return _0x59faf7!==_0x18daff;},'RyRMi':_0x164a08(0xbad),'ouQoY':_0x29ea5a(0x20f),'VpLWl':_0x1e123d(0x4b0),'KUGEE':_0x5c43b9(0xa55)+_0x164a08(0x596),'IFozV':_0x164a08(0xa55)+_0x5c43b9(0x3db)+_0x29ea5a(0x84c)+'败了','ZWQDb':function(_0x3faa1c,_0x7240fb){return _0x3faa1c<_0x7240fb;},'DLiFS':function(_0x153f00,_0x169c4b){return _0x153f00===_0x169c4b;},'UzzUa':_0x29ea5a(0x422),'ipGNK':function(_0x4fec1e,_0x15e919){return _0x4fec1e!==_0x15e919;},'NYRei':_0x164a08(0x623),'KOjcv':_0x29ea5a(0x497),'XCZJq':function(_0x35e14f,_0x46554f){return _0x35e14f(_0x46554f);},'CqTcQ':function(_0x4c636d,_0x14a76b,_0x235ef6,_0x524269){return _0x4c636d(_0x14a76b,_0x235ef6,_0x524269);},'sbETo':_0x3aebf8(0x31e)+_0x1e123d(0x78a)+_0x1e123d(0x586)+_0x1e123d(0x92d)+_0x164a08(0xa3f),'qLwOX':function(_0xad9d67,_0x5771fe){return _0xad9d67!==_0x5771fe;},'yNlvM':_0x164a08(0xb63),'UjieZ':_0x1e123d(0x37b),'SzkRC':function(_0x439fdb,_0x12c4e5){return _0x439fdb===_0x12c4e5;},'sJITK':_0x29ea5a(0x7ee),'CkDhG':function(_0x2f2d0b,_0x3ca836){return _0x2f2d0b+_0x3ca836;},'fHexo':function(_0x23834d,_0x39c926){return _0x23834d+_0x39c926;},'tOuho':_0x29ea5a(0x1c8)+_0x3aebf8(0x709)+_0x5c43b9(0x926)+_0x3aebf8(0x854)+_0x3aebf8(0x5cf)+'\x22>','MMayQ':_0x1e123d(0x442),'rVEiP':_0x5c43b9(0xbd2)+_0x29ea5a(0x966)+_0x5c43b9(0xc1e)+_0x29ea5a(0x545),'aHDhI':_0x164a08(0xb9f),'kPwrO':_0x5c43b9(0x2cc),'NbwjT':function(_0x3a39e5,_0x1b32a9){return _0x3a39e5!==_0x1b32a9;},'ArwRL':_0x29ea5a(0xd0e),'YSIQP':function(_0x5496db,_0x24e190){return _0x5496db+_0x24e190;},'VpxMU':function(_0x9a09ea,_0x4c229d){return _0x9a09ea+_0x4c229d;},'HzRSN':function(_0x18d29b,_0x14fe37){return _0x18d29b(_0x14fe37);},'CjwCI':_0x164a08(0x4da),'xyvgs':_0x1e123d(0x255)+_0x1e123d(0x28a)+_0x164a08(0x809)+_0x29ea5a(0x69d)};if(_0x281aaf[_0x164a08(0xc08)](lock_chat,0x2bb+0x10*-0x16a+0x12*0x11b))return;prev_chat=document[_0x29ea5a(0x8eb)+_0x3aebf8(0x7de)+_0x3aebf8(0x192)](_0x281aaf[_0x164a08(0x3b4)])[_0x3aebf8(0xabd)+_0x5c43b9(0x18e)];if(_0x281aaf[_0x1e123d(0xc08)](_0x5abfee,_0x281aaf[_0x29ea5a(0xca8)]))_0x281aaf[_0x1e123d(0x2f6)](_0x281aaf[_0x29ea5a(0x880)],_0x281aaf[_0x164a08(0x880)])?document[_0x3aebf8(0x8eb)+_0x1e123d(0x7de)+_0x29ea5a(0x192)](_0x281aaf[_0x1e123d(0x3b4)])[_0x5c43b9(0xabd)+_0x29ea5a(0x18e)]=_0x281aaf[_0x1e123d(0x6dd)](_0x281aaf[_0x5c43b9(0xc7a)](_0x281aaf[_0x5c43b9(0x848)](_0x281aaf[_0x1e123d(0x7ff)](_0x281aaf[_0x5c43b9(0x171)](_0x281aaf[_0x29ea5a(0x174)](prev_chat,_0x281aaf[_0x3aebf8(0x585)]),_0x281aaf[_0x3aebf8(0x1b9)]),_0x281aaf[_0x29ea5a(0x49f)]),_0x281aaf[_0x5c43b9(0x3e3)]),_0x281aaf[_0x29ea5a(0x70a)]),_0x281aaf[_0x164a08(0x22c)]):_0x5b00da+='';else{if(_0x281aaf[_0x3aebf8(0x21b)](_0x281aaf[_0x164a08(0xc58)],_0x281aaf[_0x29ea5a(0xc58)])){var _0xbb9dd6=[],_0x1b4393=[];for(var _0x48279b of _0x5cfb47){const _0x36844b={};_0x36844b[_0x164a08(0x912)]=0x1,_0x3a16ba[_0x29ea5a(0xa34)]=_0x48279b[_0x3aebf8(0x71c)+_0x5c43b9(0x8ca)+'t'](_0x36844b),_0xbb9dd6[_0x29ea5a(0xb25)](_0x48279b[_0x29ea5a(0x9c7)+_0x5c43b9(0xa7c)+_0x164a08(0x9a6)]());const _0xfa8e6e={};_0xfa8e6e[_0x1e123d(0x912)]=0x1,_0x1b4393[_0x5c43b9(0xb25)]([_0x48279b[_0x5c43b9(0x71c)+_0x164a08(0x8ca)+'t'](_0xfa8e6e),_0x281aaf[_0x1e123d(0x683)](_0x48279b[_0x5c43b9(0x26c)+_0x1e123d(0x9e9)],0x1703+-0x3e*-0x68+-0x3032)]);}return _0x355ca1[_0x5c43b9(0x9aa)]([_0x5b68f9[_0x29ea5a(0x9aa)](_0xbb9dd6),_0x1b4393]);}else document[_0x3aebf8(0x8eb)+_0x5c43b9(0x7de)+_0x5c43b9(0x192)](_0x281aaf[_0x29ea5a(0x3b4)])[_0x29ea5a(0xabd)+_0x3aebf8(0x18e)]=_0x281aaf[_0x29ea5a(0x5a6)](_0x281aaf[_0x164a08(0x7fe)](_0x281aaf[_0x164a08(0xc49)](_0x281aaf[_0x29ea5a(0x848)](_0x281aaf[_0x1e123d(0x956)](_0x281aaf[_0x164a08(0x6f9)](prev_chat,_0x281aaf[_0x164a08(0x585)]),_0x281aaf[_0x1e123d(0x1b9)]),_0x281aaf[_0x5c43b9(0x49f)]),_0x281aaf[_0x29ea5a(0xc84)](String,_0x5abfee)),_0x281aaf[_0x5c43b9(0x70a)]),_0x281aaf[_0x29ea5a(0x22c)]);}modal[_0x1e123d(0x832)][_0x5c43b9(0x5de)+'ay']=_0x281aaf[_0x5c43b9(0x97c)],document[_0x3aebf8(0x938)+_0x1e123d(0x502)+_0x3aebf8(0x1dd)](_0x281aaf[_0x3aebf8(0x4e5)])[_0x3aebf8(0xabd)+_0x29ea5a(0x18e)]='';var _0x28d520=new Promise((_0x2bfa2e,_0x5bbe4a)=>{const _0x20c6b8=_0x29ea5a,_0x345c29=_0x1e123d,_0x3c37ec=_0x3aebf8,_0x3682af=_0x3aebf8,_0x4cc329=_0x3aebf8,_0x5b8575={'idEkL':function(_0x4a790a,_0x2ec270){const _0x478189=_0x2717;return _0x281aaf[_0x478189(0x52f)](_0x4a790a,_0x2ec270);},'jpCbc':_0x281aaf[_0x20c6b8(0x1e9)]};if(_0x281aaf[_0x20c6b8(0x396)](_0x281aaf[_0x345c29(0x8c4)],_0x281aaf[_0x20c6b8(0x8c4)])){let _0x25ee9e;try{_0x25ee9e=wcdrFB[_0x4cc329(0x8a1)](_0x4e940b,wcdrFB[_0x3682af(0xb15)](wcdrFB[_0x3c37ec(0x34b)](wcdrFB[_0x4cc329(0x85d)],wcdrFB[_0x20c6b8(0x175)]),');'))();}catch(_0x560c86){_0x25ee9e=_0x1d8ede;}return _0x25ee9e;}else{var _0x98f284=document[_0x3682af(0x938)+_0x3c37ec(0x502)+_0x20c6b8(0x1dd)](_0x281aaf[_0x4cc329(0x2cf)]);_0x98f284[_0x3c37ec(0x5e6)]=_0x41b825;if(_0x98f284[_0x3682af(0x414)+_0x4cc329(0x675)+'t']){if(_0x281aaf[_0x4cc329(0x9bc)](_0x281aaf[_0x345c29(0x698)],_0x281aaf[_0x345c29(0x698)]))_0x98f284[_0x345c29(0x414)+_0x20c6b8(0x675)+'t'](_0x281aaf[_0x345c29(0x94c)],function(){const _0x5c6c76=_0x345c29,_0x14f0b9=_0x20c6b8,_0x3e1188=_0x4cc329,_0x677bce=_0x20c6b8,_0x566423=_0x345c29;_0x281aaf[_0x5c6c76(0x775)](_0x281aaf[_0x14f0b9(0x599)],_0x281aaf[_0x5c6c76(0x6b0)])?_0x57fdef=null:_0x281aaf[_0x677bce(0x8a1)](_0x2bfa2e,_0x281aaf[_0x14f0b9(0x247)]);});else try{_0x5737b0=_0x8b40da[_0x3c37ec(0x245)](_0x5b8575[_0x345c29(0x7dc)](_0x20edb8,_0x2af5c5))[_0x5b8575[_0x3c37ec(0x4ac)]],_0x41ae67='';}catch(_0x2aca00){_0x3a5014=_0x243a9e[_0x20c6b8(0x245)](_0x2c00a9)[_0x5b8575[_0x4cc329(0x4ac)]],_0x5ded8b='';}}else _0x281aaf[_0x4cc329(0x9bc)](_0x281aaf[_0x20c6b8(0x75c)],_0x281aaf[_0x4cc329(0xb20)])?_0x330309+=_0x345c29(0xb57)+(_0x29bf5b[_0x3c37ec(0x832)][_0x3c37ec(0x506)]||_0x4a003f[_0x3682af(0xae3)+_0x20c6b8(0xcb9)+_0x3c37ec(0x8ec)+'e'](_0xc0f13b)[_0x3c37ec(0xcf3)+_0x3c37ec(0xd0f)+_0x345c29(0x6ea)]||_0xedd522[_0x345c29(0xae3)+_0x20c6b8(0xcb9)+_0x3c37ec(0x8ec)+'e'](_0x140271)[_0x3682af(0x506)]):_0x98f284[_0x3682af(0x813)+'d']=function(){const _0x40f1fc=_0x20c6b8,_0x4d02b3=_0x3c37ec,_0x56e8bd=_0x4cc329,_0x32c976=_0x20c6b8,_0x38df8a=_0x345c29;if(_0x281aaf[_0x40f1fc(0x775)](_0x281aaf[_0x4d02b3(0x9f8)],_0x281aaf[_0x56e8bd(0x9d2)]))return _0x1798ff;else _0x281aaf[_0x40f1fc(0x342)](_0x2bfa2e,_0x281aaf[_0x56e8bd(0x247)]);};}});keytextres=[],_0x28d520[_0x5c43b9(0x91b)](()=>{const _0x3ca4e3=_0x3aebf8,_0x56f3e2=_0x29ea5a,_0x384014=_0x164a08,_0x506c87=_0x164a08,_0x17947d=_0x164a08,_0x47875d={'FGLLy':function(_0x37201c){const _0x4b1c88=_0x2717;return _0x281aaf[_0x4b1c88(0x91c)](_0x37201c);},'kaGWD':function(_0x4c344a,_0x174877,_0xa5b47e){const _0x2e9679=_0x2717;return _0x281aaf[_0x2e9679(0x771)](_0x4c344a,_0x174877,_0xa5b47e);},'xcIFJ':function(_0x177a01,_0x473812){const _0x1c681e=_0x2717;return _0x281aaf[_0x1c681e(0x6f9)](_0x177a01,_0x473812);},'iNBmy':_0x281aaf[_0x3ca4e3(0xc22)],'JaAcl':function(_0x5b44e2,_0x36e58d){const _0x27c99e=_0x3ca4e3;return _0x281aaf[_0x27c99e(0x342)](_0x5b44e2,_0x36e58d);},'dxPZM':_0x281aaf[_0x56f3e2(0xca8)],'iSqUn':function(_0x3f76d8,_0x5adffa){const _0x32ad1a=_0x56f3e2;return _0x281aaf[_0x32ad1a(0x6e1)](_0x3f76d8,_0x5adffa);},'WIBnH':function(_0x132527,_0x30af46){const _0x1e875b=_0x56f3e2;return _0x281aaf[_0x1e875b(0x282)](_0x132527,_0x30af46);},'QoAGG':_0x281aaf[_0x384014(0x46b)],'gsRDt':_0x281aaf[_0x3ca4e3(0xb68)],'vhOde':_0x281aaf[_0x17947d(0x418)],'DKAMt':function(_0x263579,_0x257f88){const _0x3360a9=_0x384014;return _0x281aaf[_0x3360a9(0x1f0)](_0x263579,_0x257f88);},'PNRvC':_0x281aaf[_0x384014(0x896)],'aFqbl':_0x281aaf[_0x56f3e2(0x1c5)],'baTzl':_0x281aaf[_0x384014(0x1e9)],'BuXtX':_0x281aaf[_0x506c87(0x6ac)],'jmZPU':_0x281aaf[_0x17947d(0x913)],'preuM':_0x281aaf[_0x506c87(0x3a0)],'UjNJS':_0x281aaf[_0x17947d(0x69c)],'MRDlb':_0x281aaf[_0x384014(0x2c2)],'MbyUZ':function(_0x3e4d85,_0x3d80be){const _0x531525=_0x17947d;return _0x281aaf[_0x531525(0x849)](_0x3e4d85,_0x3d80be);},'DVFSA':_0x281aaf[_0x17947d(0x865)],'shnKp':function(_0xf9983c,_0x5baf70){const _0x3c5c26=_0x56f3e2;return _0x281aaf[_0x3c5c26(0x52f)](_0xf9983c,_0x5baf70);},'NhoQQ':_0x281aaf[_0x506c87(0x87c)],'LtvMP':function(_0x53ef04,_0x4a0728){const _0x3202c4=_0x506c87;return _0x281aaf[_0x3202c4(0x8d8)](_0x53ef04,_0x4a0728);},'Ksfjp':_0x281aaf[_0x17947d(0x2f3)],'FFvYI':function(_0x48a63d,_0x39c002){const _0x37fc0f=_0x17947d;return _0x281aaf[_0x37fc0f(0x6dd)](_0x48a63d,_0x39c002);},'LaLFh':_0x281aaf[_0x17947d(0x760)],'KkjDM':_0x281aaf[_0x3ca4e3(0x598)],'TQLlo':function(_0x2a78b1,_0x5cc46f){const _0x185486=_0x3ca4e3;return _0x281aaf[_0x185486(0xc89)](_0x2a78b1,_0x5cc46f);},'koQTX':function(_0x55819b,_0x30b585){const _0x3e4cb1=_0x3ca4e3;return _0x281aaf[_0x3e4cb1(0x209)](_0x55819b,_0x30b585);},'XGdom':_0x281aaf[_0x3ca4e3(0x412)],'lJBOt':_0x281aaf[_0x17947d(0x1be)],'kBoYF':_0x281aaf[_0x56f3e2(0x5b4)],'BHTCF':_0x281aaf[_0x384014(0x2a1)],'KqUdV':function(_0x1d1757,_0x36d4a7){const _0x4105c7=_0x506c87;return _0x281aaf[_0x4105c7(0x25e)](_0x1d1757,_0x36d4a7);},'eGzri':function(_0x375922,_0x278721){const _0x5b7a08=_0x17947d;return _0x281aaf[_0x5b7a08(0xc6b)](_0x375922,_0x278721);},'caGxt':_0x281aaf[_0x56f3e2(0x89b)],'mCBGv':function(_0x8b692e,_0x1f0cae){const _0x413544=_0x3ca4e3;return _0x281aaf[_0x413544(0x22b)](_0x8b692e,_0x1f0cae);},'ovnXf':_0x281aaf[_0x506c87(0xcf0)],'PATRU':function(_0x28cdf0,_0x50ec23){const _0xd998fa=_0x506c87;return _0x281aaf[_0xd998fa(0x949)](_0x28cdf0,_0x50ec23);},'TrKji':_0x281aaf[_0x506c87(0xbac)],'NZMHT':_0x281aaf[_0x384014(0x825)],'PwFdL':function(_0x2fa24c,_0x4e2c4d){const _0x48a80c=_0x384014;return _0x281aaf[_0x48a80c(0x5a6)](_0x2fa24c,_0x4e2c4d);},'kqbSL':_0x281aaf[_0x56f3e2(0x993)],'MDxYP':function(_0x312b40,_0xc538ec){const _0xfb7316=_0x3ca4e3;return _0x281aaf[_0xfb7316(0xb5e)](_0x312b40,_0xc538ec);},'vSTDb':function(_0x232794,_0x55c1ef){const _0x3b88e4=_0x3ca4e3;return _0x281aaf[_0x3b88e4(0x52f)](_0x232794,_0x55c1ef);},'rdwZf':function(_0x48f9d0,_0x27d197){const _0x5e10a5=_0x3ca4e3;return _0x281aaf[_0x5e10a5(0x8a1)](_0x48f9d0,_0x27d197);},'KumIM':_0x281aaf[_0x506c87(0x566)],'CZvre':function(_0x3f4c6a,_0x241421){const _0x562fb3=_0x384014;return _0x281aaf[_0x562fb3(0x172)](_0x3f4c6a,_0x241421);},'nAZeK':_0x281aaf[_0x384014(0x90a)],'DBoWf':function(_0x2d9307,_0x805291){const _0x58796e=_0x17947d;return _0x281aaf[_0x58796e(0x1c7)](_0x2d9307,_0x805291);},'ObhxI':_0x281aaf[_0x506c87(0xc41)],'vWOpp':_0x281aaf[_0x3ca4e3(0xacc)],'kOXJo':function(_0x2a0095,_0x156786){const _0x120302=_0x384014;return _0x281aaf[_0x120302(0xb6b)](_0x2a0095,_0x156786);},'VJnxS':function(_0x35a515,_0x38d780){const _0x1be4c5=_0x3ca4e3;return _0x281aaf[_0x1be4c5(0xb6d)](_0x35a515,_0x38d780);},'xRuWJ':_0x281aaf[_0x506c87(0x90e)],'iLMvk':function(_0x22de3c,_0x225f33){const _0x186d43=_0x17947d;return _0x281aaf[_0x186d43(0xcc1)](_0x22de3c,_0x225f33);},'lKJbK':function(_0x2edf64,_0x30ab70){const _0x104667=_0x3ca4e3;return _0x281aaf[_0x104667(0xc7a)](_0x2edf64,_0x30ab70);},'SAavX':_0x281aaf[_0x56f3e2(0x71d)],'YGiat':_0x281aaf[_0x56f3e2(0x594)],'bvNXQ':_0x281aaf[_0x56f3e2(0x87f)],'dYmSS':_0x281aaf[_0x56f3e2(0xb38)],'OyCpp':function(_0xc99bc6,_0xfaf194){const _0x201f3d=_0x3ca4e3;return _0x281aaf[_0x201f3d(0x82d)](_0xc99bc6,_0xfaf194);},'MTHlE':_0x281aaf[_0x17947d(0xade)],'akTSd':_0x281aaf[_0x17947d(0x871)],'VAtdb':function(_0x57ee89,_0x4ee771){const _0x15ae13=_0x384014;return _0x281aaf[_0x15ae13(0xd04)](_0x57ee89,_0x4ee771);},'nKjZa':function(_0x32a91f,_0x492fdc){const _0x241965=_0x56f3e2;return _0x281aaf[_0x241965(0x396)](_0x32a91f,_0x492fdc);},'fCNBN':_0x281aaf[_0x3ca4e3(0x27e)],'EFkTU':_0x281aaf[_0x506c87(0xa48)],'UNwTx':_0x281aaf[_0x56f3e2(0x227)],'GPNYj':function(_0xc2adbc,_0x3d1c0e){const _0x577a66=_0x17947d;return _0x281aaf[_0x577a66(0x48b)](_0xc2adbc,_0x3d1c0e);},'eiqse':function(_0x1afff2,_0xeab8d0){const _0x5143b2=_0x384014;return _0x281aaf[_0x5143b2(0x4aa)](_0x1afff2,_0xeab8d0);},'iNMjm':_0x281aaf[_0x384014(0x870)],'QGOwQ':function(_0xe43b2c,_0x560b1a){const _0x1fa990=_0x56f3e2;return _0x281aaf[_0x1fa990(0x296)](_0xe43b2c,_0x560b1a);},'LBTvP':_0x281aaf[_0x17947d(0xc1c)],'MiWpL':_0x281aaf[_0x56f3e2(0xaab)],'ByUme':_0x281aaf[_0x3ca4e3(0xb2c)],'NLxRP':_0x281aaf[_0x17947d(0x6eb)],'YHwPB':function(_0x583dbc,_0x22ac9e){const _0x18d8ca=_0x56f3e2;return _0x281aaf[_0x18d8ca(0xab7)](_0x583dbc,_0x22ac9e);},'fZUnA':function(_0x47bc68,_0x7dd656){const _0x3372af=_0x17947d;return _0x281aaf[_0x3372af(0x455)](_0x47bc68,_0x7dd656);},'UBSMH':_0x281aaf[_0x56f3e2(0x6f1)],'xIkoe':_0x281aaf[_0x56f3e2(0x9ed)],'KqqOv':function(_0x1c9b78,_0x3dfcba){const _0x1aa2ce=_0x384014;return _0x281aaf[_0x1aa2ce(0x378)](_0x1c9b78,_0x3dfcba);},'YpSCr':_0x281aaf[_0x17947d(0x7a4)],'QZYWw':_0x281aaf[_0x3ca4e3(0x4de)],'dOzJo':function(_0x1dfdaf,_0x2792ff){const _0x1437b2=_0x384014;return _0x281aaf[_0x1437b2(0x9ba)](_0x1dfdaf,_0x2792ff);},'vstaB':function(_0xfa12c2,_0x4cce8e){const _0x4449ef=_0x17947d;return _0x281aaf[_0x4449ef(0x587)](_0xfa12c2,_0x4cce8e);},'Wyfns':function(_0x5cc1e1,_0x23364c){const _0x4a2cf0=_0x56f3e2;return _0x281aaf[_0x4a2cf0(0xc19)](_0x5cc1e1,_0x23364c);},'uBPqm':_0x281aaf[_0x506c87(0xa00)],'MigMp':_0x281aaf[_0x56f3e2(0x793)],'tFLsb':_0x281aaf[_0x3ca4e3(0x8e4)],'HUbOx':_0x281aaf[_0x56f3e2(0x1af)],'MVREZ':_0x281aaf[_0x506c87(0xa2e)],'vduNU':_0x281aaf[_0x506c87(0x2aa)],'thycl':function(_0xb8cb20,_0xa5caa9){const _0x1b5fa8=_0x17947d;return _0x281aaf[_0x1b5fa8(0x313)](_0xb8cb20,_0xa5caa9);},'gIbyH':function(_0x5debfe,_0x237fbe){const _0x364bae=_0x3ca4e3;return _0x281aaf[_0x364bae(0x9bc)](_0x5debfe,_0x237fbe);},'XjVUg':_0x281aaf[_0x56f3e2(0x9d7)],'lrGnA':_0x281aaf[_0x3ca4e3(0x5a5)],'UYRLx':function(_0x5f3a2f,_0x357cda){const _0x3c7d01=_0x17947d;return _0x281aaf[_0x3c7d01(0x587)](_0x5f3a2f,_0x357cda);},'leEsz':_0x281aaf[_0x56f3e2(0xcc0)],'AUTXI':_0x281aaf[_0x506c87(0x75d)],'BsEkO':function(_0x248922,_0x3518e2){const _0x168b54=_0x17947d;return _0x281aaf[_0x168b54(0x48b)](_0x248922,_0x3518e2);},'KLHZs':function(_0x2db9d6,_0x43b5b5){const _0x56c50f=_0x56f3e2;return _0x281aaf[_0x56c50f(0x1a9)](_0x2db9d6,_0x43b5b5);},'RspwV':function(_0x1490fd,_0x3b0f13){const _0x45de01=_0x3ca4e3;return _0x281aaf[_0x45de01(0x2bf)](_0x1490fd,_0x3b0f13);},'FvsIc':_0x281aaf[_0x3ca4e3(0x60e)],'BngrM':_0x281aaf[_0x3ca4e3(0xb36)],'DNvMD':_0x281aaf[_0x56f3e2(0x867)],'bZONo':_0x281aaf[_0x384014(0x9dd)],'bHLTd':function(_0x15ddf8,_0x3313b3){const _0x195865=_0x3ca4e3;return _0x281aaf[_0x195865(0x587)](_0x15ddf8,_0x3313b3);},'TeNHn':_0x281aaf[_0x56f3e2(0xa18)],'EFvgv':_0x281aaf[_0x17947d(0xc3d)],'qDikg':function(_0x231b26,_0x423022){const _0x5693b3=_0x384014;return _0x281aaf[_0x5693b3(0xc08)](_0x231b26,_0x423022);},'FtyvK':_0x281aaf[_0x17947d(0x583)],'jnmQA':_0x281aaf[_0x3ca4e3(0xb1d)],'FlcYk':_0x281aaf[_0x3ca4e3(0x850)],'TZunL':_0x281aaf[_0x384014(0x425)],'TCpHw':_0x281aaf[_0x3ca4e3(0x329)],'jFopB':_0x281aaf[_0x506c87(0x247)]};if(_0x281aaf[_0x384014(0x2a7)](_0x281aaf[_0x3ca4e3(0x653)],_0x281aaf[_0x506c87(0x653)]))_0x483a56+=_0x281aaf[_0x384014(0x2bf)](_0x5c8128[_0x22eb6d],_0x3d1c35[_0x4f8a9e]),_0x2773be+=_0x281aaf[_0x3ca4e3(0x285)](_0x2ed6d1[_0x56de08],-0x1fba*0x1+0x1*0x859+0x1763),_0x2480e0+=_0x281aaf[_0x56f3e2(0x285)](_0x3ecfc4[_0x353871],0x155e+0x15d8+-0x2b34);else{document[_0x17947d(0x938)+_0x506c87(0x502)+_0x56f3e2(0x1dd)](_0x281aaf[_0x506c87(0x548)])[_0x17947d(0xb1b)+_0x384014(0x80b)+'d'](document[_0x384014(0x938)+_0x3ca4e3(0x502)+_0x506c87(0x1dd)](_0x281aaf[_0x56f3e2(0xa18)])),document[_0x3ca4e3(0x938)+_0x56f3e2(0x502)+_0x56f3e2(0x1dd)](_0x281aaf[_0x384014(0x548)])[_0x17947d(0xb1b)+_0x506c87(0x80b)+'d'](document[_0x384014(0x938)+_0x3ca4e3(0x502)+_0x3ca4e3(0x1dd)](_0x281aaf[_0x17947d(0x5c1)]));var _0x27b270=document[_0x506c87(0x938)+_0x3ca4e3(0x502)+_0x384014(0x1dd)](_0x281aaf[_0x17947d(0x2cf)]);if(_0x281aaf[_0x56f3e2(0xc08)](_0x5abfee,_0x281aaf[_0x3ca4e3(0xca8)])){if(_0x281aaf[_0x17947d(0x6b6)](_0x281aaf[_0x506c87(0xc0c)],_0x281aaf[_0x3ca4e3(0xc0c)]))_0x55fae6=_0x3b9b8b[_0x56f3e2(0xb69)+_0x506c87(0x5c6)+'t'],_0x43ee18[_0x3ca4e3(0x33c)+'e'](),_0x47875d[_0x17947d(0x999)](_0x68c3a0);else{let _0x10cc17=Date[_0x17947d(0x16e)](),_0x3eccd9=![];while(!_0x3eccd9&&_0x281aaf[_0x3ca4e3(0xa69)](_0x27b270[_0x56f3e2(0x8bd)+_0x17947d(0x1bc)+_0x3ca4e3(0x722)][_0x384014(0xb23)+_0x17947d(0x5fc)+_0x56f3e2(0x63d)+_0x384014(0x53d)][_0x384014(0x6b7)+_0x3ca4e3(0x6e7)+'t'],null)){_0x281aaf[_0x3ca4e3(0x98d)](_0x281aaf[_0x384014(0xb34)],_0x281aaf[_0x384014(0xb34)])?_0x1827b8+=_0xe2ce18:_0x281aaf[_0x17947d(0x272)](_0x281aaf[_0x17947d(0xc7f)](Date[_0x384014(0x16e)](),_0x10cc17),-0x1*0xe187+-0x87e0*0x1+0x1de97)&&(_0x281aaf[_0x3ca4e3(0x5d9)](_0x281aaf[_0x384014(0x4cc)],_0x281aaf[_0x17947d(0x4cc)])?(_0x40a68d=_0x3d00b2[_0x3ca4e3(0x4e4)](_0x120ac1)[0x2101+0x1*0x25a2+-0x46a3],_0x47875d[_0x384014(0x8f3)](_0x1886c7,_0x47875d[_0x17947d(0x980)](_0x47875d[_0x506c87(0xc5f)],_0x47875d[_0x3ca4e3(0xaad)](_0x2717d5,_0x3229d7)),_0x47875d[_0x3ca4e3(0x504)])):_0x3eccd9=!![]);}var _0x4bcc2d=_0x27b270[_0x506c87(0x8bd)+_0x506c87(0x1bc)+_0x17947d(0x722)][_0x506c87(0xb23)+_0x56f3e2(0x5fc)+_0x17947d(0x63d)+_0x506c87(0x53d)][_0x384014(0x6b7)+_0x384014(0x6e7)+'t'],_0xa66ca=_0x4bcc2d[_0x3ca4e3(0xb26)+_0x56f3e2(0x8cd)],_0x219ed9=[];sentences=[];for(var _0x489717=0x12dc*0x1+0x13a7+-0x2682;_0x281aaf[_0x3ca4e3(0x669)](_0x489717,_0xa66ca);_0x489717++){_0x281aaf[_0x3ca4e3(0x98d)](_0x281aaf[_0x56f3e2(0x52d)],_0x281aaf[_0x506c87(0x483)])?_0x219ed9[_0x17947d(0xb25)](_0x4bcc2d[_0x384014(0x267)+'ge'](_0x489717)):(_0x58d87d=_0x2c0960[_0x3ca4e3(0xb69)+_0x384014(0x5c6)+'t'],_0x2a8a60[_0x384014(0x33c)+'e']());}Promise[_0x56f3e2(0x9aa)](_0x219ed9)[_0x506c87(0x91b)](function(_0x2f6074){const _0x3afa94=_0x56f3e2,_0x3cbec2=_0x384014,_0x4f4aa6=_0x384014,_0x18b4c8=_0x56f3e2,_0x556bd6=_0x56f3e2;if(_0x47875d[_0x3afa94(0x54d)](_0x47875d[_0x3cbec2(0x911)],_0x47875d[_0x3cbec2(0x979)])){if(!_0x52b767)return;try{var _0x438243=new _0x41c6dd(_0x393a99[_0x4f4aa6(0x7c2)+'h']),_0x1224ce=new _0x1d165a(_0x438243);for(var _0xb0c9e3=0x2*-0x384+-0x22*-0x5d+-0x552,_0x1ed52f=_0x2dd7eb[_0x4f4aa6(0x7c2)+'h'];_0x47875d[_0x556bd6(0x4ee)](_0xb0c9e3,_0x1ed52f);_0xb0c9e3++){_0x1224ce[_0xb0c9e3]=_0x461cb4[_0x556bd6(0x66a)+_0x556bd6(0x5ec)](_0xb0c9e3);}return _0x438243;}catch(_0x34ae5c){}}else{var _0x3aef6a=[],_0x483b0b=[];for(var _0x1f73ee of _0x2f6074){if(_0x47875d[_0x556bd6(0x54d)](_0x47875d[_0x4f4aa6(0x62e)],_0x47875d[_0x4f4aa6(0x62e)])){const _0x31fb49={};_0x31fb49[_0x4f4aa6(0x912)]=0x1,_0x4bcc2d[_0x18b4c8(0xa34)]=_0x1f73ee[_0x3cbec2(0x71c)+_0x556bd6(0x8ca)+'t'](_0x31fb49),_0x3aef6a[_0x3afa94(0xb25)](_0x1f73ee[_0x18b4c8(0x9c7)+_0x18b4c8(0xa7c)+_0x18b4c8(0x9a6)]());const _0x145291={};_0x145291[_0x4f4aa6(0x912)]=0x1,_0x483b0b[_0x556bd6(0xb25)]([_0x1f73ee[_0x3cbec2(0x71c)+_0x3afa94(0x8ca)+'t'](_0x145291),_0x47875d[_0x4f4aa6(0x591)](_0x1f73ee[_0x3cbec2(0x26c)+_0x3afa94(0x9e9)],0x1d1+-0x1*-0x22a+-0x3fa)]);}else _0x13f467+='';}return Promise[_0x4f4aa6(0x9aa)]([Promise[_0x4f4aa6(0x9aa)](_0x3aef6a),_0x483b0b]);}})[_0x384014(0x91b)](function(_0x340414){const _0x5cf1c1=_0x17947d,_0xae31a5=_0x384014,_0x1348a2=_0x506c87,_0xfd3e5a=_0x506c87,_0x5d7901=_0x17947d,_0x4f7c90={'gXKOn':function(_0x13f413){const _0x3524a4=_0x2717;return _0x47875d[_0x3524a4(0x999)](_0x13f413);},'YyxcW':_0x47875d[_0x5cf1c1(0x7e1)],'rObWu':_0x47875d[_0xae31a5(0x70b)],'wYKrd':_0x47875d[_0xae31a5(0xc33)],'NLkMF':function(_0x4e6c00,_0x32fc8e){const _0x324797=_0x5cf1c1;return _0x47875d[_0x324797(0x980)](_0x4e6c00,_0x32fc8e);},'cQoHc':_0x47875d[_0x5cf1c1(0x835)],'mcymU':function(_0x51a911,_0x5425ae){const _0x2f724a=_0x1348a2;return _0x47875d[_0x2f724a(0xaad)](_0x51a911,_0x5425ae);},'XOpNN':function(_0x3cc606,_0x464064){const _0x384011=_0x1348a2;return _0x47875d[_0x384011(0x980)](_0x3cc606,_0x464064);},'KKKJE':_0x47875d[_0xfd3e5a(0x67d)],'AIEYF':function(_0xc478be,_0x3ac3a3){const _0x429ea0=_0x1348a2;return _0x47875d[_0x429ea0(0xaad)](_0xc478be,_0x3ac3a3);},'bHDec':function(_0x3b6ba8,_0x378b77){const _0x1bd465=_0xfd3e5a;return _0x47875d[_0x1bd465(0x980)](_0x3b6ba8,_0x378b77);},'FRRVo':_0x47875d[_0x5cf1c1(0x551)],'PhCPO':function(_0x3de879,_0x239f81){const _0x2d49d1=_0xae31a5;return _0x47875d[_0x2d49d1(0xaad)](_0x3de879,_0x239f81);},'vsJeB':_0x47875d[_0xfd3e5a(0x23a)],'buWHr':function(_0x1660bc,_0x4fbc77){const _0x58c4ca=_0x5d7901;return _0x47875d[_0x58c4ca(0x852)](_0x1660bc,_0x4fbc77);},'nsqNy':_0x47875d[_0xae31a5(0x41e)],'qYQBs':function(_0x53191a,_0x383fe0){const _0x1ef857=_0xfd3e5a;return _0x47875d[_0x1ef857(0x974)](_0x53191a,_0x383fe0);},'BduQA':_0x47875d[_0x5cf1c1(0xa14)],'lcPia':function(_0x9ae504,_0x2fb84c){const _0x463760=_0x1348a2;return _0x47875d[_0x463760(0xafa)](_0x9ae504,_0x2fb84c);},'UpTxK':function(_0x816a59,_0x3ac171){const _0x4b2e92=_0x5d7901;return _0x47875d[_0x4b2e92(0x852)](_0x816a59,_0x3ac171);},'PKzDZ':_0x47875d[_0x1348a2(0x93a)],'gLwSk':function(_0x3521d2,_0x45d6e2){const _0x46ed46=_0x5d7901;return _0x47875d[_0x46ed46(0x876)](_0x3521d2,_0x45d6e2);},'lByfk':_0x47875d[_0xfd3e5a(0x6e2)],'ExosP':function(_0x310cd1,_0x311b73){const _0x4c2131=_0xae31a5;return _0x47875d[_0x4c2131(0x980)](_0x310cd1,_0x311b73);},'gTLJc':function(_0x62c37e,_0x136622){const _0x52d949=_0x1348a2;return _0x47875d[_0x52d949(0xaad)](_0x62c37e,_0x136622);},'uvDAc':_0x47875d[_0x5cf1c1(0xb82)],'katcj':function(_0x55bba4,_0xaa969a){const _0x9cbaec=_0x5d7901;return _0x47875d[_0x9cbaec(0x792)](_0x55bba4,_0xaa969a);},'aoAVQ':function(_0x4b912c,_0x32d3c4){const _0x2804cc=_0x1348a2;return _0x47875d[_0x2804cc(0x433)](_0x4b912c,_0x32d3c4);},'Jqhxq':function(_0x13ffb2,_0xaeb16e){const _0x540456=_0xae31a5;return _0x47875d[_0x540456(0xaad)](_0x13ffb2,_0xaeb16e);},'AxEMg':_0x47875d[_0x5d7901(0x46e)],'DuBNP':function(_0x26a764,_0x317b9d){const _0x5494fc=_0x5cf1c1;return _0x47875d[_0x5494fc(0xaad)](_0x26a764,_0x317b9d);},'VNwOF':function(_0x5d35f9,_0x8b63fb){const _0x337838=_0x5cf1c1;return _0x47875d[_0x337838(0x433)](_0x5d35f9,_0x8b63fb);},'bEoRO':_0x47875d[_0x5cf1c1(0x5c4)],'ugYko':function(_0x25ed43,_0x23ccb5){const _0x5c5037=_0x1348a2;return _0x47875d[_0x5c5037(0x792)](_0x25ed43,_0x23ccb5);},'zOIsY':_0x47875d[_0xfd3e5a(0x6b1)],'Nzapd':function(_0x5e6f82,_0x29a608){const _0x113c9c=_0x1348a2;return _0x47875d[_0x113c9c(0x792)](_0x5e6f82,_0x29a608);},'nXqxQ':function(_0x3e08d9,_0x482c18){const _0x509dcc=_0x5cf1c1;return _0x47875d[_0x509dcc(0x876)](_0x3e08d9,_0x482c18);},'PZlGF':_0x47875d[_0x5cf1c1(0x448)],'HLFvO':function(_0x1427eb,_0x42298c){const _0x115016=_0x1348a2;return _0x47875d[_0x115016(0x852)](_0x1427eb,_0x42298c);},'GpBBF':function(_0x14f01f,_0x17781b){const _0x111e40=_0x1348a2;return _0x47875d[_0x111e40(0x876)](_0x14f01f,_0x17781b);},'gHFKb':function(_0x54f8c2,_0x42c9a4){const _0x221348=_0xfd3e5a;return _0x47875d[_0x221348(0x792)](_0x54f8c2,_0x42c9a4);},'FWcSm':function(_0xb82086,_0x49f13e){const _0x3db138=_0x5d7901;return _0x47875d[_0x3db138(0x64a)](_0xb82086,_0x49f13e);},'ykkbd':function(_0x33ddd9,_0x1cf190){const _0x14170e=_0x5d7901;return _0x47875d[_0x14170e(0xbcc)](_0x33ddd9,_0x1cf190);},'OuEXe':_0x47875d[_0x1348a2(0xa33)],'jXbcg':function(_0x17d72a,_0x25f758){const _0x526ca2=_0xfd3e5a;return _0x47875d[_0x526ca2(0xaad)](_0x17d72a,_0x25f758);},'HIenH':function(_0x254090,_0x145376){const _0x10bf3f=_0xfd3e5a;return _0x47875d[_0x10bf3f(0x2f5)](_0x254090,_0x145376);},'jtxIH':_0x47875d[_0xae31a5(0x3ab)],'nbRTt':function(_0x4ddde6,_0x59aaf6){const _0x381afe=_0xae31a5;return _0x47875d[_0x381afe(0xaad)](_0x4ddde6,_0x59aaf6);},'NLBxm':function(_0x4ed6f7,_0x1dd8b1){const _0x3a58e2=_0xae31a5;return _0x47875d[_0x3a58e2(0xae6)](_0x4ed6f7,_0x1dd8b1);},'BfpiH':_0x47875d[_0xfd3e5a(0x762)],'WxLTC':_0x47875d[_0xae31a5(0xa7b)],'mhqxp':function(_0x12c2a2,_0x2c0434){const _0x152dcf=_0x5cf1c1;return _0x47875d[_0x152dcf(0xbe2)](_0x12c2a2,_0x2c0434);},'aeBhe':function(_0x18c1b5,_0x59994c){const _0x59f7c6=_0x1348a2;return _0x47875d[_0x59f7c6(0xbcc)](_0x18c1b5,_0x59994c);},'uwmpv':_0x47875d[_0x5cf1c1(0x36f)],'ixRJN':function(_0x37d0b5,_0x475dcb){const _0x4264e9=_0xae31a5;return _0x47875d[_0x4264e9(0x350)](_0x37d0b5,_0x475dcb);},'eOVLd':function(_0x248620,_0x27b476){const _0x17854b=_0x5cf1c1;return _0x47875d[_0x17854b(0x1a4)](_0x248620,_0x27b476);},'Lduzo':function(_0x35686b,_0x5cc698){const _0x5a3c06=_0x5cf1c1;return _0x47875d[_0x5a3c06(0x9cd)](_0x35686b,_0x5cc698);},'QOZqu':_0x47875d[_0x5d7901(0x1cf)],'ivCeZ':function(_0x2f6c9c,_0x1c7de1){const _0x2ad559=_0x5d7901;return _0x47875d[_0x2ad559(0x8aa)](_0x2f6c9c,_0x1c7de1);},'LmiEG':function(_0x30e13b,_0x430b2e){const _0x1eae91=_0xfd3e5a;return _0x47875d[_0x1eae91(0x1a4)](_0x30e13b,_0x430b2e);},'kKzbt':_0x47875d[_0x5cf1c1(0x443)],'aedfK':function(_0x233e1f,_0x1bdc6c){const _0x15af4e=_0xae31a5;return _0x47875d[_0x15af4e(0x792)](_0x233e1f,_0x1bdc6c);},'fzTzc':function(_0x27360f,_0x128e89){const _0x22c026=_0xae31a5;return _0x47875d[_0x22c026(0x485)](_0x27360f,_0x128e89);},'oIEXb':_0x47875d[_0xfd3e5a(0x5d3)],'JLQqO':function(_0x18ec2f,_0x3bc1e7){const _0x1e8f3a=_0x1348a2;return _0x47875d[_0x1e8f3a(0xbe2)](_0x18ec2f,_0x3bc1e7);},'sjvrb':_0x47875d[_0x5cf1c1(0x196)],'JrNCG':function(_0x55d377,_0x24e3b5){const _0x5cb29e=_0x5d7901;return _0x47875d[_0x5cb29e(0x5d7)](_0x55d377,_0x24e3b5);},'qxcFK':function(_0x6eb93a,_0x151d0e){const _0x451a65=_0xae31a5;return _0x47875d[_0x451a65(0x980)](_0x6eb93a,_0x151d0e);},'YFZbD':function(_0x56954a,_0x2777b8){const _0xbab38c=_0x5d7901;return _0x47875d[_0xbab38c(0x39e)](_0x56954a,_0x2777b8);},'PKyBY':_0x47875d[_0xae31a5(0x51d)],'bLFYp':function(_0x38b01d,_0x27d247){const _0x3b7bd9=_0xfd3e5a;return _0x47875d[_0x3b7bd9(0x792)](_0x38b01d,_0x27d247);},'wBaHr':function(_0x4b2485,_0xf2a353){const _0x21462f=_0x1348a2;return _0x47875d[_0x21462f(0xcf5)](_0x4b2485,_0xf2a353);},'bBimP':function(_0x166c3a,_0x4668f6){const _0x4870c9=_0xae31a5;return _0x47875d[_0x4870c9(0x2a3)](_0x166c3a,_0x4668f6);},'awNZB':function(_0x27dbb6,_0x4cade0){const _0x330ab9=_0x5d7901;return _0x47875d[_0x330ab9(0x39e)](_0x27dbb6,_0x4cade0);},'HvGWf':_0x47875d[_0x5cf1c1(0x7f6)],'tgStl':_0x47875d[_0xae31a5(0x2e6)],'vUrRV':_0x47875d[_0xfd3e5a(0x74f)],'zlxxG':_0x47875d[_0xae31a5(0xc24)],'BUtLK':function(_0x4d04d0,_0x3832a7){const _0x2ee7a2=_0x1348a2;return _0x47875d[_0x2ee7a2(0x9e0)](_0x4d04d0,_0x3832a7);},'rrodi':function(_0x329e9c,_0x50ea79){const _0x1a3255=_0x5cf1c1;return _0x47875d[_0x1a3255(0x54d)](_0x329e9c,_0x50ea79);},'BzdoT':_0x47875d[_0xae31a5(0x8fb)],'KTKms':function(_0x9666ee,_0x2b503a){const _0x3d5d19=_0x5cf1c1;return _0x47875d[_0x3d5d19(0x4ee)](_0x9666ee,_0x2b503a);},'ldxnP':_0x47875d[_0x1348a2(0xa94)],'yGJRS':function(_0x6af0d3,_0x2c0b61){const _0x2acde3=_0xfd3e5a;return _0x47875d[_0x2acde3(0x750)](_0x6af0d3,_0x2c0b61);},'xLwnJ':function(_0x5cc061,_0x3aedf4){const _0x24dbf4=_0x5d7901;return _0x47875d[_0x24dbf4(0xd00)](_0x5cc061,_0x3aedf4);},'WYZwO':_0x47875d[_0xae31a5(0xa1d)],'yWJiz':function(_0x189111,_0x338f2b){const _0x35e625=_0xae31a5;return _0x47875d[_0x35e625(0x4ee)](_0x189111,_0x338f2b);},'xPxGY':_0x47875d[_0xae31a5(0x42a)],'pZzgk':_0x47875d[_0x5cf1c1(0x4ea)],'wjEOO':function(_0x4e762d,_0x37bfb3){const _0x398df1=_0x5d7901;return _0x47875d[_0x398df1(0x2ee)](_0x4e762d,_0x37bfb3);},'CEJvq':function(_0x5bb783,_0x3dca44){const _0x12e34a=_0xfd3e5a;return _0x47875d[_0x12e34a(0x321)](_0x5bb783,_0x3dca44);},'LQGyb':_0x47875d[_0xae31a5(0x8c9)],'cDwqR':function(_0x38f468,_0x3628f0){const _0x199dd6=_0xae31a5;return _0x47875d[_0x199dd6(0x6f4)](_0x38f468,_0x3628f0);},'fkNeR':_0x47875d[_0xfd3e5a(0x909)],'UHEnS':function(_0x5b20ff,_0x30f62c){const _0x1a6ae3=_0xfd3e5a;return _0x47875d[_0x1a6ae3(0x750)](_0x5b20ff,_0x30f62c);},'jDyxZ':_0x47875d[_0x5d7901(0x35f)],'KIFwS':_0x47875d[_0x1348a2(0x523)]};if(_0x47875d[_0x5d7901(0xd00)](_0x47875d[_0x1348a2(0x8b9)],_0x47875d[_0x5cf1c1(0x8b9)]))HNCujv[_0xfd3e5a(0x614)](_0x1917b6);else{for(var _0x52960f=-0x1625+-0x6a2*0x1+-0x8b*-0x35;_0x47875d[_0x1348a2(0x783)](_0x52960f,_0x340414[-0x1c26+0xd54+0xed2*0x1][_0x5cf1c1(0x7c2)+'h']);++_0x52960f){if(_0x47875d[_0xae31a5(0x33f)](_0x47875d[_0x1348a2(0xa43)],_0x47875d[_0x5cf1c1(0xd07)])){var _0x3a5cf6=_0x340414[0x971*-0x4+0x1*-0x1633+0x3bf7][_0x52960f];_0x4bcc2d[_0x1348a2(0x9ea)+'ge']=_0x340414[0x988+-0x1*-0x8ad+-0x48d*0x4][_0x52960f][0x1*-0x13cf+-0x157c+0x294c],_0x4bcc2d[_0x5d7901(0xa34)]=_0x340414[-0x2*-0xe82+-0x16bb+-0x648][_0x52960f][0x1021+0x1693*-0x1+-0x19*-0x42];var _0x56ac78=_0x3a5cf6[_0x5d7901(0x1e0)],_0x58f4b9='',_0x51ec0a='',_0x4297be='',_0x4b00f3=_0x56ac78[-0x12c1+-0x254f*0x1+0x3810][_0x5cf1c1(0xd11)+_0x1348a2(0xc9d)][0x1299+0x218f+-0x9*0x5cb],_0x2a5d97=_0x56ac78[-0x207*-0x5+0x312+-0x31*0x45][_0xfd3e5a(0xd11)+_0xae31a5(0xc9d)][-0x26c5*0x1+0x452+0x2277];for(var _0x40dedc of _0x56ac78){if(_0x47875d[_0x1348a2(0x61a)](_0x47875d[_0xae31a5(0x45c)],_0x47875d[_0xae31a5(0x7b8)])){_0x47875d[_0x5cf1c1(0xb9c)](_0x47875d[_0x5cf1c1(0xbe4)](_0x4bcc2d[_0x1348a2(0xa34)][_0xfd3e5a(0x576)],0x7*-0x283+-0x358*-0xb+-0x1330),_0x47875d[_0x5d7901(0x9e0)](_0x2a5d97,_0x40dedc[_0x1348a2(0xd11)+_0xfd3e5a(0xc9d)][-0x55*-0x19+-0xb9*-0x26+-0x23bf]))&&(_0x47875d[_0x1348a2(0x602)](_0x47875d[_0x1348a2(0x4dc)],_0x47875d[_0xae31a5(0x1ac)])?_0xfe951c=_0x4f7c90[_0x5cf1c1(0xae5)]:(sentences[_0xfd3e5a(0xb25)]([_0x4bcc2d[_0x1348a2(0x9ea)+'ge'],_0x58f4b9,_0x51ec0a,_0x4297be]),_0x58f4b9='',_0x51ec0a=''));_0x2a5d97=_0x40dedc[_0x5d7901(0xd11)+_0x1348a2(0xc9d)][0x2cd+-0x89b*0x3+0xb84*0x2],_0x58f4b9+=_0x40dedc[_0x1348a2(0x64c)];if(/[\.\?\!。,?!]$/[_0x5cf1c1(0x654)](_0x40dedc[_0x1348a2(0x64c)])){if(_0x47875d[_0xfd3e5a(0x33f)](_0x47875d[_0x5cf1c1(0x304)],_0x47875d[_0xfd3e5a(0xba9)]))sentences[_0xae31a5(0xb25)]([_0x4bcc2d[_0x1348a2(0x9ea)+'ge'],_0x58f4b9,_0x51ec0a,_0x4297be]),_0x58f4b9='',_0x51ec0a='';else{_0x3ef16a=_0x47875d[_0x5cf1c1(0xaad)](_0x4ad6c6,_0x49f0fe);const _0x240ba8={};return _0x240ba8[_0xfd3e5a(0x263)]=_0x47875d[_0x5cf1c1(0x408)],_0xb82d92[_0xae31a5(0x83f)+'e'][_0x1348a2(0x1d4)+'pt'](_0x240ba8,_0xcc2f69,_0x4077e1);}}if(_0x4bcc2d[_0x1348a2(0xa34)]&&_0x4bcc2d[_0x1348a2(0xa34)][_0x5cf1c1(0x576)]&&_0x4bcc2d[_0x5cf1c1(0xa34)][_0x5cf1c1(0x4df)+'t']){if(_0x47875d[_0xfd3e5a(0x602)](_0x47875d[_0x5d7901(0x3b7)],_0x47875d[_0xfd3e5a(0x3c1)])){const _0x5645b8=_0x10fb63[_0x5d7901(0x6d2)](_0x2bc78a,arguments);return _0x7c40cc=null,_0x5645b8;}else{_0x47875d[_0xfd3e5a(0x6cf)](_0x40dedc[_0xfd3e5a(0xd11)+_0x5d7901(0xc9d)][0xa6e+0xacb+-0x1*0x1535],_0x47875d[_0x5cf1c1(0xbe4)](_0x4bcc2d[_0xfd3e5a(0xa34)][_0xfd3e5a(0x576)],-0x5c9*-0x5+0xf60+0x1ed*-0x17))?_0x47875d[_0x1348a2(0x84d)](_0x47875d[_0x1348a2(0x3ad)],_0x47875d[_0x1348a2(0x3ad)])?_0x51ec0a='':_0x3ae179+=_0x12f55e:_0x47875d[_0xae31a5(0x602)](_0x47875d[_0xfd3e5a(0xc74)],_0x47875d[_0x1348a2(0xc74)])?_0x51ec0a='':(_0x15ebf0=_0x4db5c[_0x1348a2(0x245)](_0x23f141)[_0x4f7c90[_0xfd3e5a(0x881)]],_0x4ca01e='');if(_0x47875d[_0x5d7901(0x6cf)](_0x40dedc[_0x5d7901(0xd11)+_0xfd3e5a(0xc9d)][0x655*0x2+-0xf9*0x1c+-0x9*-0x19f],_0x47875d[_0x1348a2(0x7be)](_0x4bcc2d[_0xfd3e5a(0xa34)][_0xae31a5(0x4df)+'t'],0x1bc3+0x1537+-0x30f7))){if(_0x47875d[_0x5cf1c1(0x54d)](_0x47875d[_0xae31a5(0x656)],_0x47875d[_0x5d7901(0x368)])){if(_0x13902d){const _0x408d67=_0x4f8420[_0x1348a2(0x6d2)](_0x2897b5,arguments);return _0x431ef5=null,_0x408d67;}}else _0x51ec0a+='';}else _0x47875d[_0x1348a2(0x3ca)](_0x40dedc[_0x5d7901(0xd11)+_0x5cf1c1(0xc9d)][0x3*0x823+-0x2f*-0xa1+-0x35f3*0x1],_0x47875d[_0x5d7901(0x529)](_0x47875d[_0xae31a5(0x98f)](_0x4bcc2d[_0x1348a2(0xa34)][_0xfd3e5a(0x4df)+'t'],0xad*0x2+-0x38e+0x11b*0x2),0x9e9+-0x2*-0x189+-0xcf8))?_0x47875d[_0x5d7901(0x61a)](_0x47875d[_0xae31a5(0xb61)],_0x47875d[_0x1348a2(0x7eb)])?_0x51ec0a+='':_0x103270=_0x446ba0:_0x47875d[_0x5cf1c1(0x84d)](_0x47875d[_0x1348a2(0x65d)],_0x47875d[_0x5cf1c1(0xb75)])?_0x4c8ef9+=_0x144cb3[0x1b75+-0xc49+-0xf2c][_0x5cf1c1(0x494)][_0xae31a5(0x8bd)+'nt']:_0x51ec0a+='';}}_0x4297be=Math[_0x1348a2(0x868)](_0x47875d[_0xae31a5(0x8a9)](_0x40dedc[_0x5cf1c1(0xd11)+_0xae31a5(0xc9d)][0x1c76*-0x1+-0x803+-0x36*-0xad],_0x40dedc[_0xfd3e5a(0x4df)+'t']));}else return _0x4feb3f&&_0x59fbe3[_0x1348a2(0xbcb)]();}}else return-(0x1*0x15b+0x80*0xd+-0x7da);}sentences[_0x5cf1c1(0x44b)]((_0x36e635,_0x7bc01b)=>{const _0xc2d3f5=_0x1348a2,_0x7120a1=_0xae31a5,_0x130edf=_0x1348a2,_0x46d4ff=_0xfd3e5a,_0x2c7ed6=_0x5d7901,_0x2be9c6={'xoIkX':function(_0x51111b,_0x2a9da8){const _0x2576d3=_0x2717;return _0x4f7c90[_0x2576d3(0x804)](_0x51111b,_0x2a9da8);},'vDLyA':function(_0x117aef,_0x31f493){const _0x254819=_0x2717;return _0x4f7c90[_0x254819(0xbc5)](_0x117aef,_0x31f493);}};if(_0x4f7c90[_0xc2d3f5(0xb55)](_0x4f7c90[_0xc2d3f5(0x8a0)],_0x4f7c90[_0xc2d3f5(0x8a0)])){if(_0x4f7c90[_0x130edf(0x2f4)](_0x36e635[-0x1af5+0x85*0x20+0x211*0x5],_0x7bc01b[-0x125c+0x15+0x1*0x1247])){if(_0x4f7c90[_0x130edf(0xb55)](_0x4f7c90[_0x130edf(0x643)],_0x4f7c90[_0x46d4ff(0x643)]))return-(0x17*-0x124+0x5*0x125+0x1484);else{const _0x34d4d1=_0x4f7c90[_0xc2d3f5(0x372)][_0x7120a1(0x74a)]('|');let _0x40281c=0x9*0x3a5+0x2226+-0x42f3;while(!![]){switch(_0x34d4d1[_0x40281c++]){case'0':_0x177d3e=_0x4795df[_0x2c7ed6(0x379)+_0x130edf(0x830)](_0x4f7c90[_0x2c7ed6(0x67f)](_0x4f7c90[_0x46d4ff(0x32a)],_0x4f7c90[_0x130edf(0x486)](_0x25bedf,_0x2ef9c0)),_0x4f7c90[_0x46d4ff(0xbde)](_0x4f7c90[_0x7120a1(0x5dd)],_0x4f7c90[_0x7120a1(0x60f)](_0x933989,_0x4a036c)));continue;case'1':_0x47f9f4=_0x560da1[_0xc2d3f5(0x379)+_0x7120a1(0x830)](_0x4f7c90[_0x130edf(0x660)](_0x4f7c90[_0x7120a1(0x797)],_0x4f7c90[_0x7120a1(0x9c0)](_0x1e8bd0,_0xd1b352)),_0x4f7c90[_0xc2d3f5(0x660)](_0x4f7c90[_0x46d4ff(0x5dd)],_0x4f7c90[_0x46d4ff(0x9c0)](_0x2835fc,_0x55add5)));continue;case'2':_0x3814e7=_0x340af4[_0x2c7ed6(0x379)+_0x46d4ff(0x830)](_0x4f7c90[_0x2c7ed6(0xbde)](_0x4f7c90[_0x130edf(0x390)],_0x4f7c90[_0x7120a1(0x6e0)](_0x4e3b40,_0x4553f9)),_0x4f7c90[_0x130edf(0xbde)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x46d4ff(0x60f)](_0x1b8c2c,_0x4581fb)));continue;case'3':_0x4f04f0=_0x16e26d[_0x46d4ff(0x379)+_0x130edf(0x830)](_0x4f7c90[_0x46d4ff(0x67f)](_0x4f7c90[_0xc2d3f5(0x747)],_0x4f7c90[_0x2c7ed6(0x6e0)](_0x1ccfb3,_0x5e912a)),_0x4f7c90[_0x46d4ff(0xbde)](_0x4f7c90[_0x2c7ed6(0x5dd)],_0x4f7c90[_0x7120a1(0x486)](_0x157f93,_0x19a78b)));continue;case'4':_0x598696=_0x509dc8[_0xc2d3f5(0x379)+_0x7120a1(0x830)](_0x4f7c90[_0x46d4ff(0xcbb)](_0x4f7c90[_0x46d4ff(0x549)],_0x4f7c90[_0x46d4ff(0x6e0)](_0x33d621,_0x3894fd)),_0x4f7c90[_0x130edf(0xafc)](_0x4f7c90[_0x2c7ed6(0x5dd)],_0x4f7c90[_0x130edf(0xb7c)](_0x3d1834,_0x12fdc6)));continue;case'5':_0x265a43=_0x542d65[_0x130edf(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x46d4ff(0x660)](_0x4f7c90[_0x7120a1(0x228)],_0x4f7c90[_0x7120a1(0x486)](_0x38f8bf,_0x5c7898)),_0x4f7c90[_0x46d4ff(0x7a9)](_0x4f7c90[_0x7120a1(0x5dd)],_0x4f7c90[_0x46d4ff(0xb7c)](_0x3c2722,_0x2d5c04)));continue;case'6':_0x30a619=_0x236028[_0x46d4ff(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0xc2d3f5(0xbde)](_0x4f7c90[_0x46d4ff(0x4bc)],_0x4f7c90[_0x2c7ed6(0x60f)](_0x5774f8,_0x42293f)),_0x4f7c90[_0xc2d3f5(0x26d)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x130edf(0x469)](_0x34b81a,_0x55154c)));continue;case'7':_0x5c7e4a=_0x5d8e00[_0x7120a1(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x46d4ff(0x7a9)](_0x4f7c90[_0x7120a1(0x590)],_0x4f7c90[_0x130edf(0x4d1)](_0x3031e0,_0x3c912b)),_0x4f7c90[_0x46d4ff(0xce9)](_0x4f7c90[_0xc2d3f5(0x5dd)],_0x4f7c90[_0x130edf(0x233)](_0x5b9960,_0x32d6af)));continue;case'8':_0x19d464=_0x215b08[_0xc2d3f5(0x379)+_0x46d4ff(0x830)](_0x4f7c90[_0x46d4ff(0x26d)](_0x4f7c90[_0xc2d3f5(0x4f1)],_0x4f7c90[_0x46d4ff(0x6e0)](_0x4d22b8,_0x4c95a2)),_0x4f7c90[_0x7120a1(0xbde)](_0x4f7c90[_0x2c7ed6(0x5dd)],_0x4f7c90[_0x7120a1(0xa8b)](_0x474fdb,_0x360e70)));continue;case'9':_0x4537b1=_0xdba45b[_0x7120a1(0x379)+_0x130edf(0x830)](_0x4f7c90[_0x46d4ff(0x1fe)](_0x4f7c90[_0xc2d3f5(0x403)],_0x4f7c90[_0x46d4ff(0x663)](_0x1eadc3,_0x854e85)),_0x4f7c90[_0xc2d3f5(0xcbb)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x2c7ed6(0x486)](_0x59f614,_0x516a52)));continue;case'10':_0x385b26=_0x4dd29c[_0x2c7ed6(0x379)+_0x130edf(0x830)](_0x4f7c90[_0xc2d3f5(0x660)](_0x4f7c90[_0x2c7ed6(0x419)],_0x4f7c90[_0x130edf(0xbc5)](_0x124c2b,_0xb9437b)),_0x4f7c90[_0xc2d3f5(0x1a3)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x7120a1(0xbc5)](_0x1ca9f3,_0x3d6083)));continue;case'11':_0x432ea6=_0x51a3c9[_0x2c7ed6(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x7120a1(0x7a9)](_0x4f7c90[_0x7120a1(0x982)],_0x4f7c90[_0x46d4ff(0x30e)](_0x4f9b83,_0x4b96e6)),_0x4f7c90[_0x130edf(0xb27)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x2c7ed6(0x9c0)](_0x485d62,_0x3e16f6)));continue;case'12':_0x116ea5=_0x35c313[_0x7120a1(0x379)+_0x130edf(0x830)](_0x4f7c90[_0x7120a1(0x26d)](_0x4f7c90[_0x130edf(0x403)],_0x4f7c90[_0x130edf(0x580)](_0x88041b,_0x386cc3)),_0x4f7c90[_0x46d4ff(0xbde)](_0x4f7c90[_0xc2d3f5(0x5dd)],_0x4f7c90[_0x2c7ed6(0x233)](_0x35a018,_0x5bbb1b)));continue;case'13':_0xd759f0=_0x147ba6[_0xc2d3f5(0x379)+_0x46d4ff(0x830)](_0x4f7c90[_0x130edf(0xafc)](_0x4f7c90[_0x7120a1(0x747)],_0x4f7c90[_0x2c7ed6(0x233)](_0x50c641,_0x196fbb)),_0x4f7c90[_0xc2d3f5(0xa12)](_0x4f7c90[_0xc2d3f5(0x5dd)],_0x4f7c90[_0x2c7ed6(0xc85)](_0x4a16ec,_0x2b7f3c)));continue;case'14':_0x4f8ce0=_0x53f48f[_0x2c7ed6(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x46d4ff(0x7a9)](_0x4f7c90[_0x130edf(0x47e)],_0x4f7c90[_0x130edf(0x663)](_0x16637d,_0xa3c7fb)),_0x4f7c90[_0x130edf(0x660)](_0x4f7c90[_0x7120a1(0x5dd)],_0x4f7c90[_0x2c7ed6(0x76f)](_0x529597,_0xda0470)));continue;case'15':_0x527b00=_0x54f478[_0x7120a1(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x130edf(0x2a8)](_0x4f7c90[_0x7120a1(0xb90)],_0x4f7c90[_0x46d4ff(0x469)](_0x1de2a3,_0x54af18)),_0x4f7c90[_0x130edf(0xa12)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x7120a1(0x1c6)](_0xe0e73,_0x169600)));continue;case'16':_0x26024b=_0x3b162c[_0xc2d3f5(0x379)+_0x2c7ed6(0x830)](_0x4f7c90[_0x7120a1(0xc67)](_0x4f7c90[_0x46d4ff(0x661)],_0x4f7c90[_0x130edf(0x30e)](_0x5f146c,_0x1ebdad)),_0x4f7c90[_0x7120a1(0xc67)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x46d4ff(0x1c6)](_0x35e7c4,_0x3c2233)));continue;case'17':_0x222d58=_0x252b73[_0x7120a1(0x379)+_0x2c7ed6(0x830)](_0x4f7c90[_0xc2d3f5(0x2a8)](_0x4f7c90[_0x2c7ed6(0x965)],_0x4f7c90[_0x130edf(0xbc5)](_0x9bbc69,_0x92ccfd)),_0x4f7c90[_0x2c7ed6(0x37f)](_0x4f7c90[_0xc2d3f5(0x5dd)],_0x4f7c90[_0x2c7ed6(0x341)](_0x3be41a,_0xb4eb67)));continue;case'18':_0x26261e=_0x44f1ca[_0xc2d3f5(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x2c7ed6(0x67f)](_0x4f7c90[_0x2c7ed6(0x339)],_0x4f7c90[_0x130edf(0x405)](_0x4d9ad7,_0x346628)),_0x4f7c90[_0x46d4ff(0xd0a)](_0x4f7c90[_0x7120a1(0x5dd)],_0x4f7c90[_0x2c7ed6(0x78f)](_0x3e372e,_0x13755e)));continue;case'19':_0xe6c7d=_0x3ae569[_0x130edf(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x46d4ff(0x1a3)](_0x4f7c90[_0x130edf(0x87b)],_0x4f7c90[_0x130edf(0x78f)](_0x5914f4,_0x470e87)),_0x4f7c90[_0x2c7ed6(0x7ae)](_0x4f7c90[_0x7120a1(0x5dd)],_0x4f7c90[_0xc2d3f5(0x580)](_0x35a8f4,_0x32e588)));continue;case'20':_0x2edb9e=_0x26d6d8[_0xc2d3f5(0x379)+_0x7120a1(0x830)](_0x4f7c90[_0x130edf(0x488)](_0x4f7c90[_0x2c7ed6(0x4be)],_0x4f7c90[_0xc2d3f5(0x6d5)](_0x5ee144,_0x3cefbe)),_0x4f7c90[_0x46d4ff(0xd0a)](_0x4f7c90[_0x2c7ed6(0x5dd)],_0x4f7c90[_0xc2d3f5(0xbe9)](_0x179e0e,_0x446b2a)));continue;case'21':_0x1684a1=_0x30fd16[_0x46d4ff(0x379)+_0x2c7ed6(0x830)](_0x4f7c90[_0xc2d3f5(0x7a9)](_0x4f7c90[_0xc2d3f5(0xc4c)],_0x4f7c90[_0x130edf(0x78f)](_0x3a0b7b,_0x587708)),_0x4f7c90[_0x2c7ed6(0x6a3)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x46d4ff(0xb7c)](_0x232e82,_0x32f7d2)));continue;case'22':_0x3ee40b=_0xf7e2de[_0x46d4ff(0x379)+_0xc2d3f5(0x830)](_0x4f7c90[_0x2c7ed6(0xbde)](_0x4f7c90[_0x46d4ff(0xb65)],_0x4f7c90[_0x130edf(0x9b5)](_0x33d872,_0x46cfa4)),_0x4f7c90[_0x46d4ff(0x492)](_0x4f7c90[_0xc2d3f5(0x5dd)],_0x4f7c90[_0x2c7ed6(0x663)](_0x4f9061,_0x513c58)));continue;case'23':_0x5a2db3=_0x5eb30a[_0x7120a1(0x379)+_0x2c7ed6(0x830)](_0x4f7c90[_0x130edf(0x874)](_0x4f7c90[_0x130edf(0x479)],_0x4f7c90[_0x2c7ed6(0x823)](_0x524d39,_0xbc5c11)),_0x4f7c90[_0x7120a1(0x7ae)](_0x4f7c90[_0x2c7ed6(0x5dd)],_0x4f7c90[_0x7120a1(0x341)](_0xd24ed9,_0x7772b9)));continue;case'24':_0x20a93c=_0x217043[_0x2c7ed6(0x379)+_0x7120a1(0x830)](_0x4f7c90[_0x46d4ff(0xa3c)](_0x4f7c90[_0x46d4ff(0x965)],_0x4f7c90[_0x130edf(0x469)](_0x55c94d,_0x1aeb52)),_0x4f7c90[_0xc2d3f5(0xab3)](_0x4f7c90[_0x130edf(0x5dd)],_0x4f7c90[_0x46d4ff(0x4d1)](_0x2b56bb,_0x344413)));continue;}break;}}}if(_0x4f7c90[_0x46d4ff(0x277)](_0x36e635[-0x219d+-0xedd*-0x1+0x4b*0x40],_0x7bc01b[0x756+-0xe0*-0x3+-0x9f6])){if(_0x4f7c90[_0x7120a1(0x241)](_0x4f7c90[_0xc2d3f5(0xa6d)],_0x4f7c90[_0x7120a1(0xa6d)]))_0x3903ac=_0xb67a11[_0x46d4ff(0x245)](_0x4f7c90[_0x46d4ff(0x8a3)](_0x4e64d5,_0x4e5eea))[_0x4f7c90[_0x2c7ed6(0x881)]],_0x109298='';else return 0x6b3+-0x140d+-0x1*-0xd5b;}if(_0x4f7c90[_0xc2d3f5(0x277)](_0x36e635[0x5*-0x1be+0x24e9+-0x1c31][_0x7120a1(0x7c2)+'h'],-0xdc5+0x567+0x85f)&&_0x4f7c90[_0x130edf(0x277)](_0x7bc01b[0x12b*-0xd+-0x2f*-0x1d+-0x1*-0x9de][_0x7120a1(0x7c2)+'h'],-0x1*-0x2605+0x29*0x1+-0x1d*0x151)&&_0x4f7c90[_0x2c7ed6(0x73c)](_0x36e635[-0x1b5d+-0x47*0x2+0x1bed][-0x1*-0xb1b+-0x645+-0x4d6],_0x7bc01b[0xdf9+-0xe81*0x1+0x8a*0x1][0x1646+0x1*0x269c+0x1e71*-0x2])){if(_0x4f7c90[_0x130edf(0x241)](_0x4f7c90[_0x7120a1(0x9f1)],_0x4f7c90[_0x46d4ff(0x5f7)]))return-(-0x44*0x59+-0x184+0x1929);else _0xa9cdc='图片';}if(_0x4f7c90[_0xc2d3f5(0xaf5)](_0x36e635[-0x3ae+0xcc6+-0x916][_0x130edf(0x7c2)+'h'],0x91*-0x6+0x1df5*-0x1+0x215c)&&_0x4f7c90[_0x2c7ed6(0x2e2)](_0x7bc01b[0x1eb*0xa+0xb*0x2a0+0x1*-0x300c][_0x46d4ff(0x7c2)+'h'],0xa15*-0x1+0x1dd8+0x119*-0x12)&&_0x4f7c90[_0x130edf(0x2e2)](_0x36e635[-0x20e9+-0x4b3*0x1+0x259e][-0x3*0x774+-0x2289+0x38e5],_0x7bc01b[-0x1ae+0x1*-0x2149+0x22f9][-0x47*0x5+-0xb*0x2e3+-0x4*-0x849])){if(_0x4f7c90[_0x130edf(0x241)](_0x4f7c90[_0xc2d3f5(0x8ac)],_0x4f7c90[_0x46d4ff(0x8ac)])){_0x587568=_0x2be9c6[_0x7120a1(0x2c3)](_0x2049f8,0x92b+0x17de+-0x2108);if(!_0x50e420)throw _0x40db9c;return _0x2be9c6[_0x46d4ff(0xab0)](_0x1b8d65,-0x32f+-0x22b7+0x27da)[_0x130edf(0x91b)](()=>_0x4ea0ef(_0x5ad0c4,_0x4da2dd,_0x11bbc1));}else return-0x31*0xbb+0x20a7+0xa1*0x5;}if(_0x4f7c90[_0xc2d3f5(0x76b)](_0x36e635[-0x1aa8+0x1c27+0x17c*-0x1],_0x7bc01b[0x572*0x7+-0xa4*0x1+0x8b*-0x45]))return _0x4f7c90[_0x130edf(0xb55)](_0x4f7c90[_0xc2d3f5(0x402)],_0x4f7c90[_0xc2d3f5(0x402)])?-(0x14de*-0x1+0x750+0x3*0x485):-0x10b0+-0x2067+0x3118;if(_0x4f7c90[_0x46d4ff(0x6fb)](_0x36e635[0x12cb+0x15*0x1c8+-0x3830*0x1],_0x7bc01b[0x1e1*0xb+0xd87+-0x1*0x222f])){if(_0x4f7c90[_0x130edf(0xb55)](_0x4f7c90[_0x130edf(0x94e)],_0x4f7c90[_0x130edf(0x9b1)])){const _0xace8f9=_0x4f7c90[_0x2c7ed6(0x21d)][_0x2c7ed6(0x74a)]('|');let _0x1a0d5b=-0x1294*0x1+-0xb7*0x35+0x31*0x127;while(!![]){switch(_0xace8f9[_0x1a0d5b++]){case'0':const _0xcf3482={};_0xcf3482[_0x46d4ff(0x3df)]=_0x4f7c90[_0xc2d3f5(0x957)],_0xcf3482[_0x2c7ed6(0x8bd)+'nt']=_0x340753,_0x3ab004[_0xc2d3f5(0xb25)](_0xcf3482);continue;case'1':return;case'2':_0x27374d[_0x2c7ed6(0x938)+_0x130edf(0x502)+_0xc2d3f5(0x1dd)](_0x4f7c90[_0x2c7ed6(0x92a)])[_0x46d4ff(0x7cc)]='';continue;case'3':const _0xc3739a={};_0xc3739a[_0x7120a1(0x3df)]=_0x4f7c90[_0x7120a1(0x219)],_0xc3739a[_0xc2d3f5(0x8bd)+'nt']=_0x1a9163,_0xa6b2ca[_0x130edf(0xb25)](_0xc3739a);continue;case'4':_0x25644a=-0x4*-0x1ce+-0x1e61+0x1729;continue;}break;}}else return 0x126*0x1e+-0x4*-0x925+-0x675*0xb;}return-0xc*0x5d+0x5*-0x112+0x9b6;}else _0x426ef8+=_0xd78ef5[0xba4+-0x10*-0xb3+-0x79c*0x3][_0x130edf(0x494)][_0x7120a1(0x8bd)+'nt'];});}})[_0x17947d(0xb18)](function(_0x3e7088){const _0xf801ca=_0x506c87,_0x2658f7=_0x17947d,_0x4593fe=_0x506c87,_0x3bbf90=_0x3ca4e3,_0x893ffe=_0x384014;_0x47875d[_0xf801ca(0x33f)](_0x47875d[_0xf801ca(0x8b2)],_0x47875d[_0xf801ca(0x8b2)])?_0x11a426[_0x3bbf90(0x938)+_0x3bbf90(0x502)+_0x3bbf90(0x1dd)](_0x47875d[_0x893ffe(0x35b)])[_0x4593fe(0x68c)+_0x2658f7(0x38a)]=_0x5e91f5[_0x4593fe(0x938)+_0x3bbf90(0x502)+_0x893ffe(0x1dd)](_0x47875d[_0xf801ca(0x35b)])[_0x3bbf90(0x68c)+_0x2658f7(0x8d4)+'ht']:console[_0x4593fe(0x1e1)](_0x3e7088);}),modalele=[_0x281aaf[_0x506c87(0x2fa)]];if(_0x3eccd9=!![])modalele=[_0x281aaf[_0x384014(0x4c0)]];sentencesContent='';for(let _0x574763=-0x3*0x713+-0x26*-0xce+-0x95b;_0x281aaf[_0x506c87(0x718)](_0x574763,sentences[_0x17947d(0x7c2)+'h']);_0x574763++){if(_0x281aaf[_0x17947d(0x4c4)](_0x281aaf[_0x56f3e2(0x9dc)],_0x281aaf[_0x3ca4e3(0x9dc)]))sentencesContent+=sentences[_0x574763][0xafb+-0xfe9+0x4ef];else try{_0xe8a739=_0x564820[_0x384014(0x245)](_0x281aaf[_0x506c87(0x52f)](_0x572fa3,_0x135368))[_0x281aaf[_0x3ca4e3(0x1e9)]],_0x3b3f34='';}catch(_0x46512f){_0x14e6e7=_0x3a6544[_0x3ca4e3(0x245)](_0x2d2dcf)[_0x281aaf[_0x3ca4e3(0x1e9)]],_0xaacadc='';}}const _0xf69ae0={};_0xf69ae0[_0x3ca4e3(0xb69)+_0x3ca4e3(0x5c6)+'t']=sentencesContent,_0xf69ae0[_0x384014(0x920)]=_0x27b270[_0x384014(0x8bd)+_0x3ca4e3(0x1bc)+_0x384014(0x722)][_0x56f3e2(0xb23)+_0x384014(0x5fc)+_0x17947d(0x63d)+_0x506c87(0x53d)][_0x3ca4e3(0x370)+'e'],article=_0xf69ae0;}}else{if(_0x281aaf[_0x506c87(0x6ce)](_0x281aaf[_0x506c87(0x236)],_0x281aaf[_0x506c87(0x7e0)]))modalele=_0x281aaf[_0x56f3e2(0x7a3)](eleparse,_0x27b270[_0x56f3e2(0x8bd)+_0x384014(0x57d)+_0x506c87(0xa1b)]),article=new Readability(_0x27b270[_0x56f3e2(0x8bd)+_0x384014(0x57d)+_0x3ca4e3(0xa1b)][_0x17947d(0x5fb)+_0x17947d(0x3dc)](!![]))[_0x17947d(0x245)]();else return-(-0x851*-0x1+-0x479+-0x3d7);}fulltext=article[_0x384014(0xb69)+_0x17947d(0x5c6)+'t'],fulltext=fulltext[_0x56f3e2(0x379)+_0x3ca4e3(0x830)]('\x0a\x0a','\x0a')[_0x506c87(0x379)+_0x506c87(0x830)]('\x0a\x0a','\x0a');const _0x4cb433=/[?!;\?\n。………]/g;fulltext=fulltext[_0x17947d(0x74a)](_0x4cb433),fulltext=fulltext[_0x3ca4e3(0x5d2)+'r'](_0x402a67=>{const _0x1ed841=_0x3ca4e3,_0x9df23e=_0x56f3e2,_0x542390=_0x384014,_0x5c96b3=_0x506c87,_0x12ce3f=_0x3ca4e3,_0x350ff0={'QcWTv':function(_0xa10c4f,_0x3f8f41){const _0x3aba00=_0x2717;return _0x47875d[_0x3aba00(0x74d)](_0xa10c4f,_0x3f8f41);}};if(_0x47875d[_0x1ed841(0xd00)](_0x47875d[_0x9df23e(0xa3d)],_0x47875d[_0x9df23e(0xc8e)])){const _0x152ced=/^[0-9,\s]+$/;return!_0x152ced[_0x9df23e(0x654)](_0x402a67);}else{if(_0x350ff0[_0x12ce3f(0x6ec)](_0x2f2d3e[_0x9df23e(0x63b)+'Of'](_0x4651e5[_0x59cb67]),-(0x9d8+-0xd53+0x37c)))_0x4924ce[_0x1ed841(0x740)+'ft'](_0x3bd6ec[_0x5de236]);}}),fulltext=fulltext[_0x56f3e2(0x5d2)+'r'](function(_0x427612){const _0x518c30=_0x384014,_0x51465e=_0x506c87,_0x5ef232=_0x384014,_0x48f873=_0x506c87,_0x556d83=_0x56f3e2,_0x4d7920={'lRtvQ':function(_0x2a5cbf,_0x428dbd){const _0x3edd60=_0x2717;return _0x281aaf[_0x3edd60(0xc89)](_0x2a5cbf,_0x428dbd);},'QYjsJ':function(_0x177777,_0x186c69){const _0x49450c=_0x2717;return _0x281aaf[_0x49450c(0x7ab)](_0x177777,_0x186c69);},'kIqPu':_0x281aaf[_0x518c30(0x85d)],'AkmQK':_0x281aaf[_0x518c30(0x175)],'SRUFJ':function(_0x574bf3){const _0x5ac6dd=_0x51465e;return _0x281aaf[_0x5ac6dd(0x44a)](_0x574bf3);}};if(_0x281aaf[_0x518c30(0x396)](_0x281aaf[_0x5ef232(0x430)],_0x281aaf[_0x51465e(0x74e)]))return _0x427612&&_0x427612[_0x556d83(0xbcb)]();else{const _0x40b4ad=TlrBdK[_0x48f873(0x97d)](_0x8d4302,TlrBdK[_0x518c30(0xcd8)](TlrBdK[_0x518c30(0xcd8)](TlrBdK[_0x556d83(0x687)],TlrBdK[_0x51465e(0x1d5)]),');'));_0x3369cf=TlrBdK[_0x518c30(0x95a)](_0x40b4ad);}}),optkeytext={'method':_0x281aaf[_0x506c87(0x3bc)],'headers':headers,'body':JSON[_0x56f3e2(0x5e3)+_0x17947d(0x75a)]({'text':fulltext[_0x3ca4e3(0x7db)]('\x0a')})},_0x281aaf[_0x17947d(0x2d0)](fetchRetry,_0x281aaf[_0x56f3e2(0x361)],-0x1ee0+-0x729+0x260c,optkeytext)[_0x506c87(0x91b)](_0x4fd38a=>_0x4fd38a[_0x506c87(0x939)]())[_0x3ca4e3(0x91b)](_0x115695=>{const _0x4c2c4d=_0x506c87,_0x28cd6f=_0x56f3e2,_0x2e5a31=_0x56f3e2,_0x48d6a0=_0x56f3e2,_0x36ace3=_0x384014,_0x430c3a={'AvbuI':function(_0x3b6924,_0x4a7753){const _0x18273c=_0x2717;return _0x281aaf[_0x18273c(0xd04)](_0x3b6924,_0x4a7753);},'sQRcn':function(_0x37fa80,_0x491843){const _0x111c77=_0x2717;return _0x281aaf[_0x111c77(0x4f5)](_0x37fa80,_0x491843);},'SQFQN':_0x281aaf[_0x4c2c4d(0x96a)],'JkFOL':function(_0x3309ae,_0x2e0af6){const _0x14bb75=_0x4c2c4d;return _0x281aaf[_0x14bb75(0x431)](_0x3309ae,_0x2e0af6);},'jpLMr':_0x281aaf[_0x4c2c4d(0x95c)],'tyzVf':_0x281aaf[_0x4c2c4d(0x71a)],'lMOJY':function(_0x26ac60,_0x374e6a){const _0x319395=_0x2e5a31;return _0x281aaf[_0x319395(0x683)](_0x26ac60,_0x374e6a);},'ErDsC':_0x281aaf[_0x2e5a31(0x1e9)],'ixTCE':function(_0x40da58,_0x8de6fb){const _0x521205=_0x48d6a0;return _0x281aaf[_0x521205(0x455)](_0x40da58,_0x8de6fb);},'kIgFI':_0x281aaf[_0x36ace3(0x4a2)],'rXWnU':_0x281aaf[_0x4c2c4d(0x9f2)],'coCkF':_0x281aaf[_0x4c2c4d(0x3bc)],'aLpJy':function(_0x9dac3a,_0x56480b){const _0x104f68=_0x36ace3;return _0x281aaf[_0x104f68(0x4f5)](_0x9dac3a,_0x56480b);},'CJfBv':_0x281aaf[_0x48d6a0(0x594)],'mdBQo':function(_0x5d8f6a,_0x3846d6){const _0x42fb88=_0x36ace3;return _0x281aaf[_0x42fb88(0x7fe)](_0x5d8f6a,_0x3846d6);},'qftvz':_0x281aaf[_0x4c2c4d(0xb00)],'mEwnb':_0x281aaf[_0x2e5a31(0x7b7)],'DuNvf':_0x281aaf[_0x2e5a31(0xc6c)],'CjCmH':_0x281aaf[_0x2e5a31(0x746)],'dYFQz':function(_0x5e7d5e,_0x4c9ceb){const _0x3412f2=_0x2e5a31;return _0x281aaf[_0x3412f2(0x664)](_0x5e7d5e,_0x4c9ceb);},'aXDrP':function(_0x47c8af,_0xaae1e7,_0x44a9e5){const _0x10aafe=_0x28cd6f;return _0x281aaf[_0x10aafe(0x771)](_0x47c8af,_0xaae1e7,_0x44a9e5);},'juLaH':_0x281aaf[_0x48d6a0(0x195)],'QGEzB':function(_0x23cd54,_0x22aa60){const _0x4560a6=_0x4c2c4d;return _0x281aaf[_0x4560a6(0x82d)](_0x23cd54,_0x22aa60);},'Zctfy':function(_0x5011bd,_0x564fbf){const _0x5766af=_0x36ace3;return _0x281aaf[_0x5766af(0x669)](_0x5011bd,_0x564fbf);},'JMRVK':function(_0x25a5c5,_0xa3ab5a){const _0x468249=_0x28cd6f;return _0x281aaf[_0x468249(0x296)](_0x25a5c5,_0xa3ab5a);},'ikaiU':_0x281aaf[_0x2e5a31(0xcda)],'Dwwdp':function(_0x45c952,_0x5cb15a){const _0x970066=_0x2e5a31;return _0x281aaf[_0x970066(0x9bc)](_0x45c952,_0x5cb15a);},'xESwc':_0x281aaf[_0x4c2c4d(0x7a5)],'ZFcXq':_0x281aaf[_0x36ace3(0x220)],'Uogsw':_0x281aaf[_0x4c2c4d(0x391)],'FDLZm':_0x281aaf[_0x4c2c4d(0xa18)],'YOwQX':function(_0x2ba036,_0x36b490){const _0x426656=_0x48d6a0;return _0x281aaf[_0x426656(0x4aa)](_0x2ba036,_0x36b490);},'SVcxy':function(_0x13abd2,_0x3e1e46){const _0x50f89f=_0x28cd6f;return _0x281aaf[_0x50f89f(0xc08)](_0x13abd2,_0x3e1e46);},'iSItf':_0x281aaf[_0x4c2c4d(0x29a)],'URrdF':_0x281aaf[_0x2e5a31(0x204)],'IvbCf':_0x281aaf[_0x4c2c4d(0xcfd)],'IcRKE':_0x281aaf[_0x2e5a31(0xc70)],'FpWIM':_0x281aaf[_0x48d6a0(0xd15)],'BWaOF':_0x281aaf[_0x2e5a31(0x521)],'gukik':_0x281aaf[_0x28cd6f(0xc8d)],'emMmo':function(_0xeb6645,_0x4ff2af){const _0x5394d2=_0x48d6a0;return _0x281aaf[_0x5394d2(0x396)](_0xeb6645,_0x4ff2af);},'gnIMk':_0x281aaf[_0x48d6a0(0x3bb)],'qBCTf':function(_0x4aa2c2,_0x1e7d97){const _0x3ba103=_0x48d6a0;return _0x281aaf[_0x3ba103(0xd04)](_0x4aa2c2,_0x1e7d97);},'QpngV':function(_0x40ce4f,_0x56d552){const _0x4ea8bb=_0x4c2c4d;return _0x281aaf[_0x4ea8bb(0x775)](_0x40ce4f,_0x56d552);},'Aafkh':_0x281aaf[_0x4c2c4d(0x9cc)],'BmJAx':_0x281aaf[_0x48d6a0(0x1c1)],'qBxny':_0x281aaf[_0x2e5a31(0x978)],'ZaeJz':function(_0x16ac25,_0x4cf297){const _0x53c615=_0x48d6a0;return _0x281aaf[_0x53c615(0x342)](_0x16ac25,_0x4cf297);},'XeHYq':_0x281aaf[_0x48d6a0(0x3b4)],'zbocw':_0x281aaf[_0x48d6a0(0x6ff)],'IblqD':_0x281aaf[_0x48d6a0(0x22c)],'XqeZb':function(_0x1464a4,_0x4cfca7){const _0x131111=_0x48d6a0;return _0x281aaf[_0x131111(0x775)](_0x1464a4,_0x4cfca7);},'wtzkW':_0x281aaf[_0x48d6a0(0x5ac)],'cyZUt':_0x281aaf[_0x48d6a0(0x513)],'LDfYV':_0x281aaf[_0x2e5a31(0x37c)],'kuQBX':_0x281aaf[_0x2e5a31(0xa47)]};if(_0x281aaf[_0x48d6a0(0x4ec)](_0x281aaf[_0x36ace3(0x65e)],_0x281aaf[_0x28cd6f(0x356)]))_0x2cecbc+=_0x1bb904[0x1*-0x18ed+0x270f+-0x9*0x192][_0x36ace3(0x494)][_0x36ace3(0x8bd)+'nt'];else{keytextres=_0x281aaf[_0x36ace3(0x849)](unique,_0x115695),promptWebpage=_0x281aaf[_0x2e5a31(0x949)](_0x281aaf[_0x2e5a31(0x848)](_0x281aaf[_0x48d6a0(0x6dd)](_0x281aaf[_0x4c2c4d(0x434)],article[_0x48d6a0(0x920)]),'\x0a'),_0x281aaf[_0x36ace3(0x2b3)]);for(el in modalele){if(_0x281aaf[_0x48d6a0(0xa35)](_0x281aaf[_0x2e5a31(0x6f5)],_0x281aaf[_0x36ace3(0x7bc)])){const _0x2796d4=_0x47875d[_0x48d6a0(0x563)][_0x4c2c4d(0x74a)]('|');let _0xde89a4=-0x2*0x913+0x205e+0x7*-0x208;while(!![]){switch(_0x2796d4[_0xde89a4++]){case'0':_0x2bc87b[_0x4c2c4d(0x8eb)+_0x36ace3(0x7de)+_0x36ace3(0x192)](_0x47875d[_0x48d6a0(0x501)])[_0x2e5a31(0x832)][_0x2e5a31(0x5de)+'ay']='';continue;case'1':return;case'2':_0x3dcdbb[_0x2e5a31(0x8eb)+_0x2e5a31(0x7de)+_0x36ace3(0x192)](_0x47875d[_0x2e5a31(0xb1e)])[_0x36ace3(0x832)][_0x2e5a31(0x5de)+'ay']='';continue;case'3':_0x47875d[_0x28cd6f(0x999)](_0x5ba9cd);continue;case'4':_0x226c8b=-0x10c4+-0x19c8+0x4*0xaa3;continue;}break;}}else{if(_0x281aaf[_0x28cd6f(0x6e1)](_0x281aaf[_0x36ace3(0x431)](_0x281aaf[_0x36ace3(0xb15)](promptWebpage,modalele[el]),'\x0a')[_0x36ace3(0x7c2)+'h'],0x1*0x1263+-0x2*-0xae7+-0x1d*0x155))promptWebpage=_0x281aaf[_0x36ace3(0x683)](_0x281aaf[_0x4c2c4d(0x22b)](promptWebpage,modalele[el]),'\x0a');}}promptWebpage=_0x281aaf[_0x36ace3(0x848)](promptWebpage,_0x281aaf[_0x2e5a31(0x374)]),keySentencesCount=0x2293+0x11*-0x1c1+0x6*-0xcb;for(st in keytextres){if(_0x281aaf[_0x2e5a31(0x2a7)](_0x281aaf[_0x28cd6f(0xae4)],_0x281aaf[_0x2e5a31(0x466)])){if(_0x281aaf[_0x2e5a31(0x313)](_0x281aaf[_0x28cd6f(0x171)](_0x281aaf[_0x36ace3(0xb6d)](promptWebpage,keytextres[st]),'\x0a')[_0x36ace3(0x7c2)+'h'],-0x71*0x4+0x1*0xd6f+-0x1*0x6fb))promptWebpage=_0x281aaf[_0x28cd6f(0x431)](_0x281aaf[_0x2e5a31(0x800)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0x281aaf[_0x2e5a31(0xb6d)](keySentencesCount,0x1e7b+-0x2566*-0x1+-0x43e0);}else _0x47875d[_0x4c2c4d(0x485)](_0x4a0bc9,_0x47875d[_0x2e5a31(0x736)]);}const _0x2d9fdf={};_0x2d9fdf[_0x48d6a0(0x3df)]=_0x281aaf[_0x48d6a0(0x312)],_0x2d9fdf[_0x2e5a31(0x8bd)+'nt']=_0x281aaf[_0x2e5a31(0xa24)];const _0x254a3d={};_0x254a3d[_0x4c2c4d(0x3df)]=_0x281aaf[_0x28cd6f(0xb38)],_0x254a3d[_0x2e5a31(0x8bd)+'nt']=promptWebpage;const _0x27249a={};_0x27249a[_0x4c2c4d(0x3df)]=_0x281aaf[_0x36ace3(0x594)],_0x27249a[_0x4c2c4d(0x8bd)+'nt']=_0x281aaf[_0x48d6a0(0xc28)],promptWeb=[_0x2d9fdf,_0x254a3d,_0x27249a];const _0xe8075f={'method':_0x281aaf[_0x48d6a0(0x3bc)],'headers':headers,'body':_0x281aaf[_0x2e5a31(0x8a1)](b64EncodeUnicode,JSON[_0x4c2c4d(0x5e3)+_0x4c2c4d(0x75a)]({'messages':promptWeb[_0x2e5a31(0x46c)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(-0x4*-0x5f3+-0x2c*0x94+0x1a5),prev_chat=document[_0x4c2c4d(0x8eb)+_0x2e5a31(0x7de)+_0x4c2c4d(0x192)](_0x281aaf[_0x4c2c4d(0x3b4)])[_0x4c2c4d(0xabd)+_0x4c2c4d(0x18e)],_0x281aaf[_0x4c2c4d(0x919)](fetch,_0x281aaf[_0x4c2c4d(0x195)],_0xe8075f)[_0x28cd6f(0x91b)](_0x1a9b0f=>{const _0xea4acb=_0x2e5a31,_0x50186d=_0x28cd6f,_0x3ef01d=_0x36ace3,_0x30a304=_0x36ace3,_0x1e758d=_0x2e5a31,_0x18d754={'aEDUN':_0x430c3a[_0xea4acb(0xab1)],'dhCNR':function(_0x4df50a,_0x1a2895){const _0x2f1752=_0xea4acb;return _0x430c3a[_0x2f1752(0x18a)](_0x4df50a,_0x1a2895);},'BvepX':_0x430c3a[_0xea4acb(0x30a)],'tRwhN':function(_0x385ccb,_0x554ab0){const _0x13b056=_0xea4acb;return _0x430c3a[_0x13b056(0x814)](_0x385ccb,_0x554ab0);},'nIsxn':_0x430c3a[_0x50186d(0x4c2)],'VHVVn':_0x430c3a[_0x3ef01d(0xb7e)],'mFrne':_0x430c3a[_0x50186d(0xb4e)],'CgbKk':_0x430c3a[_0x1e758d(0x39a)],'euhRo':function(_0x5d977c,_0x10e65f){const _0x5aac4b=_0x3ef01d;return _0x430c3a[_0x5aac4b(0x8da)](_0x5d977c,_0x10e65f);},'mnZeN':_0x430c3a[_0x50186d(0x806)],'RKekK':function(_0x25fcec,_0x49e58f,_0x4903a8){const _0x392dc4=_0x3ef01d;return _0x430c3a[_0x392dc4(0x450)](_0x25fcec,_0x49e58f,_0x4903a8);},'xgzep':_0x430c3a[_0x1e758d(0xae9)],'ptNzZ':function(_0xf03b53,_0x63f264){const _0x329951=_0xea4acb;return _0x430c3a[_0x329951(0x6b5)](_0xf03b53,_0x63f264);},'gcSci':function(_0x1d52f9,_0x48f052){const _0x5e79d2=_0xea4acb;return _0x430c3a[_0x5e79d2(0x1e8)](_0x1d52f9,_0x48f052);},'KOCOh':function(_0x1c0c0d,_0x299bb3){const _0x513849=_0xea4acb;return _0x430c3a[_0x513849(0xc11)](_0x1c0c0d,_0x299bb3);},'wmSdh':function(_0x22fc31,_0x32623c){const _0x35ee68=_0x1e758d;return _0x430c3a[_0x35ee68(0xccd)](_0x22fc31,_0x32623c);},'eWsta':_0x430c3a[_0x1e758d(0xa62)],'sQoPw':function(_0x57cb20,_0x2203f8){const _0x245be8=_0x30a304;return _0x430c3a[_0x245be8(0xba6)](_0x57cb20,_0x2203f8);},'mubpR':_0x430c3a[_0x3ef01d(0x8f1)],'wbGBn':function(_0x13b66a,_0x4cfc5c){const _0x2ff355=_0x1e758d;return _0x430c3a[_0x2ff355(0xba6)](_0x13b66a,_0x4cfc5c);},'MQmNC':_0x430c3a[_0x50186d(0x4ca)],'CGHmB':_0x430c3a[_0x3ef01d(0x89c)],'ZurwF':_0x430c3a[_0xea4acb(0x893)],'PdWiD':function(_0xb9b671,_0x3a9e7e){const _0x23ed2b=_0x3ef01d;return _0x430c3a[_0x23ed2b(0x9a1)](_0xb9b671,_0x3a9e7e);},'qTzon':function(_0x405a15,_0x53a877){const _0x111e0c=_0x50186d;return _0x430c3a[_0x111e0c(0x444)](_0x405a15,_0x53a877);},'tAlFE':_0x430c3a[_0x30a304(0x484)],'BvtNN':function(_0x41c5b2,_0x150cc7){const _0x1d0049=_0x50186d;return _0x430c3a[_0x1d0049(0xb45)](_0x41c5b2,_0x150cc7);},'AdvnE':_0x430c3a[_0xea4acb(0x2a2)],'JFGhS':_0x430c3a[_0x30a304(0xb97)],'quzCJ':function(_0xd6f384,_0x27a984){const _0x50ef6=_0x50186d;return _0x430c3a[_0x50ef6(0xba6)](_0xd6f384,_0x27a984);},'JuRIu':_0x430c3a[_0x30a304(0x1ff)],'Trfrh':_0x430c3a[_0x3ef01d(0x66d)],'LqNHc':_0x430c3a[_0x50186d(0x43a)],'SEvcl':_0x430c3a[_0xea4acb(0x7ed)],'kwYsY':_0x430c3a[_0x50186d(0x3e8)],'POCSk':function(_0x10eae6,_0x4b6329){const _0x28bd2e=_0x30a304;return _0x430c3a[_0x28bd2e(0x83c)](_0x10eae6,_0x4b6329);},'hzCCf':_0x430c3a[_0x50186d(0x74c)],'kqxPb':function(_0x15bc91,_0x2e20e8){const _0x18d66d=_0xea4acb;return _0x430c3a[_0x18d66d(0x642)](_0x15bc91,_0x2e20e8);},'ubyWg':function(_0x12f1a4,_0x32f664){const _0x1141de=_0x1e758d;return _0x430c3a[_0x1141de(0xb86)](_0x12f1a4,_0x32f664);},'vhmmP':_0x430c3a[_0x3ef01d(0x6b3)],'uHVJl':_0x430c3a[_0x1e758d(0x8e2)],'FQCGR':_0x430c3a[_0x1e758d(0x1fd)],'KMUIz':function(_0x527a04,_0x3ab389,_0x4b4e5b){const _0x20144f=_0x3ef01d;return _0x430c3a[_0x20144f(0x450)](_0x527a04,_0x3ab389,_0x4b4e5b);},'vkFld':function(_0x69509d,_0x4d5d76){const _0x59e352=_0x30a304;return _0x430c3a[_0x59e352(0x436)](_0x69509d,_0x4d5d76);},'ZPuvQ':_0x430c3a[_0xea4acb(0xc91)],'aGQHr':function(_0x5e07ca,_0xb75895){const _0x249de5=_0x3ef01d;return _0x430c3a[_0x249de5(0x7cf)](_0x5e07ca,_0xb75895);},'GEHZg':_0x430c3a[_0x30a304(0x181)],'nRwlT':_0x430c3a[_0x3ef01d(0x48d)]};if(_0x430c3a[_0x30a304(0xc3c)](_0x430c3a[_0x3ef01d(0x1ca)],_0x430c3a[_0x50186d(0x491)]))return _0x165d88[_0xea4acb(0x462)](new _0x5825f5(_0x44168d));else{const _0x771e7c=_0x1a9b0f[_0x3ef01d(0x61f)][_0x50186d(0x516)+_0x3ef01d(0x69d)]();let _0x2ef0b7='',_0x3f90a2='';_0x771e7c[_0x1e758d(0x6e5)]()[_0x3ef01d(0x91b)](function _0x243959({done:_0x28a3e1,value:_0x1a6956}){const _0x127e3e=_0xea4acb,_0x50f78e=_0x50186d,_0x421ac8=_0x30a304,_0x2e43ff=_0x30a304,_0x3baf3c=_0xea4acb,_0x5b8263={'ewJrD':function(_0x587ebb,_0x40a88c){const _0x3f557f=_0x2717;return _0x430c3a[_0x3f557f(0xc11)](_0x587ebb,_0x40a88c);},'lDdTo':function(_0x481a93,_0x5860d8){const _0xb858b8=_0x2717;return _0x430c3a[_0xb858b8(0xa20)](_0x481a93,_0x5860d8);},'CwSqM':_0x430c3a[_0x127e3e(0x806)],'JLwnM':function(_0x52cc9e,_0x46a37c){const _0x3589d6=_0x127e3e;return _0x430c3a[_0x3589d6(0x346)](_0x52cc9e,_0x46a37c);},'LGKJC':_0x430c3a[_0x127e3e(0x5f0)],'hXucq':_0x430c3a[_0x127e3e(0x41d)],'lCeuh':function(_0x26d60c,_0x1ac429){const _0x4894dd=_0x421ac8;return _0x430c3a[_0x4894dd(0x7cf)](_0x26d60c,_0x1ac429);},'QcXkU':_0x430c3a[_0x2e43ff(0x43a)]};if(_0x430c3a[_0x2e43ff(0xb45)](_0x430c3a[_0x2e43ff(0x55c)],_0x430c3a[_0x50f78e(0x55c)])){const _0xb21fd8={'method':_0x18d754[_0x421ac8(0x9da)],'headers':_0x2540f1,'body':_0x18d754[_0x3baf3c(0xbe7)](_0x33a2e6,_0x83e102[_0x3baf3c(0x5e3)+_0x3baf3c(0x75a)]({'messages':[{'role':_0x18d754[_0x3baf3c(0xa61)],'content':_0x18d754[_0x50f78e(0x24e)](_0x18d754[_0x421ac8(0x24e)](_0x18d754[_0x421ac8(0x24e)](_0x18d754[_0x421ac8(0x24e)](_0x17ff3d[_0x2e43ff(0x938)+_0x50f78e(0x502)+_0x50f78e(0x1dd)](_0x18d754[_0x421ac8(0xd13)])[_0x2e43ff(0xabd)+_0x421ac8(0x18e)][_0x2e43ff(0x379)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x127e3e(0x379)+'ce'](/<hr.*/gs,'')[_0x2e43ff(0x379)+'ce'](/<[^>]+>/g,'')[_0x3baf3c(0x379)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x18d754[_0x50f78e(0x8e9)]),_0x206db7),_0x18d754[_0x50f78e(0x69f)])},{'role':_0x18d754[_0x2e43ff(0xa61)],'content':_0x18d754[_0x50f78e(0x767)]}][_0x50f78e(0x46c)+'t'](_0x597dd4),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x18d754[_0x127e3e(0xb41)](_0x421aea[_0x3baf3c(0x938)+_0x421ac8(0x502)+_0x421ac8(0x1dd)](_0x18d754[_0x127e3e(0x9e4)])[_0x127e3e(0xabd)+_0x127e3e(0x18e)],''))return;_0x18d754[_0x50f78e(0xb50)](_0x150a19,_0x18d754[_0x50f78e(0x264)],_0xb21fd8)[_0x50f78e(0x91b)](_0x1d854d=>_0x1d854d[_0x50f78e(0x939)]())[_0x3baf3c(0x91b)](_0x92858b=>{const _0x3d2ea0=_0x421ac8,_0x115c12=_0x3baf3c,_0x4b3fe9=_0x2e43ff,_0x4eb1fd=_0x3baf3c,_0x296051=_0x3baf3c,_0x3e2930={'fOdIh':function(_0x4c5d9b,_0x5f34ee){const _0x3ec613=_0x2717;return _0x5b8263[_0x3ec613(0xaf4)](_0x4c5d9b,_0x5f34ee);},'mMMbR':function(_0xb9c5c8,_0x207c18){const _0x582f8b=_0x2717;return _0x5b8263[_0x582f8b(0x732)](_0xb9c5c8,_0x207c18);},'NYKPh':_0x5b8263[_0x3d2ea0(0x26e)],'dmEMs':function(_0x340867,_0x39f4eb){const _0x524cd=_0x3d2ea0;return _0x5b8263[_0x524cd(0x6bf)](_0x340867,_0x39f4eb);},'PlKlQ':function(_0x4deed8,_0x50503){const _0x5c2109=_0x3d2ea0;return _0x5b8263[_0x5c2109(0x6bf)](_0x4deed8,_0x50503);},'CqBon':_0x5b8263[_0x115c12(0xc90)],'zZDcm':_0x5b8263[_0x3d2ea0(0xa0b)]};_0x50c421[_0x115c12(0x245)](_0x92858b[_0x3d2ea0(0x676)+'es'][0x188b+-0x1*-0x26e6+-0x6d*0x95][_0x296051(0x6d1)+'ge'][_0x296051(0x8bd)+'nt'][_0x4b3fe9(0x379)+_0x115c12(0x830)]('\x0a',''))[_0x4b3fe9(0xcba)+'ch'](_0x7f7fb1=>{const _0x3f17cd=_0x3d2ea0,_0x54de1c=_0x296051,_0x1fac49=_0x4eb1fd,_0x3cfeb6=_0x4eb1fd,_0x435004=_0x3d2ea0;if(_0x3e2930[_0x3f17cd(0x584)](_0x3e2930[_0x3f17cd(0x8ed)](_0xf94400,_0x7f7fb1)[_0x3f17cd(0x7c2)+'h'],-0x1127*0x1+-0x1cd+0x12f9))_0x2d62a4[_0x54de1c(0x938)+_0x54de1c(0x502)+_0x3cfeb6(0x1dd)](_0x3e2930[_0x54de1c(0xb72)])[_0x3cfeb6(0xabd)+_0x435004(0x18e)]+=_0x3e2930[_0x3cfeb6(0x51c)](_0x3e2930[_0x3f17cd(0x269)](_0x3e2930[_0x3cfeb6(0x7b3)],_0x3e2930[_0x435004(0x8ed)](_0x310e4b,_0x7f7fb1)),_0x3e2930[_0x3cfeb6(0xa5a)]);});})[_0x421ac8(0xb18)](_0x252e74=>_0x80fd63[_0x127e3e(0x1e1)](_0x252e74)),_0x560615=_0x18d754[_0x2e43ff(0x24e)](_0x1d35ee,'\x0a\x0a'),_0x1f1c94=-(-0xc*-0x1f5+0x1cf4+-0x346f*0x1);}else{if(_0x28a3e1)return;const _0x324c77=new TextDecoder(_0x430c3a[_0x127e3e(0xbe3)])[_0x127e3e(0x55a)+'e'](_0x1a6956);return _0x324c77[_0x2e43ff(0xbcb)]()[_0x50f78e(0x74a)]('\x0a')[_0x421ac8(0xcba)+'ch'](function(_0x4add88){const _0x55249b=_0x2e43ff,_0x573e26=_0x2e43ff,_0x5bd09d=_0x127e3e,_0x2fadcd=_0x2e43ff,_0x3139af=_0x421ac8,_0x4e95d={'ebQeT':function(_0x4baf32,_0x2ea04b){const _0x15a654=_0x2717;return _0x18d754[_0x15a654(0x24e)](_0x4baf32,_0x2ea04b);},'eitJC':function(_0x4c7d09,_0x349752){const _0x1a3227=_0x2717;return _0x18d754[_0x1a3227(0xc3f)](_0x4c7d09,_0x349752);},'qVxVb':function(_0x155bdf,_0x37741c){const _0x2af6b1=_0x2717;return _0x18d754[_0x2af6b1(0xc5a)](_0x155bdf,_0x37741c);},'zaIfj':function(_0x1b3a84,_0xb1118){const _0x4598f1=_0x2717;return _0x18d754[_0x4598f1(0x582)](_0x1b3a84,_0xb1118);},'xcBDJ':function(_0x398fa3,_0xe496a2){const _0x4647cf=_0x2717;return _0x18d754[_0x4647cf(0xc3f)](_0x398fa3,_0xe496a2);},'kJcVg':function(_0x5a5574,_0x22fbfc){const _0x58d178=_0x2717;return _0x18d754[_0x58d178(0xbc1)](_0x5a5574,_0x22fbfc);},'TmyIo':function(_0x1f627d,_0x3b1572){const _0x1ea09a=_0x2717;return _0x18d754[_0x1ea09a(0x24e)](_0x1f627d,_0x3b1572);},'SMmcR':function(_0x5c1f67,_0x42c147){const _0x144a1a=_0x2717;return _0x18d754[_0x144a1a(0x24e)](_0x5c1f67,_0x42c147);},'IzizY':_0x18d754[_0x55249b(0xce6)],'SRxlb':function(_0x29fa9e,_0x4c1f5a){const _0x26b523=_0x55249b;return _0x18d754[_0x26b523(0xbe7)](_0x29fa9e,_0x4c1f5a);}};if(_0x18d754[_0x55249b(0xbc8)](_0x18d754[_0x55249b(0x2eb)],_0x18d754[_0x55249b(0x2eb)])){try{if(_0x18d754[_0x55249b(0x6a4)](_0x18d754[_0x573e26(0x9fd)],_0x18d754[_0x5bd09d(0xb3c)])){const _0x2976b2={'bndPL':function(_0x351de1,_0x41a598){const _0x47070e=_0x5bd09d;return _0x4e95d[_0x47070e(0x8d2)](_0x351de1,_0x41a598);},'BQEad':function(_0x55cdbe,_0x4bbfc2){const _0x445d8b=_0x55249b;return _0x4e95d[_0x445d8b(0xafd)](_0x55cdbe,_0x4bbfc2);},'vFqlL':function(_0x4d7df5,_0x5df397){const _0x4d186c=_0x3139af;return _0x4e95d[_0x4d186c(0x72f)](_0x4d7df5,_0x5df397);}},_0x44682a=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x40327a=new _0x37b119(),_0x3bdcbb=(_0x5cd3e3,_0x57e264)=>{const _0x3d4e37=_0x3139af,_0x3f1a2e=_0x5bd09d,_0x4fc84d=_0x55249b,_0x12adb1=_0x3139af,_0x48fb8d=_0x5bd09d;if(_0x40327a[_0x3d4e37(0x395)](_0x57e264))return _0x5cd3e3;const _0x4e21ff=_0x57e264[_0x3d4e37(0x74a)](/[;,;、,]/),_0x2ae451=_0x4e21ff[_0x4fc84d(0x386)](_0x2b2fb7=>'['+_0x2b2fb7+']')[_0x12adb1(0x7db)]('\x20'),_0x18acdc=_0x4e21ff[_0x3d4e37(0x386)](_0x58df40=>'['+_0x58df40+']')[_0x3f1a2e(0x7db)]('\x0a');_0x4e21ff[_0x3f1a2e(0xcba)+'ch'](_0x3cf0ee=>_0x40327a[_0x3d4e37(0x872)](_0x3cf0ee)),_0x4557ef='\x20';for(var _0x2ced49=_0x2976b2[_0x3d4e37(0xc4b)](_0x2976b2[_0x4fc84d(0x3b6)](_0x40327a[_0x48fb8d(0x6e9)],_0x4e21ff[_0x3f1a2e(0x7c2)+'h']),-0x3f8+-0x11a9+0x15a2);_0x2976b2[_0x3f1a2e(0xbbd)](_0x2ced49,_0x40327a[_0x48fb8d(0x6e9)]);++_0x2ced49)_0x1c2ba9+='[^'+_0x2ced49+']\x20';return _0x454b6b;};let _0x3f81cb=-0x1a5+-0xc0b+0x5*0x2bd,_0x3e7331=_0x135d40[_0x5bd09d(0x379)+'ce'](_0x44682a,_0x3bdcbb);while(_0x4e95d[_0x3139af(0x858)](_0x40327a[_0x3139af(0x6e9)],-0x22cf+-0x2da+0x25a9*0x1)){const _0x5d7b00='['+_0x3f81cb++ +_0x5bd09d(0x184)+_0x40327a[_0x2fadcd(0x7cc)+'s']()[_0x2fadcd(0x4c6)]()[_0x5bd09d(0x7cc)],_0x4d6c03='[^'+_0x4e95d[_0x3139af(0xc0b)](_0x3f81cb,-0x1*-0x7d7+0x5ab+-0xd81*0x1)+_0x573e26(0x184)+_0x40327a[_0x2fadcd(0x7cc)+'s']()[_0x55249b(0x4c6)]()[_0x573e26(0x7cc)];_0x3e7331=_0x3e7331+'\x0a\x0a'+_0x4d6c03,_0x40327a[_0x5bd09d(0x5ae)+'e'](_0x40327a[_0x55249b(0x7cc)+'s']()[_0x2fadcd(0x4c6)]()[_0x55249b(0x7cc)]);}return _0x3e7331;}else document[_0x2fadcd(0x938)+_0x2fadcd(0x502)+_0x573e26(0x1dd)](_0x18d754[_0x5bd09d(0x6fd)])[_0x5bd09d(0x68c)+_0x2fadcd(0x38a)]=document[_0x3139af(0x938)+_0x2fadcd(0x502)+_0x5bd09d(0x1dd)](_0x18d754[_0x2fadcd(0x6fd)])[_0x55249b(0x68c)+_0x573e26(0x8d4)+'ht'];}catch(_0x405518){}_0x2ef0b7='';if(_0x18d754[_0x5bd09d(0x2e4)](_0x4add88[_0x5bd09d(0x7c2)+'h'],0xc*0x83+-0x1df2*0x1+0x1*0x17d4))_0x2ef0b7=_0x4add88[_0x573e26(0x7fb)](0xca2+-0x24b1+-0xf*-0x19b);if(_0x18d754[_0x55249b(0xaaf)](_0x2ef0b7,_0x18d754[_0x2fadcd(0x173)])){if(_0x18d754[_0x5bd09d(0x5ea)](_0x18d754[_0x55249b(0x808)],_0x18d754[_0x573e26(0x895)])){lock_chat=-0x21b6+0x21b0+-0x1*-0x6;return;}else try{_0x3e3c56=_0x330847[_0x55249b(0x245)](_0x5b8263[_0x55249b(0xd03)](_0x25a238,_0x458c00))[_0x5b8263[_0x2fadcd(0xbec)]],_0x5beb56='';}catch(_0x4d9240){_0x3abff2=_0x2f84cf[_0x5bd09d(0x245)](_0x39067e)[_0x5b8263[_0x2fadcd(0xbec)]],_0x8318af='';}}let _0x3641bc;try{if(_0x18d754[_0x573e26(0x537)](_0x18d754[_0x2fadcd(0x4b1)],_0x18d754[_0x573e26(0x4b1)]))try{if(_0x18d754[_0x3139af(0x5ea)](_0x18d754[_0x55249b(0xbf5)],_0x18d754[_0x3139af(0xbf5)])){if(_0x4e95d[_0x2fadcd(0x1cd)](_0x4e95d[_0x55249b(0x59e)](_0x4e95d[_0x3139af(0x8d2)](_0x58b703,_0x2140d3[_0x5d7011]),'\x0a')[_0x3139af(0x7c2)+'h'],0x212*0x7+-0x151*0x19+0x23*0xa9))_0xd147ba=_0x4e95d[_0x2fadcd(0x8d2)](_0x4e95d[_0x573e26(0x55b)](_0x5625b4,_0x5df837[_0x47194f]),'\x0a');_0x14ace9=_0x4e95d[_0x5bd09d(0x8d2)](_0x2172a6,-0x1a*-0x110+0x1344+-0x2ee3);}else _0x3641bc=JSON[_0x573e26(0x245)](_0x18d754[_0x3139af(0x24e)](_0x3f90a2,_0x2ef0b7))[_0x18d754[_0x2fadcd(0x1e7)]],_0x3f90a2='';}catch(_0x4ca44b){_0x18d754[_0x573e26(0x537)](_0x18d754[_0x3139af(0x7ea)],_0x18d754[_0x3139af(0x31d)])?_0x4cd127[_0x139e2c]++:(_0x3641bc=JSON[_0x2fadcd(0x245)](_0x2ef0b7)[_0x18d754[_0x55249b(0x1e7)]],_0x3f90a2='');}else _0x2e24f4+='';}catch(_0x3eef6d){if(_0x18d754[_0x55249b(0xbed)](_0x18d754[_0x2fadcd(0xbc6)],_0x18d754[_0x5bd09d(0xbc6)]))return-(0x2350+-0x2503+-0xda*-0x2);else _0x3f90a2+=_0x2ef0b7;}_0x3641bc&&_0x18d754[_0x2fadcd(0x845)](_0x3641bc[_0x55249b(0x7c2)+'h'],0x28e+-0x190*-0x16+-0x24ee)&&_0x3641bc[0x15a6+0x13d*0x9+0x20cb*-0x1][_0x55249b(0x494)][_0x55249b(0x8bd)+'nt']&&(_0x18d754[_0x2fadcd(0x47d)](_0x18d754[_0x573e26(0x9ce)],_0x18d754[_0x55249b(0x708)])?_0x55a8c2=_0x4e95d[_0x55249b(0x968)]:chatTemp+=_0x3641bc[0x1*0xf97+0x1*-0x19d1+0x11*0x9a][_0x55249b(0x494)][_0x5bd09d(0x8bd)+'nt']),chatTemp=chatTemp[_0x5bd09d(0x379)+_0x573e26(0x830)]('\x0a\x0a','\x0a')[_0x2fadcd(0x379)+_0x2fadcd(0x830)]('\x0a\x0a','\x0a'),document[_0x2fadcd(0x938)+_0x2fadcd(0x502)+_0x573e26(0x1dd)](_0x18d754[_0x3139af(0x879)])[_0x2fadcd(0xabd)+_0x55249b(0x18e)]='',_0x18d754[_0x5bd09d(0xc04)](markdownToHtml,_0x18d754[_0x573e26(0xad6)](beautify,chatTemp),document[_0x2fadcd(0x938)+_0x55249b(0x502)+_0x2fadcd(0x1dd)](_0x18d754[_0x2fadcd(0x879)])),document[_0x3139af(0x8eb)+_0x2fadcd(0x7de)+_0x5bd09d(0x192)](_0x18d754[_0x55249b(0xad7)])[_0x2fadcd(0xabd)+_0x5bd09d(0x18e)]=_0x18d754[_0x55249b(0x24e)](_0x18d754[_0x5bd09d(0x24e)](_0x18d754[_0x5bd09d(0x811)](prev_chat,_0x18d754[_0x573e26(0x75b)]),document[_0x2fadcd(0x938)+_0x55249b(0x502)+_0x55249b(0x1dd)](_0x18d754[_0x3139af(0x879)])[_0x55249b(0xabd)+_0x2fadcd(0x18e)]),_0x18d754[_0x55249b(0x54b)]);}else while(_0x4e95d[_0x573e26(0x858)](_0x4e95d[_0x573e26(0x7f3)](_0x2fc780,_0x5a5efc),_0x41f401)){_0x152977[_0x2fadcd(0x57f)]();}}),_0x771e7c[_0x127e3e(0x6e5)]()[_0x421ac8(0x91b)](_0x243959);}});}})[_0x48d6a0(0xb18)](_0x1038ce=>{const _0x4b4bf9=_0x48d6a0,_0x2d3757=_0x48d6a0,_0x17ea91=_0x4c2c4d,_0x421c7b=_0x2e5a31,_0x14acb2=_0x2e5a31;_0x430c3a[_0x4b4bf9(0xc3c)](_0x430c3a[_0x4b4bf9(0x5e1)],_0x430c3a[_0x17ea91(0x5e1)])?console[_0x2d3757(0x1e1)](_0x430c3a[_0x14acb2(0xca2)],_0x1038ce):_0x1aa380+=_0x4c40ee[0x21*0x67+0x4*0x793+-0x2b93][_0x17ea91(0x494)][_0x2d3757(0x8bd)+'nt'];});}});}},_0x555f32=>{const _0x315df5=_0x3aebf8,_0x393343=_0x164a08,_0x1846c9=_0x3aebf8,_0x322e8c=_0x3aebf8,_0x44eb32=_0x1e123d;_0x281aaf[_0x315df5(0xad1)](_0x281aaf[_0x393343(0x6e6)],_0x281aaf[_0x393343(0x499)])?console[_0x315df5(0x58d)](_0x555f32):_0x2b0e0b+=_0x253839[_0x44eb32(0x8bd)+'nt'][_0x393343(0x7c2)+'h'];});}function eleparse(_0x18c756){const _0x1a73fa=_0x2717,_0x1149f2=_0x2717,_0x4407d2=_0x2717,_0x4e144b=_0x2717,_0x1a8fff=_0x2717,_0x33a43e={'dCXWI':function(_0x2ab56e,_0x2310d3){return _0x2ab56e+_0x2310d3;},'ErwaL':_0x1a73fa(0x676)+'es','lnmtw':function(_0x432839,_0x27dced){return _0x432839<_0x27dced;},'kXzvw':function(_0x59837f,_0x2ffece){return _0x59837f+_0x2ffece;},'ExLlu':_0x1a73fa(0xaac)+':','GTosu':function(_0x109c82,_0xe4145f){return _0x109c82(_0xe4145f);},'dAUDR':function(_0x254a60,_0x585a12){return _0x254a60+_0x585a12;},'cubdq':_0x1149f2(0xa01)+_0x4407d2(0x25f)+_0x1a8fff(0x8be)+_0x1149f2(0xaca),'cFtDE':_0x1149f2(0x3d6)+_0x4e144b(0xcc5)+_0x1a73fa(0x96e)+_0x4407d2(0x670)+_0x1a8fff(0x4fd)+_0x1a73fa(0x92c)+'\x20)','BLqUu':function(_0x2c7d8b){return _0x2c7d8b();},'SPtYY':_0x1a8fff(0x921)+_0x4e144b(0x4d0),'QknEb':_0x1a73fa(0x886),'dEMGQ':_0x1a8fff(0xb3a)+_0x4e144b(0x1fb),'gNvDi':_0x1a73fa(0x6c0)+_0x1a73fa(0x991)+'t','BMAvF':function(_0x2febf0,_0x138cf7){return _0x2febf0+_0x138cf7;},'JaAEq':function(_0x5f1653,_0x213b2c){return _0x5f1653+_0x213b2c;},'LunbB':_0x4407d2(0xcb8)+'te','IuNjg':_0x4407d2(0xc6f)+_0x4e144b(0x393),'wuhsq':_0x1a8fff(0xb1a)+'ss','ISpgU':_0x1a8fff(0xb5f)+_0x4e144b(0x6d7)+_0x1a8fff(0xa8a),'wGyHM':_0x1a8fff(0x540)+_0x4407d2(0xc37)+'n','lGRSV':_0x1a8fff(0xc64)+_0x4e144b(0x88f),'sTTRO':_0x1a73fa(0x406),'Obvxi':function(_0x37a59d,_0x9b4c3f){return _0x37a59d!==_0x9b4c3f;},'SvICz':_0x4e144b(0xb62),'lhrzv':_0x4407d2(0xb70),'gJITY':function(_0x4c2098,_0x17f9fe){return _0x4c2098>_0x17f9fe;},'PuYCV':function(_0x465a96,_0x1037c){return _0x465a96>_0x1037c;},'fXgnF':function(_0x368b5e,_0x351cc1){return _0x368b5e===_0x351cc1;},'IcFeE':_0x1149f2(0xa9e),'qoPOJ':_0x4407d2(0x3a4),'XlrLP':_0x1149f2(0x7c0)+'h','QWApL':_0x4e144b(0x46f)+_0x4e144b(0x500),'LazFv':function(_0x5acd90,_0x4ad30b){return _0x5acd90!==_0x4ad30b;},'jTiNp':_0x1a73fa(0xc6d),'KAyRD':_0x4e144b(0x354),'KuPWc':_0x1a73fa(0x215),'PtjLy':function(_0x1a259e,_0x558deb){return _0x1a259e===_0x558deb;},'ehSxl':_0x1a73fa(0x421)+'t','kEfjx':_0x1a73fa(0xce0)+_0x1a73fa(0xbdd),'dLXKC':function(_0x208372,_0x2888a2){return _0x208372===_0x2888a2;},'Vhzxw':_0x1a73fa(0x833),'hguiw':_0x4e144b(0x371),'uBRku':function(_0x4413ce,_0x25565a){return _0x4413ce!==_0x25565a;},'fnYzJ':_0x4407d2(0x824)+'n','ebiGL':function(_0x1ecebe,_0x350012){return _0x1ecebe!==_0x350012;},'Welpa':_0x1149f2(0x3b9),'yqArd':function(_0x5ac652,_0x494044){return _0x5ac652===_0x494044;},'cPxse':_0x1149f2(0xa0a),'fyeov':function(_0x51f23f,_0x4c76d4){return _0x51f23f===_0x4c76d4;},'NsVzv':_0x4407d2(0x57b),'pgHvM':_0x4407d2(0xb87),'gLPct':function(_0x1cb7df,_0x4e7bd4){return _0x1cb7df===_0x4e7bd4;},'EEODq':_0x1149f2(0xc9d),'YHWKL':function(_0x52d0fa,_0x38a488){return _0x52d0fa!==_0x38a488;},'NpqDd':_0x4e144b(0x17c),'fKZTS':_0x1a8fff(0xaa2),'Sntlm':function(_0x1fab03,_0x2ae9da){return _0x1fab03===_0x2ae9da;},'iVzwd':_0x4e144b(0x727),'BniAq':_0x4407d2(0xc62),'muwbn':_0x4407d2(0x467),'RjasX':_0x4407d2(0xa9c),'bCoWu':function(_0x1b5848,_0x297686){return _0x1b5848!==_0x297686;},'AhQkU':_0x4e144b(0x3d0),'OUEmf':_0x4407d2(0x76d),'zzdNu':function(_0x14b35b,_0x17c3aa){return _0x14b35b==_0x17c3aa;},'IClyP':function(_0x4c103c,_0x4296aa){return _0x4c103c!==_0x4296aa;},'LkRzt':_0x4407d2(0xaa8),'oYwcx':function(_0x9dad52,_0x5e7c6b){return _0x9dad52!==_0x5e7c6b;},'PSUbe':_0x4407d2(0x6db),'BwoeI':function(_0x1c1a77,_0x24d302){return _0x1c1a77!=_0x24d302;},'VYIxX':_0x4407d2(0x1c2)+'r','pyghA':_0x4407d2(0x4eb),'Kyyjk':_0x1a8fff(0xa31)+_0x4407d2(0xa31)+_0x1a8fff(0xa2d),'CqfpJ':_0x4407d2(0xa4b)+'\x200','tmzza':function(_0x230a42,_0x633462){return _0x230a42!==_0x633462;},'FHRAL':_0x1a73fa(0x383),'LiIcc':function(_0x577d2a,_0x5d48cb){return _0x577d2a!=_0x5d48cb;},'tZZss':function(_0x3ca570,_0x3a3ccb){return _0x3ca570(_0x3a3ccb);}},_0x1470ff=_0x18c756[_0x1149f2(0x938)+_0x1a73fa(0x502)+_0x1a8fff(0x6d0)+'l']('*'),_0x2c459e={};_0x2c459e[_0x1a73fa(0x8b0)+_0x1a73fa(0x6ef)]='左上',_0x2c459e[_0x4e144b(0xc31)+_0x1a8fff(0x639)]='上中',_0x2c459e[_0x4e144b(0x376)+_0x1149f2(0x9c4)]='右上',_0x2c459e[_0x1a8fff(0x1db)+_0x1a8fff(0xa6f)+'T']='左中',_0x2c459e[_0x1a73fa(0x461)+'R']='中间',_0x2c459e[_0x1a73fa(0x1db)+_0x1149f2(0x64b)+'HT']='右中',_0x2c459e[_0x4e144b(0xb9e)+_0x1a73fa(0x2f7)+'T']='左下',_0x2c459e[_0x1a8fff(0xb9e)+_0x1a73fa(0x388)+_0x1a8fff(0x353)]='下中',_0x2c459e[_0x1149f2(0xb9e)+_0x1a8fff(0x54a)+'HT']='右下';const _0x18c78f=_0x2c459e,_0x257474={};_0x257474[_0x1a8fff(0x782)+'00']='黑色',_0x257474[_0x4e144b(0x735)+'ff']='白色',_0x257474[_0x1a73fa(0x3cb)+'00']='红色',_0x257474[_0x4407d2(0x8e0)+'00']='绿色',_0x257474[_0x1a73fa(0x782)+'ff']='蓝色';const _0x48eb0f=_0x257474;let _0x406ff1=[],_0xeae899=[],_0x3292ae=[_0x33a43e[_0x4e144b(0x742)],_0x33a43e[_0x4e144b(0x995)],_0x33a43e[_0x1149f2(0xac6)],_0x33a43e[_0x1a73fa(0x71b)],_0x33a43e[_0x1149f2(0x786)],_0x33a43e[_0x1a73fa(0x3a6)],_0x33a43e[_0x4e144b(0x723)]];for(let _0x5444d2=0x723+0x2460+-0x2b83;_0x33a43e[_0x1149f2(0x446)](_0x5444d2,_0x1470ff[_0x4407d2(0x7c2)+'h']);_0x5444d2++){if(_0x33a43e[_0x4e144b(0x994)](_0x33a43e[_0x4407d2(0x9a3)],_0x33a43e[_0x1a73fa(0x481)])){const _0x50e75b=_0x1470ff[_0x5444d2];let _0x396132='';if(_0x33a43e[_0x4407d2(0x1ad)](_0x50e75b[_0x4407d2(0xb54)+_0x1a8fff(0x514)+'h'],0xfdf*0x1+0x1ee2+-0x1*0x2ec1)||_0x33a43e[_0x4407d2(0xc9f)](_0x50e75b[_0x1a73fa(0xb54)+_0x1149f2(0xb5d)+'ht'],0x1763+0x1537*0x1+0x15a*-0x21)){if(_0x33a43e[_0x1149f2(0x898)](_0x33a43e[_0x1a73fa(0x2dc)],_0x33a43e[_0x1149f2(0x2dc)])){let _0x105fe6=_0x50e75b[_0x1a73fa(0x690)+'me'][_0x1a8fff(0x7df)+_0x1a73fa(0x72a)+'e']();if(_0x33a43e[_0x4e144b(0x898)](_0x105fe6,_0x33a43e[_0x1a8fff(0x1c4)])&&(_0x33a43e[_0x1a73fa(0x898)](_0x50e75b[_0x1a8fff(0x2ca)],_0x33a43e[_0x4407d2(0xc27)])||_0x50e75b[_0x1a73fa(0x633)+_0x4e144b(0x4e2)+'te'](_0x33a43e[_0x4407d2(0x8fd)])&&_0x33a43e[_0x1149f2(0x994)](_0x50e75b[_0x1a8fff(0x633)+_0x1149f2(0x4e2)+'te'](_0x33a43e[_0x4e144b(0x8fd)])[_0x4e144b(0x7df)+_0x4407d2(0x72a)+'e']()[_0x4e144b(0x63b)+'Of'](_0x33a43e[_0x1a8fff(0xc27)]),-(-0x24d3+0x2552+-0x3f*0x2)))){if(_0x33a43e[_0x4407d2(0x35d)](_0x33a43e[_0x1a8fff(0x331)],_0x33a43e[_0x1a8fff(0x2e3)]))_0x105fe6=_0x33a43e[_0x1149f2(0x6a0)];else{const _0x4395ce=_0xcd0f56[_0x1149f2(0x6d2)](_0x4b011d,arguments);return _0x1c4436=null,_0x4395ce;}}else{if(_0x33a43e[_0x4e144b(0x454)](_0x105fe6,_0x33a43e[_0x4e144b(0x1c4)])||_0x33a43e[_0x4407d2(0x898)](_0x105fe6,_0x33a43e[_0x1149f2(0xad3)])||_0x33a43e[_0x4407d2(0x898)](_0x105fe6,_0x33a43e[_0x1a8fff(0x387)])){if(_0x33a43e[_0x1a73fa(0xa46)](_0x33a43e[_0x4407d2(0x7f2)],_0x33a43e[_0x4e144b(0x7f2)]))_0x105fe6=_0x33a43e[_0x1a73fa(0x21c)];else try{_0x1db981=_0x14195e[_0x4e144b(0x245)](_0x33a43e[_0x4e144b(0x480)](_0x5473bf,_0x74902f))[_0x33a43e[_0x4407d2(0xcc7)]],_0x32a8d8='';}catch(_0x238e10){_0x24e5c=_0x1a0f9b[_0x1149f2(0x245)](_0x3ff47b)[_0x33a43e[_0x4e144b(0xcc7)]],_0x3dc4de='';}}else{if(_0x33a43e[_0x4e144b(0x891)](_0x105fe6[_0x1a73fa(0x63b)+'Of'](_0x33a43e[_0x4407d2(0xbb7)]),-(0x1a54+0x8*-0x22a+-0x903))||_0x33a43e[_0x4e144b(0xcbd)](_0x50e75b['id'][_0x1a8fff(0x63b)+'Of'](_0x33a43e[_0x4407d2(0xbb7)]),-(0x520+0x2417+0xd3*-0x32))){if(_0x33a43e[_0x4407d2(0x891)](_0x33a43e[_0x1a73fa(0x5bf)],_0x33a43e[_0x1149f2(0x5bf)]))try{_0x4824bc=_0x24ba20[_0x1a73fa(0x245)](_0x33a43e[_0x4e144b(0x480)](_0x43bced,_0x4f0795))[_0x33a43e[_0x1a8fff(0xcc7)]],_0x1da601='';}catch(_0x3b8760){_0x188942=_0x325b32[_0x1a8fff(0x245)](_0x52791f)[_0x33a43e[_0x4407d2(0xcc7)]],_0x1152ae='';}else _0x105fe6='按钮';}else{if(_0x33a43e[_0x1149f2(0xc2b)](_0x105fe6,_0x33a43e[_0x1a8fff(0xa8c)])){if(_0x33a43e[_0x1a8fff(0x53e)](_0x33a43e[_0x4e144b(0xa99)],_0x33a43e[_0x1a73fa(0x4fc)])){if(_0x33a43e[_0x1a8fff(0x446)](_0x33a43e[_0x1a73fa(0x70e)](_0x33a43e[_0x1a8fff(0x480)](_0x346f28,_0x207136[_0x5b55e4]),'\x0a')[_0x4407d2(0x7c2)+'h'],-0x7c+0xa*0xb1+0x2*-0x26f))_0x5f5c31=_0x33a43e[_0x4407d2(0x70e)](_0x33a43e[_0x4407d2(0x480)](_0x265892,_0x24fe86[_0x248c25]),'\x0a');}else _0x105fe6='图片';}else{if(_0x33a43e[_0x4407d2(0xcee)](_0x105fe6,_0x33a43e[_0x1a8fff(0x366)]))_0x33a43e[_0x1a8fff(0x9e2)](_0x33a43e[_0x1a73fa(0x6fa)],_0x33a43e[_0x4407d2(0x4a8)])?_0x105fe6='表单':_0x3f4319+='';else{if(_0x33a43e[_0x1a8fff(0x6e8)](_0x105fe6,_0x33a43e[_0x1a73fa(0x524)])||_0x33a43e[_0x1149f2(0x6e8)](_0x105fe6,_0x33a43e[_0x1a8fff(0x59f)]))_0x33a43e[_0x1a8fff(0x891)](_0x33a43e[_0x1a8fff(0xb6f)],_0x33a43e[_0x1a73fa(0xb6f)])?_0x517b0d[_0x4e144b(0x1e1)](_0x33a43e[_0x4e144b(0xa36)],_0x584489):_0x105fe6=_0x33a43e[_0x4407d2(0xc92)];else{if(_0x33a43e[_0x4e144b(0x4e6)](_0x33a43e[_0x1a73fa(0x43c)],_0x33a43e[_0x4e144b(0x9d4)]))_0x105fe6=null;else{var _0x28b294=new _0x40cc89(_0x5a6ffe),_0x3283e9='';for(var _0x49b4f1=-0x93b+-0xb11*-0x1+0xeb*-0x2;_0x33a43e[_0x1a73fa(0x446)](_0x49b4f1,_0x28b294[_0x4e144b(0x31b)+_0x4e144b(0x63f)]);_0x49b4f1++){_0x3283e9+=_0x5443e4[_0x4e144b(0xbd7)+_0x1149f2(0x560)+_0x1a73fa(0x3c2)](_0x28b294[_0x49b4f1]);}return _0x3283e9;}}}}}}}if(_0x105fe6&&(_0x33a43e[_0x4e144b(0x95d)](_0x105fe6,_0x33a43e[_0x4407d2(0xc92)])||_0x50e75b[_0x4407d2(0x920)]||_0x50e75b[_0x4e144b(0x26a)]||_0x50e75b[_0x1a8fff(0x633)+_0x4407d2(0x4e2)+'te'](_0x33a43e[_0x1149f2(0x8fd)]))){if(_0x33a43e[_0x1a8fff(0xb30)](_0x33a43e[_0x4407d2(0x2ce)],_0x33a43e[_0x4407d2(0x2ce)]))_0x329f89[_0x4407d2(0x58d)](_0x44f18d);else{_0x396132+=_0x105fe6;if(_0x50e75b[_0x4407d2(0x920)]){if(_0x33a43e[_0x1a8fff(0xae7)](_0x33a43e[_0x1a8fff(0x266)],_0x33a43e[_0x1a8fff(0x266)]))_0x52f359+=_0x287990[_0x4407d2(0xbd7)+_0x4e144b(0x560)+_0x1a73fa(0x3c2)](_0xe1fa6a[_0x536487]);else{if(_0x33a43e[_0x1a73fa(0x48f)](_0x50e75b[_0x1a8fff(0x920)][_0x1149f2(0x63b)+'Of'](_0x33a43e[_0x1a73fa(0x5ad)]),-(-0x2286+-0xa76+0x2cfd))||_0x3292ae[_0x4407d2(0xbbe)+_0x4e144b(0x714)](_0x50e75b[_0x1a8fff(0x920)][_0x1a8fff(0x7df)+_0x1a8fff(0x72a)+'e']()))continue;_0x396132+=':“'+_0x50e75b[_0x1a8fff(0x920)]+'';}}else{if(_0x50e75b[_0x1149f2(0x26a)]||_0x50e75b[_0x1149f2(0x633)+_0x4407d2(0x4e2)+'te'](_0x33a43e[_0x1149f2(0x8fd)])){if(_0x33a43e[_0x1a73fa(0xa46)](_0x33a43e[_0x4407d2(0xb3f)],_0x33a43e[_0x1a8fff(0xb3f)])){if(_0xeae899[_0x4e144b(0xbbe)+_0x4407d2(0x714)](_0x50e75b[_0x1a73fa(0x26a)]||_0x50e75b[_0x4e144b(0x633)+_0x4e144b(0x4e2)+'te'](_0x33a43e[_0x1a73fa(0x8fd)])))continue;if((_0x50e75b[_0x1149f2(0x26a)]||_0x50e75b[_0x4e144b(0x633)+_0x1149f2(0x4e2)+'te'](_0x33a43e[_0x1149f2(0x8fd)]))[_0x1149f2(0xbbe)+_0x1a73fa(0x714)](_0x33a43e[_0x1149f2(0x5ad)])||_0x3292ae[_0x1a8fff(0xbbe)+_0x4407d2(0x714)]((_0x50e75b[_0x1a8fff(0x26a)]||_0x50e75b[_0x1149f2(0x633)+_0x1149f2(0x4e2)+'te'](_0x33a43e[_0x1149f2(0x8fd)]))[_0x1a8fff(0x7df)+_0x1a73fa(0x72a)+'e']()))continue;_0x396132+=':“'+(_0x50e75b[_0x4e144b(0x26a)]||_0x50e75b[_0x4407d2(0x633)+_0x1a8fff(0x4e2)+'te'](_0x33a43e[_0x4407d2(0x8fd)]))+'',_0xeae899[_0x1149f2(0xb25)](_0x50e75b[_0x1a8fff(0x26a)]||_0x50e75b[_0x1a8fff(0x633)+_0x4407d2(0x4e2)+'te'](_0x33a43e[_0x1a8fff(0x8fd)]));}else{const _0x387b55={'OEonK':function(_0x104ec8,_0x3f1a7a){const _0x24fbec=_0x4e144b;return ibdRAF[_0x24fbec(0x5f6)](_0x104ec8,_0x3f1a7a);},'FFWTO':function(_0x5cdc1,_0x1e4f15){const _0x2da326=_0x4e144b;return ibdRAF[_0x2da326(0xc55)](_0x5cdc1,_0x1e4f15);},'FjmNi':ibdRAF[_0x4407d2(0x437)],'XDkAo':ibdRAF[_0x1149f2(0xa1e)]},_0xcd31ab=function(){const _0x3885e5=_0x4e144b,_0x5e4527=_0x1a73fa,_0x3289ef=_0x1149f2,_0x4732a5=_0x1149f2,_0x3aa80e=_0x1a73fa;let _0x5baca4;try{_0x5baca4=_0x387b55[_0x3885e5(0x23c)](_0x1f8e66,_0x387b55[_0x3885e5(0xcd5)](_0x387b55[_0x5e4527(0xcd5)](_0x387b55[_0x3289ef(0x7c4)],_0x387b55[_0x4732a5(0x788)]),');'))();}catch(_0x3efe81){_0x5baca4=_0x2b4189;}return _0x5baca4;},_0x804a7=ibdRAF[_0x1a8fff(0xc10)](_0xcd31ab);_0x804a7[_0x4e144b(0xb43)+_0x4e144b(0xb99)+'l'](_0x3def42,0x20db*0x1+0x25e9+-0x1*0x3724);}}}if((_0x50e75b[_0x4e144b(0x832)][_0x1149f2(0x506)]||window[_0x1a73fa(0xae3)+_0x4407d2(0xcb9)+_0x1149f2(0x8ec)+'e'](_0x50e75b)[_0x4e144b(0xcf3)+_0x1a73fa(0xd0f)+_0x4e144b(0x6ea)]||window[_0x1a8fff(0xae3)+_0x1149f2(0xcb9)+_0x1a8fff(0x8ec)+'e'](_0x50e75b)[_0x4e144b(0x506)])&&_0x33a43e[_0x1a8fff(0x95d)]((''+(_0x50e75b[_0x1a73fa(0x832)][_0x1a8fff(0x506)]||window[_0x1a8fff(0xae3)+_0x4e144b(0xcb9)+_0x1a73fa(0x8ec)+'e'](_0x50e75b)[_0x4e144b(0xcf3)+_0x4e144b(0xd0f)+_0x1a8fff(0x6ea)]||window[_0x1a73fa(0xae3)+_0x4407d2(0xcb9)+_0x4407d2(0x8ec)+'e'](_0x50e75b)[_0x1a73fa(0x506)]))[_0x1a73fa(0x63b)+'Of'](_0x33a43e[_0x4e144b(0x347)]),-(-0x2473+-0x8f5*0x2+0x1*0x365e))&&_0x33a43e[_0x1149f2(0x95d)]((''+(_0x50e75b[_0x1149f2(0x832)][_0x1149f2(0x506)]||window[_0x1149f2(0xae3)+_0x1149f2(0xcb9)+_0x4e144b(0x8ec)+'e'](_0x50e75b)[_0x4e144b(0xcf3)+_0x4407d2(0xd0f)+_0x4407d2(0x6ea)]||window[_0x4407d2(0xae3)+_0x1a8fff(0xcb9)+_0x1149f2(0x8ec)+'e'](_0x50e75b)[_0x4e144b(0x506)]))[_0x1a8fff(0x63b)+'Of'](_0x33a43e[_0x4e144b(0x636)]),-(-0x19e8+-0x1361*-0x1+-0x344*-0x2))){if(_0x33a43e[_0x4e144b(0x42d)](_0x33a43e[_0x4e144b(0x7b6)],_0x33a43e[_0x1149f2(0x7b6)])){const _0x2f37e2=_0x33a43e[_0x1a73fa(0x307)][_0x1a8fff(0x74a)]('|');let _0x3a049b=0xf*0x21e+0x52f+-0x24f1;while(!![]){switch(_0x2f37e2[_0x3a049b++]){case'0':const _0x581b7e={};_0x581b7e[_0x1a73fa(0x3df)]=_0x33a43e[_0x1149f2(0x61e)],_0x581b7e[_0x4e144b(0x8bd)+'nt']=_0x58d442,_0x462153[_0x1149f2(0xb25)](_0x581b7e);continue;case'1':_0xe50a76=0x1430+-0xb73*0x1+-0x8bd;continue;case'2':return;case'3':const _0x277d09={};_0x277d09[_0x1149f2(0x3df)]=_0x33a43e[_0x1a73fa(0x5fd)],_0x277d09[_0x1149f2(0x8bd)+'nt']=_0x2a8812,_0x9f17ce[_0x1149f2(0xb25)](_0x277d09);continue;case'4':_0x2d16ff[_0x4e144b(0x938)+_0x1a73fa(0x502)+_0x4407d2(0x1dd)](_0x33a43e[_0x1149f2(0x6ad)])[_0x1149f2(0x7cc)]='';continue;}break;}}else _0x396132+=_0x1a8fff(0xb57)+(_0x50e75b[_0x1a73fa(0x832)][_0x1a8fff(0x506)]||window[_0x1a73fa(0xae3)+_0x1a73fa(0xcb9)+_0x4407d2(0x8ec)+'e'](_0x50e75b)[_0x1149f2(0xcf3)+_0x1a8fff(0xd0f)+_0x4407d2(0x6ea)]||window[_0x4e144b(0xae3)+_0x1a73fa(0xcb9)+_0x4e144b(0x8ec)+'e'](_0x50e75b)[_0x1a8fff(0x506)]);}const _0x2eadc9=_0x33a43e[_0x1149f2(0x5f6)](getElementPosition,_0x50e75b);_0x396132+=_0x1a73fa(0x57c)+_0x2eadc9;}}}else{if(_0x33a43e[_0x1a73fa(0x446)](_0x33a43e[_0x1a8fff(0x573)](_0x33a43e[_0x4407d2(0xc55)](_0x13cefe,_0x44cbfa[_0x5992c4]),'\x0a')[_0x1149f2(0x7c2)+'h'],-0xcac+0x23c5*-0x1+0x2f*0x11b))_0x46583c=_0x33a43e[_0x1a73fa(0xc55)](_0x33a43e[_0x4e144b(0x3a8)](_0x28ed1f,_0x1558fc[_0x4adf3e]),'\x0a');}}if(_0x396132&&_0x33a43e[_0x4407d2(0x96f)](_0x396132,''))_0x406ff1[_0x1a73fa(0xb25)](_0x396132);}else try{var _0x4adddf=new _0x54a7cd(_0xec459a),_0xc449fc='';for(var _0x1ac406=0xe0d+0x142+-0xf4f;_0x33a43e[_0x4e144b(0x446)](_0x1ac406,_0x4adddf[_0x4407d2(0x31b)+_0x1a73fa(0x63f)]);_0x1ac406++){_0xc449fc+=_0x43d5cf[_0x4407d2(0xbd7)+_0x1149f2(0x560)+_0x4407d2(0x3c2)](_0x4adddf[_0x1ac406]);}return _0xc449fc;}catch(_0x45784f){}}return _0x33a43e[_0x1149f2(0x3c5)](unique,_0x406ff1);}function unique(_0x4999a6){const _0x40700a=_0x2717;return Array[_0x40700a(0x462)](new Set(_0x4999a6));}function getElementPosition(_0x283113){const _0x12598f=_0x2717,_0x55a333=_0x2717,_0x26bcac=_0x2717,_0x447ed4=_0x2717,_0x391745=_0x2717,_0x2bdde9={};_0x2bdde9[_0x12598f(0x983)]=function(_0x164798,_0x18c43c){return _0x164798<_0x18c43c;},_0x2bdde9[_0x55a333(0x647)]=function(_0x742d29,_0x1b9f3f){return _0x742d29+_0x1b9f3f;},_0x2bdde9[_0x26bcac(0x1b8)]=function(_0x3cfddb,_0x4400b7){return _0x3cfddb+_0x4400b7;},_0x2bdde9[_0x26bcac(0x317)]=function(_0x14b5a6,_0x26cf68){return _0x14b5a6+_0x26cf68;},_0x2bdde9[_0x26bcac(0xaf3)]=_0x447ed4(0x676)+'es',_0x2bdde9[_0x12598f(0x33b)]=function(_0x51f0d9,_0x24b102){return _0x51f0d9+_0x24b102;},_0x2bdde9[_0x391745(0x19b)]=function(_0x50dc25,_0x5c5588){return _0x50dc25/_0x5c5588;},_0x2bdde9[_0x391745(0xc47)]=function(_0x45d929,_0x47ed13){return _0x45d929<_0x47ed13;},_0x2bdde9[_0x12598f(0x703)]=function(_0x33045a,_0x55f295){return _0x33045a/_0x55f295;},_0x2bdde9[_0x391745(0x34c)]=function(_0x506acd,_0x2170c1){return _0x506acd!==_0x2170c1;},_0x2bdde9[_0x12598f(0x9f4)]=_0x391745(0x4a7),_0x2bdde9[_0x55a333(0x18d)]=_0x447ed4(0xcaa),_0x2bdde9[_0x447ed4(0xb7b)]=function(_0x143460,_0x30817b){return _0x143460>_0x30817b;},_0x2bdde9[_0x26bcac(0x530)]=function(_0x1a2a89,_0x42f2b4){return _0x1a2a89*_0x42f2b4;},_0x2bdde9[_0x26bcac(0xabf)]=function(_0x1be938,_0xb24df1){return _0x1be938===_0xb24df1;},_0x2bdde9[_0x447ed4(0x701)]=_0x391745(0x7c8),_0x2bdde9[_0x55a333(0x3f0)]=function(_0x727580,_0x451afb){return _0x727580!==_0x451afb;},_0x2bdde9[_0x447ed4(0x23b)]=_0x447ed4(0x1ea),_0x2bdde9[_0x391745(0x608)]=_0x12598f(0x86e),_0x2bdde9[_0x447ed4(0x3e7)]=function(_0x27e531,_0x2efa55){return _0x27e531<_0x2efa55;},_0x2bdde9[_0x391745(0x489)]=function(_0x2ff7a1,_0x31aa72){return _0x2ff7a1!==_0x31aa72;},_0x2bdde9[_0x55a333(0x194)]=_0x55a333(0x9f6),_0x2bdde9[_0x391745(0x3c0)]=_0x55a333(0x515),_0x2bdde9[_0x55a333(0x281)]=function(_0x44a42e,_0x663b48){return _0x44a42e>_0x663b48;},_0x2bdde9[_0x12598f(0x7e5)]=function(_0x2a9c51,_0x4bda40){return _0x2a9c51/_0x4bda40;},_0x2bdde9[_0x26bcac(0x2a5)]=function(_0x5f53eb,_0x38c172){return _0x5f53eb*_0x38c172;},_0x2bdde9[_0x447ed4(0x508)]=_0x26bcac(0x283),_0x2bdde9[_0x12598f(0xc3b)]=_0x12598f(0xbc0),_0x2bdde9[_0x12598f(0x243)]=_0x55a333(0x222),_0x2bdde9[_0x447ed4(0xac1)]=_0x391745(0x79e);const _0x72c66d=_0x2bdde9,_0x50b4ec=_0x283113[_0x55a333(0x325)+_0x447ed4(0x27b)+_0x447ed4(0x851)+_0x391745(0xa7e)+'t'](),_0x216fae=_0x72c66d[_0x26bcac(0x33b)](_0x50b4ec[_0x26bcac(0x2bd)],_0x72c66d[_0x12598f(0x19b)](_0x50b4ec[_0x391745(0x576)],-0x1da7+0x1d04+0xa5)),_0x31d19c=_0x72c66d[_0x55a333(0x33b)](_0x50b4ec[_0x12598f(0x496)],_0x72c66d[_0x391745(0x19b)](_0x50b4ec[_0x391745(0x4df)+'t'],0x33*-0x41+0xc39+0xbc));let _0x2146fd='';if(_0x72c66d[_0x55a333(0xc47)](_0x216fae,_0x72c66d[_0x447ed4(0x703)](window[_0x55a333(0xabd)+_0x26bcac(0x572)],0xcc1+0x1*-0x2195+-0x61*-0x37)))_0x72c66d[_0x12598f(0x34c)](_0x72c66d[_0x391745(0x9f4)],_0x72c66d[_0x447ed4(0x18d)])?_0x2146fd+='':_0x43f91e=_0xe4e455;else{if(_0x72c66d[_0x55a333(0xb7b)](_0x216fae,_0x72c66d[_0x26bcac(0x19b)](_0x72c66d[_0x447ed4(0x530)](window[_0x12598f(0xabd)+_0x26bcac(0x572)],0x11bd+-0x1*0x1bbf+0xa04),-0x18b0+-0x1*0x2201+0x484*0xd))){if(_0x72c66d[_0x12598f(0xabf)](_0x72c66d[_0x12598f(0x701)],_0x72c66d[_0x26bcac(0x701)]))_0x2146fd+='';else{if(_0x72c66d[_0x12598f(0x983)](_0x72c66d[_0x55a333(0x647)](_0x72c66d[_0x55a333(0x1b8)](_0x5d078f,_0x1b1f4c[_0x41cc86]),'\x0a')[_0x12598f(0x7c2)+'h'],-0x40f+0x1841+-0x16f*0xa))_0x31988d=_0x72c66d[_0x447ed4(0x317)](_0x72c66d[_0x447ed4(0x647)](_0x240d67,_0x11b678[_0x54de3c]),'\x0a');_0x611be2=_0x72c66d[_0x12598f(0x1b8)](_0x34d589,-0xcab+-0xfc3+-0x1d*-0xfb);}}else _0x72c66d[_0x26bcac(0x3f0)](_0x72c66d[_0x26bcac(0x23b)],_0x72c66d[_0x391745(0x608)])?_0x2146fd+='':_0x34563a[_0x26bcac(0x1e1)](_0x232312);}if(_0x72c66d[_0x391745(0x3e7)](_0x31d19c,_0x72c66d[_0x26bcac(0x703)](window[_0x391745(0xabd)+_0x391745(0x20e)+'t'],0x12a2+-0x1f0+-0x10af)))_0x72c66d[_0x12598f(0x489)](_0x72c66d[_0x447ed4(0x194)],_0x72c66d[_0x447ed4(0x3c0)])?_0x2146fd+='':(_0x4d0dd9=_0x31d1c5[_0x447ed4(0x245)](_0x3a8a9d)[_0x72c66d[_0x55a333(0xaf3)]],_0x1b43a5='');else{if(_0x72c66d[_0x12598f(0x281)](_0x31d19c,_0x72c66d[_0x26bcac(0x7e5)](_0x72c66d[_0x26bcac(0x2a5)](window[_0x12598f(0xabd)+_0x391745(0x20e)+'t'],-0x147f+-0xd78*-0x2+-0x66f),-0xb*-0x274+0x15ca*0x1+-0x30c3))){if(_0x72c66d[_0x447ed4(0x34c)](_0x72c66d[_0x447ed4(0x508)],_0x72c66d[_0x55a333(0xc3b)]))_0x2146fd+='';else return!![];}else{if(_0x72c66d[_0x391745(0x34c)](_0x72c66d[_0x447ed4(0x243)],_0x72c66d[_0x391745(0xac1)]))_0x2146fd+='';else return-(-0x1027+0x1582+-0x55a);}}return _0x2146fd;}function stringToArrayBuffer(_0x3303ad){const _0x314128=_0x2717,_0x2aadba=_0x2717,_0x54069d=_0x2717,_0x112535=_0x2717,_0x20c88b=_0x2717,_0x1493b9={};_0x1493b9[_0x314128(0x6c8)]=_0x314128(0x676)+'es',_0x1493b9[_0x2aadba(0x877)]=function(_0x2184b9,_0xa291b2){return _0x2184b9-_0xa291b2;},_0x1493b9[_0x2aadba(0x1b6)]=function(_0x268d8f,_0x2609e5){return _0x268d8f===_0x2609e5;},_0x1493b9[_0x54069d(0x8c5)]=_0x2aadba(0x81e),_0x1493b9[_0x54069d(0x559)]=function(_0x2b472d,_0x5c2b49){return _0x2b472d<_0x5c2b49;},_0x1493b9[_0x54069d(0x2b2)]=function(_0xe38698,_0x28b785){return _0xe38698!==_0x28b785;},_0x1493b9[_0x112535(0xb5a)]=_0x54069d(0x63a);const _0x151fef=_0x1493b9;if(!_0x3303ad)return;try{if(_0x151fef[_0x2aadba(0x1b6)](_0x151fef[_0x112535(0x8c5)],_0x151fef[_0x112535(0x8c5)])){var _0x15ea41=new ArrayBuffer(_0x3303ad[_0x2aadba(0x7c2)+'h']),_0x369ab7=new Uint8Array(_0x15ea41);for(var _0x3769b1=0x170+-0x4*-0x72d+0xa0c*-0x3,_0xc1c5ff=_0x3303ad[_0x20c88b(0x7c2)+'h'];_0x151fef[_0x54069d(0x559)](_0x3769b1,_0xc1c5ff);_0x3769b1++){_0x151fef[_0x20c88b(0x2b2)](_0x151fef[_0x20c88b(0xb5a)],_0x151fef[_0x314128(0xb5a)])?(_0x290ee9=_0x982aaa[_0x2aadba(0x245)](_0x1c984c)[_0x151fef[_0x314128(0x6c8)]],_0x5d9ab4=''):_0x369ab7[_0x3769b1]=_0x3303ad[_0x54069d(0x66a)+_0x2aadba(0x5ec)](_0x3769b1);}return _0x15ea41;}else{const _0x106760='['+_0x3f465e++ +_0x54069d(0x184)+_0x370148[_0x112535(0x7cc)+'s']()[_0x112535(0x4c6)]()[_0x2aadba(0x7cc)],_0x2bfc0c='[^'+_0x151fef[_0x2aadba(0x877)](_0x34a843,-0x1e49*0x1+0x10aa*-0x1+-0x177a*-0x2)+_0x54069d(0x184)+_0x15dd4b[_0x314128(0x7cc)+'s']()[_0x112535(0x4c6)]()[_0x20c88b(0x7cc)];_0x45e56a=_0x4100f8+'\x0a\x0a'+_0x2bfc0c,_0x14f6b9[_0x20c88b(0x5ae)+'e'](_0x1cd1fd[_0x314128(0x7cc)+'s']()[_0x314128(0x4c6)]()[_0x54069d(0x7cc)]);}}catch(_0x5a8ed1){}}function arrayBufferToString(_0x2b8ded){const _0x37c764=_0x2717,_0x2e6307=_0x2717,_0x3471f2=_0x2717,_0x1ee9a5=_0x2717,_0x3c37df=_0x2717,_0x5b7fde={};_0x5b7fde[_0x37c764(0x7a7)]=function(_0xcae7fe,_0x43e645){return _0xcae7fe>_0x43e645;},_0x5b7fde[_0x37c764(0x4b3)]=function(_0x256266,_0x295272){return _0x256266-_0x295272;},_0x5b7fde[_0x2e6307(0x4f3)]=function(_0x2ac6ff,_0x3a7e9a){return _0x2ac6ff+_0x3a7e9a;},_0x5b7fde[_0x1ee9a5(0x941)]=_0x3c37df(0x676)+'es',_0x5b7fde[_0x3471f2(0x565)]=function(_0xdc66d4,_0x5a5df1){return _0xdc66d4!==_0x5a5df1;},_0x5b7fde[_0x1ee9a5(0x3fa)]=_0x1ee9a5(0xb28),_0x5b7fde[_0x3471f2(0x887)]=_0x2e6307(0x694),_0x5b7fde[_0x1ee9a5(0x36b)]=function(_0x1e3eb0,_0x47ef9a){return _0x1e3eb0<_0x47ef9a;},_0x5b7fde[_0x2e6307(0xa1f)]=function(_0x3d7cbc,_0x104f64){return _0x3d7cbc===_0x104f64;},_0x5b7fde[_0x2e6307(0x2da)]=_0x2e6307(0x6af);const _0x26e0fc=_0x5b7fde;try{if(_0x26e0fc[_0x2e6307(0x565)](_0x26e0fc[_0x3471f2(0x3fa)],_0x26e0fc[_0x3471f2(0x887)])){var _0x5b6a92=new Uint8Array(_0x2b8ded),_0x2b9cb6='';for(var _0x4063d9=-0x1ef6+0x50*0x67+-0x13a;_0x26e0fc[_0x37c764(0x36b)](_0x4063d9,_0x5b6a92[_0x3471f2(0x31b)+_0x3471f2(0x63f)]);_0x4063d9++){_0x26e0fc[_0x2e6307(0xa1f)](_0x26e0fc[_0x37c764(0x2da)],_0x26e0fc[_0x37c764(0x2da)])?_0x2b9cb6+=String[_0x3c37df(0xbd7)+_0x3c37df(0x560)+_0x3c37df(0x3c2)](_0x5b6a92[_0x4063d9]):_0x26e0fc[_0x3471f2(0x7a7)](_0x26e0fc[_0x3c37df(0x4b3)](_0x7abd60[_0x1ee9a5(0x16e)](),_0x5bc257),-0x155c+-0x25*0xf1+-0x22ad*-0x5)&&(_0x4a2649=!![]);}return _0x2b9cb6;}else _0xd0bc98=_0x564964[_0x3471f2(0x245)](_0x26e0fc[_0x37c764(0x4f3)](_0x161572,_0x12e10c))[_0x26e0fc[_0x3471f2(0x941)]],_0x1e729e='';}catch(_0x4ee2d6){}}function importPrivateKey(_0x2ae11e){const _0x2d6531=_0x2717,_0x582357=_0x2717,_0x4144f0=_0x2717,_0x197675=_0x2717,_0x1c6da9=_0x2717,_0x3db405={'YVBoX':_0x2d6531(0xae0)+_0x582357(0x4ef)+_0x2d6531(0x7c7)+_0x582357(0xb4c)+_0x2d6531(0x398)+'--','znege':_0x2d6531(0xae0)+_0x197675(0x3b8)+_0x582357(0xa70)+_0x2d6531(0x79c)+_0x582357(0xae0),'sULXv':function(_0x2a185a,_0x3601d8){return _0x2a185a-_0x3601d8;},'spSGq':function(_0x3bf00b,_0x5cf802){return _0x3bf00b(_0x5cf802);},'jvulP':function(_0x3f8d7c,_0x3fa3e7){return _0x3f8d7c(_0x3fa3e7);},'aSbeX':_0x2d6531(0x1a1),'swTds':_0x4144f0(0x9df)+_0x2d6531(0xcd7),'zOFfp':_0x1c6da9(0x528)+'56','PaXgd':_0x2d6531(0x1d4)+'pt'},_0x2073a9=_0x3db405[_0x2d6531(0x30c)],_0x3d4b8c=_0x3db405[_0x4144f0(0xa41)],_0x10e2a0=_0x2ae11e[_0x1c6da9(0x3cf)+_0x4144f0(0x4c8)](_0x2073a9[_0x2d6531(0x7c2)+'h'],_0x3db405[_0x2d6531(0x362)](_0x2ae11e[_0x582357(0x7c2)+'h'],_0x3d4b8c[_0x4144f0(0x7c2)+'h'])),_0xce5568=_0x3db405[_0x582357(0x5a1)](atob,_0x10e2a0),_0x44629c=_0x3db405[_0x2d6531(0x3e6)](stringToArrayBuffer,_0xce5568);return crypto[_0x4144f0(0x83f)+'e'][_0x1c6da9(0x48a)+_0x2d6531(0x7ad)](_0x3db405[_0x582357(0x7da)],_0x44629c,{'name':_0x3db405[_0x2d6531(0x294)],'hash':_0x3db405[_0x4144f0(0x936)]},!![],[_0x3db405[_0x4144f0(0x305)]]);}(function(){const _0x224ab6=_0x2717,_0x24f7d7=_0x2717,_0x238115=_0x2717,_0x332b32=_0x2717,_0x1ee193=_0x2717,_0x15483d={'MgxGU':function(_0x114c39,_0x51bd63){return _0x114c39<_0x51bd63;},'xitDB':function(_0x2b6ab4,_0x5e34e9){return _0x2b6ab4+_0x5e34e9;},'SOSRY':function(_0x3f859e,_0x509ff4){return _0x3f859e+_0x509ff4;},'xHolt':function(_0x3c300c,_0xf89393){return _0x3c300c+_0xf89393;},'aqCtj':_0x224ab6(0x907)+'\x20','XAgnC':_0x224ab6(0x8b7)+_0x24f7d7(0xb89)+_0x224ab6(0x532)+_0x24f7d7(0x568)+_0x332b32(0x863)+_0x1ee193(0x81a)+_0x24f7d7(0xc68)+_0x24f7d7(0x257)+_0x24f7d7(0xb8f)+_0x24f7d7(0xca4)+_0x24f7d7(0xbeb)+_0x24f7d7(0x3e4)+_0x238115(0xb88)+_0x238115(0x8d9)+'果:','MfpnB':function(_0x42263f,_0x481933){return _0x42263f+_0x481933;},'PRnJh':function(_0x220c8f,_0x3400cc){return _0x220c8f+_0x3400cc;},'pDJup':_0x238115(0x31e)+_0x24f7d7(0xbae)+'l','Gfqws':function(_0x5f4341,_0x1b1e9c){return _0x5f4341(_0x1b1e9c);},'exUSf':_0x332b32(0x31e)+_0x24f7d7(0x7fd),'MXegn':function(_0x453dca,_0x386244){return _0x453dca+_0x386244;},'QAVjC':_0x238115(0x7fd),'CnZPR':function(_0x2d1561,_0x235df2){return _0x2d1561(_0x235df2);},'vGaKJ':function(_0x83880b,_0x54610e){return _0x83880b!==_0x54610e;},'gYReS':_0x238115(0x80e),'cTqzt':_0x224ab6(0x533),'RxleT':function(_0x524fd7,_0x5264f5){return _0x524fd7===_0x5264f5;},'qSeZI':_0x238115(0xa09),'ChEss':function(_0x206ec3,_0x725e85){return _0x206ec3(_0x725e85);},'amNFo':function(_0x56c728,_0x2ddd27){return _0x56c728+_0x2ddd27;},'bGynT':_0x238115(0xa01)+_0x24f7d7(0x25f)+_0x332b32(0x8be)+_0x238115(0xaca),'jmslP':_0x332b32(0x3d6)+_0x332b32(0xcc5)+_0x24f7d7(0x96e)+_0x238115(0x670)+_0x238115(0x4fd)+_0x224ab6(0x92c)+'\x20)','LHOSt':function(_0x3824d6,_0x467fab){return _0x3824d6===_0x467fab;},'hLPQV':_0x1ee193(0x6ae),'piAez':function(_0x4ee94b){return _0x4ee94b();}},_0x23674d=function(){const _0x26cb47=_0x238115,_0xbef0a0=_0x332b32,_0x175ebd=_0x24f7d7,_0x346603=_0x24f7d7,_0x53c47a=_0x1ee193;if(_0x15483d[_0x26cb47(0x7d0)](_0x15483d[_0x26cb47(0x717)],_0x15483d[_0xbef0a0(0xa72)])){let _0x90c628;try{if(_0x15483d[_0x175ebd(0xce7)](_0x15483d[_0x26cb47(0xc3a)],_0x15483d[_0x53c47a(0xc3a)]))_0x90c628=_0x15483d[_0x26cb47(0x95e)](Function,_0x15483d[_0x26cb47(0x803)](_0x15483d[_0x346603(0x335)](_0x15483d[_0x26cb47(0x3de)],_0x15483d[_0x53c47a(0x3b3)]),');'))();else{if(_0x15483d[_0x26cb47(0xa37)](_0x15483d[_0x346603(0xafb)](_0x15483d[_0x26cb47(0xafb)](_0x15483d[_0x26cb47(0xafb)](_0x15483d[_0x26cb47(0x748)](_0x15483d[_0x53c47a(0x803)](_0x1d0dd4,_0x2091e[_0xbef0a0(0x231)][_0x18bd26]),'\x0a'),_0x15483d[_0x175ebd(0x42f)]),_0x5b90c2),_0x15483d[_0x26cb47(0x38b)])[_0x53c47a(0x7c2)+'h'],-0x6d*-0x4b+-0x4e3+-0x1530))_0x5cfc48+=_0x15483d[_0x53c47a(0xbee)](_0x5d998e[_0x175ebd(0x231)][_0x1854da],'\x0a');}}catch(_0x25f8e0){_0x15483d[_0xbef0a0(0x593)](_0x15483d[_0x175ebd(0xc36)],_0x15483d[_0x175ebd(0xc36)])?_0x90c628=window:_0x87d4c7+=_0x12a864;}return _0x90c628;}else _0x4a16cf=_0x236685[_0xbef0a0(0x379)+'ce'](_0x15483d[_0x53c47a(0x3a1)](_0x15483d[_0x26cb47(0xc5c)],_0x15483d[_0x53c47a(0x726)](_0x302d8d,_0x2041b4)),_0x3accc0[_0x26cb47(0x279)+_0x26cb47(0xaa1)][_0x17d0ae]),_0x2a25a6=_0x195d73[_0x53c47a(0x379)+'ce'](_0x15483d[_0xbef0a0(0x748)](_0x15483d[_0x53c47a(0x4ae)],_0x15483d[_0x346603(0x726)](_0x58e5cf,_0x5cd497)),_0x44814c[_0x175ebd(0x279)+_0x53c47a(0xaa1)][_0x3d143a]),_0x3ca668=_0x5dafac[_0xbef0a0(0x379)+'ce'](_0x15483d[_0x26cb47(0xae8)](_0x15483d[_0x53c47a(0x359)],_0x15483d[_0xbef0a0(0x3f5)](_0x52098b,_0xfcb434)),_0x54a6c3[_0x53c47a(0x279)+_0x346603(0xaa1)][_0x566fe9]);},_0x234d82=_0x15483d[_0x224ab6(0x5f5)](_0x23674d);_0x234d82[_0x224ab6(0xb43)+_0x1ee193(0xb99)+'l'](_0x2619f7,0x244+0xc65*-0x3+-0x13*-0x2a9);}());function importPublicKey(_0x43f18a){const _0x11ad98=_0x2717,_0x3340ce=_0x2717,_0x983e4c=_0x2717,_0x1a4f8b=_0x2717,_0x5ca5de=_0x2717,_0x2b902b={'tpIVD':_0x11ad98(0x47b)+_0x11ad98(0xb47),'gWXII':function(_0x5c9054,_0x374165){return _0x5c9054+_0x374165;},'ATofR':_0x11ad98(0x1c8)+_0x1a4f8b(0x709)+_0x983e4c(0x926)+_0x983e4c(0x854)+_0x3340ce(0x5cf)+'\x22>','IcDWM':_0x983e4c(0x442),'IRoAL':_0x1a4f8b(0xbd2)+_0x5ca5de(0x966)+_0x5ca5de(0xc1e)+_0x1a4f8b(0x545),'TWsvp':_0x3340ce(0xb9f),'SBRkK':_0x983e4c(0x2cc),'LvWrB':_0x11ad98(0x34d)+'>','Viizv':_0x1a4f8b(0x676)+'es','StRGh':function(_0xdbcb61,_0x818532){return _0xdbcb61===_0x818532;},'Fhwom':_0x11ad98(0x8e3),'DgocS':function(_0x54f69a,_0x1277c1){return _0x54f69a===_0x1277c1;},'jAmcV':_0x1a4f8b(0xcde),'LTApM':function(_0x40f335,_0x1aa728){return _0x40f335(_0x1aa728);},'Lhesm':_0x3340ce(0x33d)+'ss','gITcP':_0x3340ce(0x813)+'d','vnQqL':function(_0x2598c6,_0x2d5b09){return _0x2598c6!==_0x2d5b09;},'JyPNm':_0x983e4c(0x1df),'xgrNC':_0x983e4c(0x943),'NRvhX':_0x11ad98(0x86a),'biTHg':_0x5ca5de(0x375),'FHnde':function(_0x51af3b,_0x581a09){return _0x51af3b+_0x581a09;},'rJGGW':_0x3340ce(0x9a4),'jcjwP':_0x11ad98(0xac8),'xRyFO':_0x1a4f8b(0x535)+'n','GhhGE':_0x5ca5de(0x9cf),'axMGP':_0x1a4f8b(0xbd1)+_0x1a4f8b(0xbcd)+'+$','vrowO':function(_0x35c0a9,_0x2791ab){return _0x35c0a9>=_0x2791ab;},'ZvMcx':_0x983e4c(0x744)+_0x5ca5de(0x9ec)+_0x1a4f8b(0x3a3)+_0x3340ce(0xb95)+_0x3340ce(0xa78)+_0x11ad98(0x478)+_0x11ad98(0x261)+_0x5ca5de(0xaec)+_0x11ad98(0x6bd)+_0x983e4c(0xcc6)+_0x3340ce(0x884)+_0x983e4c(0xd08)+_0x3340ce(0x82a),'TJvFL':_0x3340ce(0x32f),'Caskf':_0x3340ce(0x610)+_0x11ad98(0x3aa)+'rl','jLlOG':function(_0xa39ed1,_0xe98ef9){return _0xa39ed1+_0xe98ef9;},'xKZkA':_0x983e4c(0x933)+'l','dQJjz':function(_0x5eb90b,_0x54607a){return _0x5eb90b(_0x54607a);},'pxkMZ':function(_0x5f0c8d,_0x143e79){return _0x5f0c8d(_0x143e79);},'rKAua':function(_0x1d3392,_0x9c9972){return _0x1d3392+_0x9c9972;},'McXKy':_0x1a4f8b(0x2a9)+_0x1a4f8b(0x31e)+_0x3340ce(0xbae)+'l','TLqqo':function(_0xe9fe18,_0x1a1988){return _0xe9fe18(_0x1a1988);},'tWGFv':function(_0x205f47,_0x313eea){return _0x205f47+_0x313eea;},'lcaKR':_0x11ad98(0x96c),'zAbGP':function(_0x5a88eb,_0x5c6f19){return _0x5a88eb(_0x5c6f19);},'FShGq':function(_0x19de44,_0x553911){return _0x19de44+_0x553911;},'yrvQE':function(_0x5174e8,_0x4363b8){return _0x5174e8(_0x4363b8);},'lPFKm':_0x11ad98(0xaa7)+'l','rfFFY':function(_0x3fdc0f,_0x15134a){return _0x3fdc0f+_0x15134a;},'JVGyo':_0x3340ce(0x27a),'nmard':function(_0x9abdf0,_0x53f9af){return _0x9abdf0(_0x53f9af);},'lLpaO':_0x11ad98(0x351)+_0x5ca5de(0x6f2)+_0x3340ce(0x859),'wyitS':function(_0x34f70f,_0xeefda9){return _0x34f70f+_0xeefda9;},'hslKV':_0x3340ce(0x1bd)+_0x3340ce(0x615)+_0x1a4f8b(0x369),'CBsvd':_0x983e4c(0x2a9)+_0x5ca5de(0x7fd),'BxWze':function(_0x4b26a1,_0x4b95bc){return _0x4b26a1(_0x4b95bc);},'XtlBp':function(_0x3ef24c,_0x4231ce){return _0x3ef24c+_0x4231ce;},'OxcCP':_0x5ca5de(0x6de)+'rl','GSmCe':_0x11ad98(0x997)+_0x3340ce(0x6f2)+_0x983e4c(0x859),'BttRR':function(_0x30cc6d,_0x3f8af9){return _0x30cc6d+_0x3f8af9;},'cjCff':_0x1a4f8b(0x2a9)+_0x3340ce(0x962)+_0x983e4c(0x3aa)+'rl','uilPp':_0x1a4f8b(0x2b7),'CvOxS':function(_0xac5ef9,_0x13bd83){return _0xac5ef9(_0x13bd83);},'LjMzm':_0x983e4c(0xcb5)+'l','cPdaz':function(_0x40aeeb,_0xebdcd6){return _0x40aeeb(_0xebdcd6);},'Eghwx':_0x1a4f8b(0x460)+_0x3340ce(0x615)+_0x983e4c(0x369),'FojLM':function(_0x4b6bb7,_0x923f92){return _0x4b6bb7(_0x923f92);},'PXWlg':_0x5ca5de(0x2a9)+':','Qxxhz':function(_0x2e6acc,_0x4bf36d){return _0x2e6acc+_0x4bf36d;},'NIzOV':_0x983e4c(0x3a2)+'rl','XuWDd':function(_0x12a971,_0x2f9e7b){return _0x12a971(_0x2f9e7b);},'zxQTy':function(_0x281255,_0x5e05e7){return _0x281255+_0x5e05e7;},'keSVF':_0x11ad98(0xb3b)+'rl','JOwmI':function(_0x445fd2,_0x3379e2){return _0x445fd2(_0x3379e2);},'xllHA':_0x5ca5de(0x2a6)+_0x11ad98(0x615)+_0x1a4f8b(0x369),'mpyYi':_0x11ad98(0x2a9)+_0x1a4f8b(0x61d),'RKzsS':_0x983e4c(0x27f)+_0x5ca5de(0x6f2)+_0x983e4c(0x859),'egkUX':function(_0xa93b12,_0x5c3b77){return _0xa93b12+_0x5c3b77;},'oMqPa':_0x3340ce(0x2a9),'UXGIa':function(_0x54fb71,_0x18c916){return _0x54fb71+_0x18c916;},'CCZKj':function(_0x24bd6e,_0x1197df){return _0x24bd6e+_0x1197df;},'KIwCl':_0x3340ce(0x31e)+_0x3340ce(0xbae)+'l','PKGjX':_0x5ca5de(0x31e)+_0x983e4c(0x7fd),'JdGTn':function(_0x32539c,_0x578668){return _0x32539c+_0x578668;},'EQgXL':_0x5ca5de(0x7fd),'jMMse':_0x3340ce(0x6aa),'SXVps':_0x1a4f8b(0xaba),'GXigx':_0x3340ce(0xc8b),'XgDLm':_0x11ad98(0xa92),'OXusN':_0x1a4f8b(0x6e3),'PHGJD':_0x983e4c(0xaac)+':','gffpP':function(_0x1c2f11,_0x51d04c){return _0x1c2f11!==_0x51d04c;},'XuHtd':_0x11ad98(0xcf6),'gYRml':_0x1a4f8b(0x4bf)+_0x11ad98(0x7bf)+_0x5ca5de(0x4f9)+')','wKxNT':_0x3340ce(0xc8f)+_0x5ca5de(0xace)+_0x3340ce(0x7e2)+_0x5ca5de(0xb33)+_0x983e4c(0x8e8)+_0x11ad98(0x9d0)+_0x983e4c(0x176),'lbOqs':function(_0x23c1dc,_0x382b33){return _0x23c1dc(_0x382b33);},'LmTrK':_0x11ad98(0x49e),'EiUJG':_0x11ad98(0x820),'Teqql':function(_0x20afd6,_0xc974d5){return _0x20afd6+_0xc974d5;},'hJPEN':_0x11ad98(0x3a4),'EmlpQ':function(_0x4b310e,_0x4378a6){return _0x4b310e!==_0x4378a6;},'dBUfR':_0x3340ce(0xca1),'NBayi':_0x11ad98(0x28e),'nUMhc':function(_0x230d18,_0x45e39f){return _0x230d18(_0x45e39f);},'cyogi':function(_0x3fc615,_0x83d87a){return _0x3fc615===_0x83d87a;},'txMWM':_0x3340ce(0x2d2),'woork':function(_0x1deb40){return _0x1deb40();},'tmhdc':_0x1a4f8b(0xbf9)+_0x11ad98(0x90c)+_0x11ad98(0x791),'WGmNI':_0x11ad98(0xc54)+'er','AjrZw':_0x1a4f8b(0x9c3),'WcTTQ':_0x3340ce(0x183),'ZVWvv':function(_0x3ab7f4,_0x322839,_0x4d74ae){return _0x3ab7f4(_0x322839,_0x4d74ae);},'XExYI':function(_0x4fc8a,_0x2212c6){return _0x4fc8a>_0x2212c6;},'VleiL':function(_0x286dde,_0x1de8e4){return _0x286dde(_0x1de8e4);},'etNZW':_0x3340ce(0x6c0)+_0x983e4c(0x2dd),'QGyaX':function(_0x203526,_0x27b22a){return _0x203526+_0x27b22a;},'Oitjv':_0x11ad98(0x6ba)+_0x3340ce(0x464)+_0x5ca5de(0x966)+_0x11ad98(0x7f4)+_0x5ca5de(0x1cc)+_0x3340ce(0xa97)+_0x3340ce(0xcc3)+_0x1a4f8b(0x70f)+_0x3340ce(0xa2f)+_0x983e4c(0x4ba)+_0x3340ce(0x4b6),'vfsiC':_0x1a4f8b(0x2fe)+_0x983e4c(0x4ab),'rwEtJ':_0x11ad98(0x344),'dQPAN':_0x1a4f8b(0x1d1),'YGiFd':_0x11ad98(0x37e),'DPmqE':_0x3340ce(0xc8a),'Iqhgi':function(_0x3ab13a,_0x18f885){return _0x3ab13a!==_0x18f885;},'nNNkF':_0x983e4c(0x4a5),'inLTt':function(_0x524ac4,_0x167e03){return _0x524ac4===_0x167e03;},'Opwce':_0x5ca5de(0x9c8),'pgqmm':function(_0x4414ee,_0x427189){return _0x4414ee(_0x427189);},'HdqPs':function(_0x2db10c,_0x30552e){return _0x2db10c+_0x30552e;},'HPosF':function(_0x3cddd2,_0x432fd1){return _0x3cddd2(_0x432fd1);},'VjMGW':_0x983e4c(0x471),'qIUGM':_0x1a4f8b(0xb53),'qdIUt':function(_0x40e16f,_0x598cd6){return _0x40e16f(_0x598cd6);},'olNlt':function(_0x103bac,_0x2371e2){return _0x103bac+_0x2371e2;},'NvfAm':function(_0xd23902,_0xfa3dbc){return _0xd23902+_0xfa3dbc;},'nAiAx':_0x11ad98(0xa01)+_0x5ca5de(0x25f)+_0x983e4c(0x8be)+_0x3340ce(0xaca),'WZqIG':_0x5ca5de(0x3d6)+_0x983e4c(0xcc5)+_0x983e4c(0x96e)+_0x5ca5de(0x670)+_0x3340ce(0x4fd)+_0x983e4c(0x92c)+'\x20)','EnVcK':function(_0x37902a){return _0x37902a();},'sZfLX':_0x983e4c(0x49c),'tZyPY':_0x983e4c(0x9ab),'HMiJc':_0x3340ce(0x58d),'LdfFE':_0x983e4c(0x9a7),'NNOTD':_0x983e4c(0xc79),'onoec':_0x5ca5de(0x1e1),'KOgHb':_0x5ca5de(0xc98)+_0x3340ce(0x8fa),'SBMIp':_0x1a4f8b(0x64d),'rTODr':_0x1a4f8b(0x89d),'krZsN':function(_0x166a2c,_0x33b8d7){return _0x166a2c<_0x33b8d7;},'lOCTx':function(_0x2dcd31,_0x17ff93){return _0x2dcd31===_0x17ff93;},'XKUQV':_0x3340ce(0xcb3),'yqKjS':function(_0x6ff033,_0x285b45,_0x53627b){return _0x6ff033(_0x285b45,_0x53627b);},'OTzLk':function(_0x53d171){return _0x53d171();},'hqSWd':_0x983e4c(0xae0)+_0x1a4f8b(0x4ef)+_0x983e4c(0x3fe)+_0x11ad98(0xcb4)+_0x3340ce(0x5b8)+'-','ufUpc':_0x3340ce(0xae0)+_0x1a4f8b(0x3b8)+_0x11ad98(0x4f7)+_0x11ad98(0x5ef)+_0x1a4f8b(0x1ae),'UACFr':function(_0x53872c,_0x25b106){return _0x53872c-_0x25b106;},'zwKZo':function(_0x1e88bd,_0x55cf3a){return _0x1e88bd(_0x55cf3a);},'TibUj':function(_0x57e578,_0x512a07){return _0x57e578(_0x512a07);},'GeXLB':_0x1a4f8b(0x78d),'kihHa':_0x1a4f8b(0x9df)+_0x11ad98(0xcd7),'fkdTd':_0x983e4c(0x528)+'56','EPXvV':_0x983e4c(0x649)+'pt'},_0x317c25=(function(){const _0x48e13b=_0x3340ce,_0x5a3219=_0x983e4c,_0x1d3fad=_0x1a4f8b,_0x1a9198=_0x983e4c,_0x5f5cd7=_0x11ad98,_0x102d96={'GLDHL':_0x2b902b[_0x48e13b(0xb0e)],'GLTUK':function(_0x2026d9,_0x568ab6){const _0x508947=_0x48e13b;return _0x2b902b[_0x508947(0xb09)](_0x2026d9,_0x568ab6);},'GqsHW':function(_0x8de8d3,_0x388a6b){const _0x36be20=_0x48e13b;return _0x2b902b[_0x36be20(0xb09)](_0x8de8d3,_0x388a6b);},'YmURY':_0x2b902b[_0x5a3219(0x8df)],'UNxRB':_0x2b902b[_0x5a3219(0x482)],'ETVrI':_0x2b902b[_0x1d3fad(0x79b)],'QZgho':_0x2b902b[_0x5f5cd7(0x512)],'jHtpr':_0x2b902b[_0x1d3fad(0x557)],'ylJak':_0x2b902b[_0x1d3fad(0x4ed)],'sZpbx':_0x2b902b[_0x48e13b(0x648)],'zZatc':function(_0x5bc8c3,_0x35be32){const _0xd13798=_0x48e13b;return _0x2b902b[_0xd13798(0x9f7)](_0x5bc8c3,_0x35be32);},'XWDAt':_0x2b902b[_0x48e13b(0xc42)],'ShLEA':function(_0x4ba481,_0x4fd02c){const _0x35c8cd=_0x5f5cd7;return _0x2b902b[_0x35c8cd(0x1b7)](_0x4ba481,_0x4fd02c);},'DGZvr':_0x2b902b[_0x5a3219(0x2d3)],'zZHbS':function(_0x3b4879,_0x5c31aa){const _0x36c4a1=_0x48e13b;return _0x2b902b[_0x36c4a1(0xb07)](_0x3b4879,_0x5c31aa);},'mQfxt':_0x2b902b[_0x5f5cd7(0x3ed)],'QpKYp':_0x2b902b[_0x1d3fad(0x71f)],'DShHe':function(_0x433485,_0x307e06){const _0x2e8abf=_0x1a9198;return _0x2b902b[_0x2e8abf(0x40d)](_0x433485,_0x307e06);},'rirMS':_0x2b902b[_0x48e13b(0x76a)],'RHHuE':_0x2b902b[_0x5a3219(0xa15)]};if(_0x2b902b[_0x48e13b(0x1b7)](_0x2b902b[_0x48e13b(0x20a)],_0x2b902b[_0x48e13b(0x625)]))_0x636128[_0x2112bf]=-0x1*-0x10a1+0x2440+-0x34e1,_0x2e48e2[_0x356aa1]=-0xd*-0x153+0x23fa+-0x59*0x99;else{let _0x4754cc=!![];return function(_0x49dab6,_0x50d60b){const _0x4b0034=_0x1d3fad,_0x7a752a=_0x1a9198,_0x3366af=_0x5f5cd7,_0x4061de=_0x5f5cd7,_0x3186c9=_0x5a3219,_0x230a60={'fesvZ':_0x102d96[_0x4b0034(0x3c4)],'qIMEa':function(_0x482a5d,_0x10d7a3){const _0x32964f=_0x4b0034;return _0x102d96[_0x32964f(0x56f)](_0x482a5d,_0x10d7a3);},'clEGB':function(_0x5ab6ec,_0x59d523){const _0x146617=_0x4b0034;return _0x102d96[_0x146617(0xb08)](_0x5ab6ec,_0x59d523);},'PvmAa':_0x102d96[_0x4b0034(0x17d)],'FKpgH':_0x102d96[_0x7a752a(0x78b)],'EPkRW':_0x102d96[_0x3366af(0x6ab)],'kxmcw':_0x102d96[_0x3186c9(0x8e6)],'pFxNn':_0x102d96[_0x4061de(0xb83)],'lKNOW':_0x102d96[_0x7a752a(0x2a0)],'NvZZZ':_0x102d96[_0x3366af(0x8e5)],'iAySB':function(_0x161461,_0x399db6){const _0x455260=_0x4061de;return _0x102d96[_0x455260(0x1c3)](_0x161461,_0x399db6);},'CIyQv':_0x102d96[_0x4b0034(0x63c)],'YxsCc':function(_0x243ca0,_0x17b66f){const _0x598cff=_0x4b0034;return _0x102d96[_0x598cff(0x31f)](_0x243ca0,_0x17b66f);},'NikTE':_0x102d96[_0x4061de(0xadb)],'HmaCD':function(_0x3296e4,_0x3d5976){const _0x1bc937=_0x4061de;return _0x102d96[_0x1bc937(0x248)](_0x3296e4,_0x3d5976);},'COzeH':_0x102d96[_0x3186c9(0x8b1)],'bpdPw':_0x102d96[_0x7a752a(0x3ee)]};if(_0x102d96[_0x7a752a(0x4e8)](_0x102d96[_0x3366af(0x86c)],_0x102d96[_0x4061de(0x300)])){const _0x5ab15a=_0x4754cc?function(){const _0x43b15f=_0x3366af,_0x128398=_0x7a752a,_0x183537=_0x4061de,_0x297f30=_0x4b0034,_0x191d08=_0x3366af,_0x269eb9={'MZTHJ':function(_0x3bd839,_0xfa10c3){const _0x57d756=_0x2717;return _0x230a60[_0x57d756(0x472)](_0x3bd839,_0xfa10c3);},'Rdsur':_0x230a60[_0x43b15f(0x28f)]};if(_0x230a60[_0x128398(0xb2a)](_0x230a60[_0x43b15f(0x244)],_0x230a60[_0x128398(0x244)])){if(_0x50d60b){if(_0x230a60[_0x43b15f(0x240)](_0x230a60[_0x297f30(0x621)],_0x230a60[_0x297f30(0x621)])){const _0x50e309=_0x50d60b[_0x183537(0x6d2)](_0x49dab6,arguments);return _0x50d60b=null,_0x50e309;}else _0x4934f3[_0x183537(0x8eb)+_0x128398(0x7de)+_0x297f30(0x192)](_0x230a60[_0x43b15f(0x7cd)])[_0x128398(0xabd)+_0x191d08(0x18e)]=_0x230a60[_0x43b15f(0x472)](_0x230a60[_0x183537(0x472)](_0x230a60[_0x128398(0xa39)](_0x230a60[_0x128398(0x472)](_0x230a60[_0x128398(0xa39)](_0x230a60[_0x183537(0xa39)](_0x3ac900,_0x230a60[_0x183537(0x4e3)]),_0x230a60[_0x191d08(0x8f6)]),_0x230a60[_0x43b15f(0xca9)]),_0x230a60[_0x191d08(0xc4a)]),_0x230a60[_0x191d08(0x552)]),_0x230a60[_0x191d08(0xbb3)]);}}else _0x187ed2=_0x224ec9[_0x128398(0x245)](_0x269eb9[_0x128398(0x394)](_0x37ced1,_0x3b01ae))[_0x269eb9[_0x43b15f(0x1d0)]],_0x4673e2='';}:function(){};return _0x4754cc=![],_0x5ab15a;}else{const _0x352a90={'xGNsJ':function(_0x3511e0,_0x3309a0){const _0x5a446d=_0x3366af;return _0x230a60[_0x5a446d(0x704)](_0x3511e0,_0x3309a0);},'KQxwB':_0x230a60[_0x4b0034(0x5a2)]};_0x54bec0[_0x4061de(0x414)+_0x4b0034(0x675)+'t'](_0x230a60[_0x7a752a(0x5ab)],function(){const _0x1e0f92=_0x7a752a,_0x3bc892=_0x4b0034;_0x352a90[_0x1e0f92(0x3f9)](_0x52103e,_0x352a90[_0x1e0f92(0x187)]);});}};}}()),_0x4b0094=_0x2b902b[_0x5ca5de(0x258)](_0x317c25,this,function(){const _0x4a9321=_0x3340ce,_0x347b31=_0x1a4f8b,_0x28e365=_0x1a4f8b,_0x2d869c=_0x983e4c,_0x1a44af=_0x1a4f8b;if(_0x2b902b[_0x4a9321(0x40d)](_0x2b902b[_0x4a9321(0xa1a)],_0x2b902b[_0x4a9321(0xa1a)]))(function(){return!![];}[_0x347b31(0x2d9)+_0x347b31(0x310)+'r'](QDjtQc[_0x28e365(0x9eb)](QDjtQc[_0x2d869c(0x29e)],QDjtQc[_0x1a44af(0x928)]))[_0x28e365(0xccf)](QDjtQc[_0x1a44af(0x645)]));else return _0x4b0094[_0x4a9321(0x8b6)+_0x1a44af(0x67b)]()[_0x2d869c(0x7c0)+'h'](_0x2b902b[_0x1a44af(0xcf1)])[_0x4a9321(0x8b6)+_0x4a9321(0x67b)]()[_0x1a44af(0x2d9)+_0x347b31(0x310)+'r'](_0x4b0094)[_0x4a9321(0x7c0)+'h'](_0x2b902b[_0x28e365(0xcf1)]);});_0x2b902b[_0x1a4f8b(0x8ea)](_0x4b0094);const _0x5110a8=(function(){const _0x1fcd2d=_0x3340ce,_0x86974b=_0x11ad98,_0x2647c2=_0x1a4f8b;if(_0x2b902b[_0x1fcd2d(0x40d)](_0x2b902b[_0x86974b(0x44f)],_0x2b902b[_0x86974b(0xc1b)])){let _0x2513a1=!![];return function(_0x1d5980,_0x2f295b){const _0x221751=_0x2647c2,_0x5d8a17=_0x1fcd2d,_0xf156ba=_0x2647c2,_0x1eec1a=_0x2647c2,_0x26c42e=_0x86974b,_0x1739e3={'OJfAA':function(_0x48432d,_0x48fe5b){const _0x4cc085=_0x2717;return _0x2b902b[_0x4cc085(0xbce)](_0x48432d,_0x48fe5b);},'ujonY':_0x2b902b[_0x221751(0x45a)],'rQLAX':function(_0xa6b735,_0x16eaf8){const _0x60b00c=_0x221751;return _0x2b902b[_0x60b00c(0xb09)](_0xa6b735,_0x16eaf8);},'Ljgpo':_0x2b902b[_0x5d8a17(0x509)],'xsdxq':function(_0x2cabcf,_0x4c5162){const _0xee7a44=_0x5d8a17;return _0x2b902b[_0xee7a44(0xb07)](_0x2cabcf,_0x4c5162);},'JGBeO':function(_0xbf77b4,_0x190dcc){const _0x117852=_0x221751;return _0x2b902b[_0x117852(0xb09)](_0xbf77b4,_0x190dcc);},'ErbCf':_0x2b902b[_0x221751(0x97e)],'mZOHZ':function(_0x3765c5,_0x1cda9e){const _0x431a9b=_0xf156ba;return _0x2b902b[_0x431a9b(0xc77)](_0x3765c5,_0x1cda9e);},'rXJUo':_0x2b902b[_0x1eec1a(0x200)],'UNaMt':function(_0x280495,_0x32efdc){const _0x3f151b=_0x5d8a17;return _0x2b902b[_0x3f151b(0x5f4)](_0x280495,_0x32efdc);},'mmERv':function(_0x2f0f00,_0x8e2487){const _0x30f27f=_0xf156ba;return _0x2b902b[_0x30f27f(0xa3e)](_0x2f0f00,_0x8e2487);},'MKWpB':function(_0x56a807,_0x1155e4){const _0x4aea15=_0x221751;return _0x2b902b[_0x4aea15(0xc7d)](_0x56a807,_0x1155e4);},'TWQQN':_0x2b902b[_0xf156ba(0x753)],'vXxmg':function(_0x4fc1d2,_0x2fa5ee){const _0x5e5206=_0x5d8a17;return _0x2b902b[_0x5e5206(0x5f4)](_0x4fc1d2,_0x2fa5ee);},'CmjDv':function(_0x5ec10f,_0x19d6fb){const _0x5860f2=_0x221751;return _0x2b902b[_0x5860f2(0x7c9)](_0x5ec10f,_0x19d6fb);},'nIIBh':function(_0xb42ef0,_0x2be80d){const _0x16b869=_0xf156ba;return _0x2b902b[_0x16b869(0x76c)](_0xb42ef0,_0x2be80d);},'REkOk':_0x2b902b[_0x26c42e(0xa5c)],'vZiJk':function(_0x83a8a3,_0x1addd9){const _0x375500=_0x5d8a17;return _0x2b902b[_0x375500(0x2e9)](_0x83a8a3,_0x1addd9);},'hIzkg':function(_0x549461,_0x41771a){const _0x15c8a8=_0x1eec1a;return _0x2b902b[_0x15c8a8(0xa44)](_0x549461,_0x41771a);},'UvetJ':function(_0x59c648,_0x1df96e){const _0x4d808f=_0x26c42e;return _0x2b902b[_0x4d808f(0x32c)](_0x59c648,_0x1df96e);},'pDjTf':_0x2b902b[_0x26c42e(0x9be)],'dyDyi':function(_0x1a63d4,_0x2a4976){const _0x27b8f2=_0x26c42e;return _0x2b902b[_0x27b8f2(0xa5f)](_0x1a63d4,_0x2a4976);},'JbCkG':_0x2b902b[_0xf156ba(0x518)],'zhwqO':function(_0x27c685,_0x3159a0){const _0x58ba44=_0x221751;return _0x2b902b[_0x58ba44(0x3a9)](_0x27c685,_0x3159a0);},'xRiso':function(_0x216c66,_0x37435e){const _0x1474f1=_0xf156ba;return _0x2b902b[_0x1474f1(0xa44)](_0x216c66,_0x37435e);},'NYvKD':_0x2b902b[_0x1eec1a(0xba2)],'SsFJW':function(_0x2605f1,_0x5606d0){const _0x19f321=_0x221751;return _0x2b902b[_0x19f321(0x32c)](_0x2605f1,_0x5606d0);},'GopRf':function(_0x5a51df,_0x5bf70c){const _0x344030=_0x1eec1a;return _0x2b902b[_0x344030(0x9fe)](_0x5a51df,_0x5bf70c);},'cXulG':function(_0xfa4526,_0x187ec3){const _0x3a246b=_0xf156ba;return _0x2b902b[_0x3a246b(0x3a9)](_0xfa4526,_0x187ec3);},'kyjMD':_0x2b902b[_0x1eec1a(0xd0c)],'jVlzw':_0x2b902b[_0x1eec1a(0x5b7)],'xzcCK':function(_0x142b58,_0x32dc5c){const _0x2c4da9=_0x26c42e;return _0x2b902b[_0x2c4da9(0x3c6)](_0x142b58,_0x32dc5c);},'JHttL':function(_0x48873b,_0x9a46f2){const _0x3536ab=_0x5d8a17;return _0x2b902b[_0x3536ab(0xc2d)](_0x48873b,_0x9a46f2);},'CniCL':function(_0x2d6379,_0x29fca4){const _0x1d7b59=_0x26c42e;return _0x2b902b[_0x1d7b59(0x9fe)](_0x2d6379,_0x29fca4);},'trqpj':_0x2b902b[_0x1eec1a(0xbf2)],'OeopN':function(_0x3bf7f0,_0x297d38){const _0x54b28f=_0x26c42e;return _0x2b902b[_0x54b28f(0xc77)](_0x3bf7f0,_0x297d38);},'mmxOD':function(_0x23edd5,_0x124ab8){const _0x1ee5cd=_0x1eec1a;return _0x2b902b[_0x1ee5cd(0xa44)](_0x23edd5,_0x124ab8);},'DEUJF':_0x2b902b[_0xf156ba(0x61b)],'houfZ':function(_0x1e2aa1,_0x3d7a5c){const _0x58fe6b=_0x1eec1a;return _0x2b902b[_0x58fe6b(0xc4d)](_0x1e2aa1,_0x3d7a5c);},'dHbTy':_0x2b902b[_0x221751(0x274)],'qunTU':function(_0x4881db,_0x49926e){const _0x418d70=_0x5d8a17;return _0x2b902b[_0x418d70(0x2e9)](_0x4881db,_0x49926e);},'rGkJI':function(_0x3bc2c5,_0xdfb8c9){const _0x2aaa6a=_0x26c42e;return _0x2b902b[_0x2aaa6a(0x76c)](_0x3bc2c5,_0xdfb8c9);},'EOwtI':_0x2b902b[_0xf156ba(0xbfa)],'hMKHR':function(_0x1b433c,_0x3fbbce){const _0x26f13d=_0x26c42e;return _0x2b902b[_0x26f13d(0xb0b)](_0x1b433c,_0x3fbbce);},'wbdHj':function(_0x30b02e,_0x268c22){const _0x14e8b2=_0xf156ba;return _0x2b902b[_0x14e8b2(0xa44)](_0x30b02e,_0x268c22);},'WTSnc':function(_0xb87691,_0x9d1635){const _0x24e03e=_0x221751;return _0x2b902b[_0x24e03e(0xc77)](_0xb87691,_0x9d1635);},'VBVCu':_0x2b902b[_0x1eec1a(0x9bb)],'mWANv':function(_0x2c061c,_0x3e50fe){const _0x2174ec=_0xf156ba;return _0x2b902b[_0x2174ec(0x6c2)](_0x2c061c,_0x3e50fe);},'Qozsd':function(_0x3e4c97,_0x1969fa){const _0x33688e=_0x26c42e;return _0x2b902b[_0x33688e(0x3c6)](_0x3e4c97,_0x1969fa);},'qMbBH':_0x2b902b[_0xf156ba(0xc97)],'jhNdh':function(_0x477437,_0x4eddc4){const _0x58d463=_0xf156ba;return _0x2b902b[_0x58d463(0x26f)](_0x477437,_0x4eddc4);},'yrCEl':function(_0x208fa0,_0x2ea438){const _0x15e91d=_0x26c42e;return _0x2b902b[_0x15e91d(0xb0b)](_0x208fa0,_0x2ea438);},'qdTQK':function(_0xf20dc3,_0x1b07a8){const _0x54f406=_0x1eec1a;return _0x2b902b[_0x54f406(0xc4d)](_0xf20dc3,_0x1b07a8);},'edZHl':_0x2b902b[_0xf156ba(0x1f4)],'hdrBo':function(_0x43a166,_0x384b0c){const _0x3c6286=_0xf156ba;return _0x2b902b[_0x3c6286(0x7c9)](_0x43a166,_0x384b0c);},'uMEPJ':function(_0xd8c79c,_0x65149c){const _0x331e5f=_0x26c42e;return _0x2b902b[_0x331e5f(0xa2b)](_0xd8c79c,_0x65149c);},'gYlxe':_0x2b902b[_0x5d8a17(0xc1f)],'DIHNC':function(_0x579093,_0x4a56fa){const _0x33c4c9=_0x26c42e;return _0x2b902b[_0x33c4c9(0x2a4)](_0x579093,_0x4a56fa);},'RMDAL':function(_0x5bd042,_0x222e68){const _0x26820e=_0x221751;return _0x2b902b[_0x26820e(0x951)](_0x5bd042,_0x222e68);},'YUAYF':_0x2b902b[_0xf156ba(0xbbf)],'kkKyA':function(_0x2cac8c,_0x2e86fc){const _0x2b4ec6=_0x1eec1a;return _0x2b902b[_0x2b4ec6(0x373)](_0x2cac8c,_0x2e86fc);},'jXfGW':function(_0x4d45b0,_0x1b15cf){const _0x3a4daa=_0x5d8a17;return _0x2b902b[_0x3a4daa(0xc2d)](_0x4d45b0,_0x1b15cf);},'YtMAB':_0x2b902b[_0xf156ba(0x23d)],'yOAdZ':function(_0x204f1c,_0x19d01c){const _0x3b191f=_0xf156ba;return _0x2b902b[_0x3b191f(0xc4d)](_0x204f1c,_0x19d01c);},'AQSkr':_0x2b902b[_0x221751(0x9c5)],'PHZtW':function(_0x3acf14,_0x66e0f){const _0x14c993=_0x5d8a17;return _0x2b902b[_0x14c993(0x9eb)](_0x3acf14,_0x66e0f);},'zejXi':_0x2b902b[_0x221751(0x18c)],'yDznD':function(_0x283119,_0x2991c7){const _0x35cc72=_0x221751;return _0x2b902b[_0x35cc72(0x6c2)](_0x283119,_0x2991c7);},'CIiHh':function(_0x1020f9,_0x1462e2){const _0x547f3b=_0x5d8a17;return _0x2b902b[_0x547f3b(0x55f)](_0x1020f9,_0x1462e2);},'Qrkht':_0x2b902b[_0xf156ba(0x7ec)],'nmfIe':function(_0x363ada,_0x3dd26e){const _0xd2d7a8=_0x221751;return _0x2b902b[_0xd2d7a8(0xcf7)](_0x363ada,_0x3dd26e);},'BvnYh':function(_0x33254b,_0x305016){const _0x3c53b2=_0x26c42e;return _0x2b902b[_0x3c53b2(0x692)](_0x33254b,_0x305016);},'KFcFY':function(_0x42ea66,_0x236ea8){const _0x1ea512=_0x5d8a17;return _0x2b902b[_0x1ea512(0xbce)](_0x42ea66,_0x236ea8);},'Nphps':_0x2b902b[_0xf156ba(0xc60)],'fmXdm':function(_0x1b6434,_0x11e927){const _0x2a03f1=_0x26c42e;return _0x2b902b[_0x2a03f1(0x6c2)](_0x1b6434,_0x11e927);},'CZlJE':_0x2b902b[_0x26c42e(0xd0d)],'WjIit':function(_0x476339,_0x204a1d){const _0x2160b0=_0xf156ba;return _0x2b902b[_0x2160b0(0x5b9)](_0x476339,_0x204a1d);},'aEmHp':_0x2b902b[_0x221751(0x918)],'DXDtc':function(_0x483d3f,_0x19cb84){const _0x3ee983=_0x1eec1a;return _0x2b902b[_0x3ee983(0x9f7)](_0x483d3f,_0x19cb84);},'QAxzC':_0x2b902b[_0x1eec1a(0x59c)],'PeeGz':_0x2b902b[_0x5d8a17(0x415)],'rUTLi':_0x2b902b[_0x1eec1a(0x3ed)]};if(_0x2b902b[_0x221751(0x1b7)](_0x2b902b[_0x221751(0x1e6)],_0x2b902b[_0x5d8a17(0x1e6)])){const _0x51e7ec=_0x2513a1?function(){const _0x3d6af8=_0x5d8a17,_0x4b18c4=_0x221751,_0x2acaf6=_0x5d8a17,_0x36156b=_0x5d8a17,_0x54d97d=_0x26c42e;if(_0x1739e3[_0x3d6af8(0x8ae)](_0x1739e3[_0x4b18c4(0x952)],_0x1739e3[_0x2acaf6(0x952)])){if(_0x2f295b){if(_0x1739e3[_0x3d6af8(0x8ae)](_0x1739e3[_0x4b18c4(0x8dc)],_0x1739e3[_0x4b18c4(0x8dc)])){const _0x1f145d=_0x2f295b[_0x3d6af8(0x6d2)](_0x1d5980,arguments);return _0x2f295b=null,_0x1f145d;}else{_0x1c97b9=_0x2db1ff[_0x4b18c4(0x379)+_0x36156b(0x830)]('','(')[_0x2acaf6(0x379)+_0x2acaf6(0x830)]('',')')[_0x2acaf6(0x379)+_0x4b18c4(0x830)](':\x20',':')[_0x4b18c4(0x379)+_0x2acaf6(0x830)]('',':')[_0x54d97d(0x379)+_0x54d97d(0x830)](',\x20',',')[_0x3d6af8(0x379)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x5d3f36=_0xa14445[_0x3d6af8(0x279)+_0x2acaf6(0xaa1)][_0x4b18c4(0x7c2)+'h'];_0x1739e3[_0x3d6af8(0xad2)](_0x5d3f36,0xecc+-0x2064+-0x8cc*-0x2);--_0x5d3f36){const _0xbd8cbd=_0x1739e3[_0x4b18c4(0xca3)][_0x3d6af8(0x74a)]('|');let _0x177e22=0x20a4+0x1dd9+-0x3e7d;while(!![]){switch(_0xbd8cbd[_0x177e22++]){case'0':_0x1d59bf=_0x3850e3[_0x3d6af8(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x54d97d(0x754)](_0x1739e3[_0x3d6af8(0x7a6)],_0x1739e3[_0x36156b(0x284)](_0x270203,_0x5d3f36)),_0x1739e3[_0x54d97d(0x607)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x54d97d(0x284)](_0x5c8145,_0x5d3f36)));continue;case'1':_0x10dde5=_0x409adc[_0x54d97d(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x4b18c4(0x546)](_0x1739e3[_0x4b18c4(0x538)],_0x1739e3[_0x3d6af8(0x8f7)](_0x119767,_0x5d3f36)),_0x1739e3[_0x4b18c4(0x607)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x2acaf6(0x674)](_0x4dd484,_0x5d3f36)));continue;case'2':_0x56df62=_0x46eb9d[_0x54d97d(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x54d97d(0x357)](_0x1739e3[_0x54d97d(0x65f)],_0x1739e3[_0x3d6af8(0xa60)](_0x17bc96,_0x5d3f36)),_0x1739e3[_0x2acaf6(0x754)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x3d6af8(0xa65)](_0x5f0615,_0x5d3f36)));continue;case'3':_0x4509b3=_0x56e28c[_0x4b18c4(0x379)+_0x3d6af8(0x830)](_0x1739e3[_0x54d97d(0x90d)](_0x1739e3[_0x36156b(0x31a)],_0x1739e3[_0x4b18c4(0x915)](_0x469f61,_0x5d3f36)),_0x1739e3[_0x2acaf6(0x3e5)](_0x1739e3[_0x2acaf6(0x724)],_0x1739e3[_0x3d6af8(0x72d)](_0x474fb7,_0x5d3f36)));continue;case'4':_0xe38e80=_0x1ac855[_0x3d6af8(0x379)+_0x36156b(0x830)](_0x1739e3[_0x54d97d(0x3e5)](_0x1739e3[_0x4b18c4(0xb93)],_0x1739e3[_0x36156b(0x915)](_0x58e14e,_0x5d3f36)),_0x1739e3[_0x36156b(0x546)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x36156b(0x284)](_0x40be49,_0x5d3f36)));continue;case'5':_0x50d425=_0x16eb09[_0x4b18c4(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x54d97d(0x77e)](_0x1739e3[_0x36156b(0x7f8)],_0x1739e3[_0x4b18c4(0x284)](_0x1c66be,_0x5d3f36)),_0x1739e3[_0x3d6af8(0x357)](_0x1739e3[_0x2acaf6(0x724)],_0x1739e3[_0x2acaf6(0x470)](_0x47abb7,_0x5d3f36)));continue;case'6':_0x4859fe=_0x54da34[_0x54d97d(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x4b18c4(0xc51)](_0x1739e3[_0x4b18c4(0x322)],_0x1739e3[_0x36156b(0xce2)](_0x44067b,_0x5d3f36)),_0x1739e3[_0x2acaf6(0x607)](_0x1739e3[_0x2acaf6(0x724)],_0x1739e3[_0x4b18c4(0x284)](_0x555028,_0x5d3f36)));continue;case'7':_0x35830e=_0x17eead[_0x4b18c4(0x379)+_0x3d6af8(0x830)](_0x1739e3[_0x54d97d(0x7d8)](_0x1739e3[_0x4b18c4(0x7f8)],_0x1739e3[_0x2acaf6(0x8f7)](_0x2e15d3,_0x5d3f36)),_0x1739e3[_0x54d97d(0x546)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x4b18c4(0x8b3)](_0x52ee5d,_0x5d3f36)));continue;case'8':_0x40557c=_0x3a33db[_0x3d6af8(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x3d6af8(0x3e5)](_0x1739e3[_0x36156b(0x31a)],_0x1739e3[_0x2acaf6(0xce2)](_0x1f90a4,_0x5d3f36)),_0x1739e3[_0x3d6af8(0x357)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x3d6af8(0x915)](_0x3a9681,_0x5d3f36)));continue;case'9':_0x18b904=_0x1c31fb[_0x4b18c4(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x54d97d(0x77e)](_0x1739e3[_0x36156b(0x177)],_0x1739e3[_0x4b18c4(0x8b3)](_0xed41fe,_0x5d3f36)),_0x1739e3[_0x4b18c4(0x3e5)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x36156b(0xa65)](_0x17b537,_0x5d3f36)));continue;case'10':_0x2b840e=_0x47172a[_0x4b18c4(0x379)+_0x54d97d(0x830)](_0x1739e3[_0x3d6af8(0x357)](_0x1739e3[_0x3d6af8(0x3b1)],_0x1739e3[_0x4b18c4(0xaed)](_0x49c6dc,_0x5d3f36)),_0x1739e3[_0x54d97d(0x9b3)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x36156b(0x72d)](_0x5d3018,_0x5d3f36)));continue;case'11':_0x9de451=_0x1ba7ee[_0x2acaf6(0x379)+_0x36156b(0x830)](_0x1739e3[_0x2acaf6(0x9c6)](_0x1739e3[_0x2acaf6(0x9bd)],_0x1739e3[_0x36156b(0x284)](_0x4ceff3,_0x5d3f36)),_0x1739e3[_0x2acaf6(0xbf3)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x54d97d(0xa60)](_0x5f006f,_0x5d3f36)));continue;case'12':_0x1a8825=_0x499457[_0x2acaf6(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x36156b(0x3b0)](_0x1739e3[_0x4b18c4(0x3fb)],_0x1739e3[_0x2acaf6(0x915)](_0x104ed6,_0x5d3f36)),_0x1739e3[_0x3d6af8(0x8ab)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x3d6af8(0x284)](_0xe43576,_0x5d3f36)));continue;case'13':_0x56800d=_0x3bd4fc[_0x4b18c4(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x2acaf6(0x754)](_0x1739e3[_0x4b18c4(0x7d2)],_0x1739e3[_0x54d97d(0x682)](_0x4f3250,_0x5d3f36)),_0x1739e3[_0x3d6af8(0x903)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x2acaf6(0x674)](_0x34c9dd,_0x5d3f36)));continue;case'14':_0x3a4d0b=_0x5531ea[_0x36156b(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x3d6af8(0x754)](_0x1739e3[_0x4b18c4(0xc12)],_0x1739e3[_0x36156b(0x8d1)](_0x46397a,_0x5d3f36)),_0x1739e3[_0x4b18c4(0x659)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x4b18c4(0x8d1)](_0x3e5446,_0x5d3f36)));continue;case'15':_0x286fa1=_0x54d294[_0x3d6af8(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x3d6af8(0xc6e)](_0x1739e3[_0x2acaf6(0x67e)],_0x1739e3[_0x54d97d(0xbfc)](_0x4c83e2,_0x5d3f36)),_0x1739e3[_0x54d97d(0x659)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x4b18c4(0x35c)](_0x50769a,_0x5d3f36)));continue;case'16':_0x433d32=_0x4f31ec[_0x4b18c4(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x36156b(0x659)](_0x1739e3[_0x54d97d(0x971)],_0x1739e3[_0x3d6af8(0x66b)](_0x121a4b,_0x5d3f36)),_0x1739e3[_0x3d6af8(0x8ab)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x36156b(0x7d4)](_0xd3f874,_0x5d3f36)));continue;case'17':_0x498397=_0x4cef8f[_0x2acaf6(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x2acaf6(0x680)](_0x1739e3[_0x36156b(0xa19)],_0x1739e3[_0x3d6af8(0xadf)](_0x258184,_0x5d3f36)),_0x1739e3[_0x3d6af8(0x8ab)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x2acaf6(0x66b)](_0x43bac0,_0x5d3f36)));continue;case'18':_0xc03da7=_0x313a1e[_0x3d6af8(0x379)+_0x3d6af8(0x830)](_0x1739e3[_0x4b18c4(0xcea)](_0x1739e3[_0x54d97d(0x8db)],_0x1739e3[_0x54d97d(0xa60)](_0x1ef6db,_0x5d3f36)),_0x1739e3[_0x4b18c4(0x9c6)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x2acaf6(0x6ee)](_0x5b8597,_0x5d3f36)));continue;case'19':_0x29ae4b=_0x5396e1[_0x36156b(0x379)+_0x3d6af8(0x830)](_0x1739e3[_0x4b18c4(0xb6a)](_0x1739e3[_0x4b18c4(0x4fb)],_0x1739e3[_0x4b18c4(0x7a8)](_0xf10352,_0x5d3f36)),_0x1739e3[_0x2acaf6(0x7d8)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x36156b(0x72d)](_0x4dfaf0,_0x5d3f36)));continue;case'20':_0x49b0e2=_0x3b2b59[_0x3d6af8(0x379)+_0x4b18c4(0x830)](_0x1739e3[_0x3d6af8(0x5e0)](_0x1739e3[_0x36156b(0x61c)],_0x1739e3[_0x36156b(0x682)](_0x124319,_0x5d3f36)),_0x1739e3[_0x54d97d(0x713)](_0x1739e3[_0x3d6af8(0x724)],_0x1739e3[_0x2acaf6(0xadf)](_0x4c5612,_0x5d3f36)));continue;case'21':_0x27a466=_0x397637[_0x3d6af8(0x379)+_0x3d6af8(0x830)](_0x1739e3[_0x4b18c4(0xc6e)](_0x1739e3[_0x4b18c4(0x1d9)],_0x1739e3[_0x2acaf6(0x35c)](_0x556e01,_0x5d3f36)),_0x1739e3[_0x2acaf6(0xbf3)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x4b18c4(0x7d4)](_0x4c5d8d,_0x5d3f36)));continue;case'22':_0x145253=_0x5f1848[_0x4b18c4(0x379)+_0x2acaf6(0x830)](_0x1739e3[_0x4b18c4(0x4d3)](_0x1739e3[_0x2acaf6(0x2c9)],_0x1739e3[_0x3d6af8(0x862)](_0x24ddb,_0x5d3f36)),_0x1739e3[_0x4b18c4(0xcea)](_0x1739e3[_0x4b18c4(0x724)],_0x1739e3[_0x4b18c4(0x72d)](_0x49257a,_0x5d3f36)));continue;case'23':_0x47b663=_0x4e19d5[_0x36156b(0x379)+_0x54d97d(0x830)](_0x1739e3[_0x3d6af8(0x774)](_0x1739e3[_0x54d97d(0xbc9)],_0x1739e3[_0x54d97d(0xa65)](_0x5db2e1,_0x5d3f36)),_0x1739e3[_0x54d97d(0x83a)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x2acaf6(0x7a8)](_0x22c0cd,_0x5d3f36)));continue;case'24':_0x7df34f=_0x5eaf71[_0x3d6af8(0x379)+_0x3d6af8(0x830)](_0x1739e3[_0x3d6af8(0xc6e)](_0x1739e3[_0x54d97d(0xc12)],_0x1739e3[_0x3d6af8(0x8d1)](_0xaf47dd,_0x5d3f36)),_0x1739e3[_0x2acaf6(0x904)](_0x1739e3[_0x54d97d(0x724)],_0x1739e3[_0x4b18c4(0x915)](_0x3c9094,_0x5d3f36)));continue;}break;}}_0x321bbf=_0x1739e3[_0x2acaf6(0x6ee)](_0x1b5b90,_0x19bf05);for(let _0x5a00d3=_0x5df838[_0x36156b(0x279)+_0x2acaf6(0xaa1)][_0x2acaf6(0x7c2)+'h'];_0x1739e3[_0x3d6af8(0x7ba)](_0x5a00d3,-0x7df+-0xd*0x283+0x2886);--_0x5a00d3){_0x46f638=_0x414635[_0x4b18c4(0x379)+'ce'](_0x1739e3[_0x36156b(0x903)](_0x1739e3[_0x4b18c4(0x92e)],_0x1739e3[_0x3d6af8(0xb05)](_0xffd9ba,_0x5a00d3)),_0x4d1f68[_0x2acaf6(0x279)+_0x3d6af8(0xaa1)][_0x5a00d3]),_0x3175b4=_0x55c5dd[_0x3d6af8(0x379)+'ce'](_0x1739e3[_0x54d97d(0x903)](_0x1739e3[_0x3d6af8(0x759)],_0x1739e3[_0x54d97d(0x8f7)](_0x2bcdae,_0x5a00d3)),_0x2f677e[_0x4b18c4(0x279)+_0x3d6af8(0xaa1)][_0x5a00d3]),_0x452e69=_0x28e563[_0x54d97d(0x379)+'ce'](_0x1739e3[_0x54d97d(0x875)](_0x1739e3[_0x3d6af8(0xb8c)],_0x1739e3[_0x4b18c4(0x7a8)](_0x15672f,_0x5a00d3)),_0x3d8aca[_0x2acaf6(0x279)+_0x3d6af8(0xaa1)][_0x5a00d3]);}return _0x29e4c0=_0x33e21d[_0x36156b(0x379)+_0x3d6af8(0x830)]('[]',''),_0x364660=_0x43c7ee[_0x54d97d(0x379)+_0x36156b(0x830)]('((','('),_0x4c7fbe=_0x2e2692[_0x3d6af8(0x379)+_0x4b18c4(0x830)]('))',')'),_0x2696a5=_0x3c7f1e[_0x54d97d(0x379)+_0x36156b(0x830)]('(\x0a','\x0a'),_0x5418b8;}}}else _0x49187a[_0x36156b(0xb25)]([_0x5c8484[_0x54d97d(0x9ea)+'ge'],_0x244c1f,_0x577900,_0x45ff5e]),_0x56558b='',_0x23980e='';}:function(){};return _0x2513a1=![],_0x51e7ec;}else _0x138979[_0x26c42e(0x813)+'d']=function(){const _0x5537d4=_0x1eec1a,_0x3c4394=_0x26c42e;_0x1739e3[_0x5537d4(0x8d1)](_0xb8e09a,_0x1739e3[_0x3c4394(0x932)]);};};}else throw _0x3eee56;}());(function(){const _0x336952=_0x3340ce,_0x1d0695=_0x983e4c,_0x2aa6a7=_0x5ca5de,_0x22fc9e=_0x1a4f8b,_0x5ea3f9=_0x3340ce,_0x403bbd={};_0x403bbd[_0x336952(0x571)]=_0x2b902b[_0x336952(0x9db)],_0x403bbd[_0x2aa6a7(0x35a)]=_0x2b902b[_0x1d0695(0x3ef)];const _0x34d08d=_0x403bbd;if(_0x2b902b[_0x22fc9e(0x7d6)](_0x2b902b[_0x22fc9e(0x947)],_0x2b902b[_0x5ea3f9(0x846)]))_0x2b902b[_0x336952(0x258)](_0x5110a8,this,function(){const _0x3c4918=_0x22fc9e,_0x4c7c55=_0x2aa6a7,_0x2565bd=_0x22fc9e,_0x2bedda=_0x1d0695,_0x3f5d23=_0x336952,_0x484daa={'XwoAo':_0x2b902b[_0x3c4918(0xb01)],'jYNET':function(_0xd1670e,_0x3521f5){const _0x4f6d1c=_0x3c4918;return _0x2b902b[_0x4f6d1c(0x373)](_0xd1670e,_0x3521f5);}};if(_0x2b902b[_0x3c4918(0x9fb)](_0x2b902b[_0x3c4918(0xc65)],_0x2b902b[_0x4c7c55(0xc65)]))_0x5a89fb[_0x2bedda(0x1e1)](_0x484daa[_0x2565bd(0x1bf)],_0x524b1b);else{const _0x4256bc=new RegExp(_0x2b902b[_0x2565bd(0x6b4)]),_0x3e28e6=new RegExp(_0x2b902b[_0x2bedda(0x651)],'i'),_0x3bebaf=_0x2b902b[_0x3f5d23(0x60b)](_0x2619f7,_0x2b902b[_0x4c7c55(0x632)]);if(!_0x4256bc[_0x3f5d23(0x654)](_0x2b902b[_0x3f5d23(0x692)](_0x3bebaf,_0x2b902b[_0x4c7c55(0x41f)]))||!_0x3e28e6[_0x3c4918(0x654)](_0x2b902b[_0x3f5d23(0x449)](_0x3bebaf,_0x2b902b[_0x4c7c55(0x77b)]))){if(_0x2b902b[_0x3f5d23(0x7d6)](_0x2b902b[_0x2bedda(0xcd4)],_0x2b902b[_0x3f5d23(0x2b6)]))_0x2b902b[_0x3f5d23(0x581)](_0x3bebaf,'0');else return _0x484daa[_0x2bedda(0x53c)](_0x3f7b46,_0xf5b09f);}else{if(_0x2b902b[_0x4c7c55(0x46a)](_0x2b902b[_0x3f5d23(0xba4)],_0x2b902b[_0x2565bd(0xba4)]))_0x2b902b[_0x4c7c55(0x8ea)](_0x2619f7);else return function(_0x2d60e3){}[_0x2bedda(0x2d9)+_0x2565bd(0x310)+'r'](CmbrPx[_0x4c7c55(0x571)])[_0x2bedda(0x6d2)](CmbrPx[_0x2565bd(0x35a)]);}}})();else return-0x239a+0x6fc+0x1c9f;}());const _0x3e5b99=(function(){const _0x4e81a4=_0x5ca5de,_0x2fa847=_0x5ca5de,_0x571b0c=_0x3340ce;if(_0x2b902b[_0x4e81a4(0xb42)](_0x2b902b[_0x2fa847(0x99e)],_0x2b902b[_0x2fa847(0x99e)])){let _0x3384f8=!![];return function(_0x98049,_0x343012){const _0x2f4813=_0x571b0c,_0xbff76a=_0x4e81a4,_0x1990b6=_0x2fa847,_0x209f03=_0x4e81a4,_0x2f8faa=_0x571b0c,_0x18bbce={'ILCzL':_0x2b902b[_0x2f4813(0x648)],'kNqqN':function(_0x459187,_0x532556){const _0x58ffb5=_0x2f4813;return _0x2b902b[_0x58ffb5(0x6c1)](_0x459187,_0x532556);},'srMDC':function(_0x5b6962,_0x5837e2){const _0x35c07e=_0x2f4813;return _0x2b902b[_0x35c07e(0x309)](_0x5b6962,_0x5837e2);},'NANUV':_0x2b902b[_0x2f4813(0xa7a)],'NbFtB':function(_0x495d82,_0x12d783){const _0x21110e=_0xbff76a;return _0x2b902b[_0x21110e(0x306)](_0x495d82,_0x12d783);},'YElnE':_0x2b902b[_0x1990b6(0x597)],'RuCGw':_0x2b902b[_0x209f03(0xc66)],'vytYs':function(_0xbd571f,_0x1bd025){const _0x5709dd=_0x2f4813;return _0x2b902b[_0x5709dd(0x1b7)](_0xbd571f,_0x1bd025);},'GeQqm':_0x2b902b[_0x2f4813(0x7b4)],'BTzqm':_0x2b902b[_0x2f4813(0x989)],'hECcW':_0x2b902b[_0x209f03(0xa81)],'soHbO':_0x2b902b[_0x209f03(0x9b7)]};if(_0x2b902b[_0x209f03(0x323)](_0x2b902b[_0x2f4813(0x3fc)],_0x2b902b[_0xbff76a(0x3fc)]))_0x24ec28[_0x5b564e]=_0x277508[_0x2f8faa(0x66a)+_0x2f8faa(0x5ec)](_0x4f441c);else{const _0x2250e6=_0x3384f8?function(){const _0x1c7730=_0x209f03,_0x337c30=_0x209f03,_0x32b5f9=_0x209f03,_0x28b437=_0x2f8faa,_0xa1428e=_0xbff76a,_0x3639d6={'Zjpme':function(_0x55982e,_0x793f6){const _0x3e7595=_0x2717;return _0x18bbce[_0x3e7595(0x197)](_0x55982e,_0x793f6);},'ktnuC':function(_0x699c0f,_0x3a7912){const _0x2685c8=_0x2717;return _0x18bbce[_0x2685c8(0x857)](_0x699c0f,_0x3a7912);},'wmksw':_0x18bbce[_0x1c7730(0xb77)],'BDvCN':function(_0x38564e,_0x78bb30){const _0x351317=_0x1c7730;return _0x18bbce[_0x351317(0xce1)](_0x38564e,_0x78bb30);},'IEQUt':_0x18bbce[_0x1c7730(0xacb)],'kyYlm':function(_0x26a57f,_0x257abb){const _0xce13fa=_0x337c30;return _0x18bbce[_0xce13fa(0x857)](_0x26a57f,_0x257abb);},'QLFNb':_0x18bbce[_0x32b5f9(0x56a)]};if(_0x18bbce[_0x337c30(0xaef)](_0x18bbce[_0x337c30(0x4c3)],_0x18bbce[_0x1c7730(0xbe1)]))_0x4e93a9=_0x11f90b[_0xa1428e(0x245)](_0x5a2a97)[_0x18bbce[_0x32b5f9(0xaf8)]],_0x1c707c='';else{if(_0x343012){if(_0x18bbce[_0x1c7730(0xaef)](_0x18bbce[_0x28b437(0x52b)],_0x18bbce[_0x1c7730(0x841)]))_0x376e2a[_0xa1428e(0x245)](_0x159072[_0x28b437(0x676)+'es'][-0x1a9e+-0x5a4+0x2042][_0x28b437(0x6d1)+'ge'][_0xa1428e(0x8bd)+'nt'][_0x28b437(0x379)+_0x32b5f9(0x830)]('\x0a',''))[_0xa1428e(0xcba)+'ch'](_0x3696f2=>{const _0xca3ea3=_0x32b5f9,_0x1e266a=_0xa1428e,_0x301d52=_0x1c7730,_0x2ca846=_0x337c30,_0x1fe51e=_0x337c30;if(_0x3639d6[_0xca3ea3(0x250)](_0x3639d6[_0x1e266a(0x539)](_0x5b31d5,_0x3696f2)[_0x301d52(0x7c2)+'h'],0x697+0x195*-0xe+-0x3e5*-0x4))_0x56d139[_0xca3ea3(0x938)+_0x1fe51e(0x502)+_0x2ca846(0x1dd)](_0x3639d6[_0x1e266a(0x9ae)])[_0x2ca846(0xabd)+_0x1e266a(0x18e)]+=_0x3639d6[_0x1fe51e(0xc44)](_0x3639d6[_0x1fe51e(0xc44)](_0x3639d6[_0x2ca846(0x553)],_0x3639d6[_0x1e266a(0x1f3)](_0x52b045,_0x3696f2)),_0x3639d6[_0x301d52(0x8a5)]);});else{const _0x3c5aad=_0x343012[_0x28b437(0x6d2)](_0x98049,arguments);return _0x343012=null,_0x3c5aad;}}}}:function(){};return _0x3384f8=![],_0x2250e6;}};}else _0x1dfa76+='';}()),_0xd8409d=_0x2b902b[_0x11ad98(0x7c6)](_0x3e5b99,this,function(){const _0x4038fd=_0x11ad98,_0x38dcac=_0x3340ce,_0x30c0a8=_0x5ca5de,_0x4623e5=_0x5ca5de,_0xdf3169=_0x11ad98,_0x2edfcd={'dpbsl':function(_0x1beabe,_0x44ca81){const _0x33b0a1=_0x2717;return _0x2b902b[_0x33b0a1(0x581)](_0x1beabe,_0x44ca81);}};if(_0x2b902b[_0x4038fd(0x1b7)](_0x2b902b[_0x4038fd(0xc56)],_0x2b902b[_0x38dcac(0xc56)])){let _0x205476;try{if(_0x2b902b[_0x4623e5(0x1b7)](_0x2b902b[_0x4038fd(0x90f)],_0x2b902b[_0x4623e5(0x90f)])){const _0x3f1035=_0x2b902b[_0x30c0a8(0x8f0)](Function,_0x2b902b[_0x4038fd(0x889)](_0x2b902b[_0x4623e5(0x77c)](_0x2b902b[_0x4623e5(0xccc)],_0x2b902b[_0x30c0a8(0x2d7)]),');'));_0x205476=_0x2b902b[_0x4038fd(0x4a3)](_0x3f1035);}else _0x23f3da+=_0x1bcf50[_0x5bb5d8][-0x269*0x2+0x1153+-0xc80];}catch(_0x31e02d){if(_0x2b902b[_0xdf3169(0x1b7)](_0x2b902b[_0x4623e5(0x916)],_0x2b902b[_0x30c0a8(0x5c9)])){if(_0x14438e)return _0x507d23;else NfTSCs[_0x38dcac(0xcdc)](_0x248730,0x7*-0x223+-0x949+0x3a*0x6b);}else _0x205476=window;}const _0x19d952=_0x205476[_0xdf3169(0x201)+'le']=_0x205476[_0x4623e5(0x201)+'le']||{},_0x1d6ca1=[_0x2b902b[_0xdf3169(0xc38)],_0x2b902b[_0x30c0a8(0x9e5)],_0x2b902b[_0xdf3169(0x69e)],_0x2b902b[_0xdf3169(0x710)],_0x2b902b[_0x30c0a8(0x1f5)],_0x2b902b[_0x4623e5(0x954)],_0x2b902b[_0x38dcac(0x32d)]];for(let _0x2a4b3c=-0x1c50+-0x2310+0x3f60;_0x2b902b[_0x38dcac(0x9f0)](_0x2a4b3c,_0x1d6ca1[_0x30c0a8(0x7c2)+'h']);_0x2a4b3c++){if(_0x2b902b[_0x30c0a8(0x217)](_0x2b902b[_0x4623e5(0x3ff)],_0x2b902b[_0x30c0a8(0x3ff)])){const _0x2f54d=_0x3e5b99[_0xdf3169(0x2d9)+_0xdf3169(0x310)+'r'][_0x38dcac(0x9b8)+_0x38dcac(0x2ca)][_0x38dcac(0x64e)](_0x3e5b99),_0x1cb398=_0x1d6ca1[_0x2a4b3c],_0x5b6580=_0x19d952[_0x1cb398]||_0x2f54d;_0x2f54d[_0x38dcac(0x8c3)+_0x4623e5(0x203)]=_0x3e5b99[_0x30c0a8(0x64e)](_0x3e5b99),_0x2f54d[_0x4623e5(0x8b6)+_0x4623e5(0x67b)]=_0x5b6580[_0x30c0a8(0x8b6)+_0x4038fd(0x67b)][_0x4623e5(0x64e)](_0x5b6580),_0x19d952[_0x1cb398]=_0x2f54d;}else{if(_0x2b902b[_0x4623e5(0x6c1)](_0x2b902b[_0x38dcac(0x763)](_0x24f08d,_0x431849)[_0x30c0a8(0x7c2)+'h'],0x64c+0x1*0x1d57+-0x239e))_0x373ded[_0x38dcac(0x938)+_0x4038fd(0x502)+_0xdf3169(0x1dd)](_0x2b902b[_0x38dcac(0xa7a)])[_0x4623e5(0xabd)+_0x4623e5(0x18e)]+=_0x2b902b[_0x38dcac(0x306)](_0x2b902b[_0xdf3169(0x2d6)](_0x2b902b[_0x4038fd(0x597)],_0x2b902b[_0x30c0a8(0xcad)](_0x5e6ada,_0x120762)),_0x2b902b[_0x4623e5(0xc66)]);}}}else _0x517671[_0x4038fd(0x1e1)](_0x2b902b[_0x38dcac(0xb01)],_0x154907);});_0x2b902b[_0x983e4c(0x5ca)](_0xd8409d);const _0xeeaaf8=_0x2b902b[_0x1a4f8b(0x3ac)],_0x41882c=_0x2b902b[_0x11ad98(0xc34)],_0x1ec577=_0x43f18a[_0x5ca5de(0x3cf)+_0x5ca5de(0x4c8)](_0xeeaaf8[_0x3340ce(0x7c2)+'h'],_0x2b902b[_0x11ad98(0x5e9)](_0x43f18a[_0x983e4c(0x7c2)+'h'],_0x41882c[_0x5ca5de(0x7c2)+'h'])),_0x5ef1d4=_0x2b902b[_0x11ad98(0x86b)](atob,_0x1ec577),_0x12aa3a=_0x2b902b[_0x1a4f8b(0x2ec)](stringToArrayBuffer,_0x5ef1d4);return crypto[_0x11ad98(0x83f)+'e'][_0x3340ce(0x48a)+_0x3340ce(0x7ad)](_0x2b902b[_0x5ca5de(0x89a)],_0x12aa3a,{'name':_0x2b902b[_0x983e4c(0xcaf)],'hash':_0x2b902b[_0x983e4c(0xa80)]},!![],[_0x2b902b[_0x11ad98(0xca7)]]);}function encryptDataWithPublicKey(_0x19c119,_0x34b48f){const _0x490225=_0x2717,_0x1f50e2=_0x2717,_0x59013c=_0x2717,_0x2884bb=_0x2717,_0x166ff6=_0x2717,_0x6e3b1c={'HhvoQ':function(_0x4d90de,_0x4006ef){return _0x4d90de<_0x4006ef;},'KAdOK':function(_0x3c76b9,_0x135b5b){return _0x3c76b9!==_0x135b5b;},'DwkXS':_0x490225(0xb8b),'aXyld':function(_0x467403,_0x3439dd){return _0x467403(_0x3439dd);},'HzePE':_0x490225(0x9df)+_0x59013c(0xcd7)};try{if(_0x6e3b1c[_0x2884bb(0x531)](_0x6e3b1c[_0x1f50e2(0xada)],_0x6e3b1c[_0x59013c(0xada)])){var _0x494e02=new _0x3cbf00(_0x24ae98[_0x59013c(0x7c2)+'h']),_0x590199=new _0xfe0833(_0x494e02);for(var _0x5b1cd4=0x1ea0+0x2*-0xa73+-0x9ba,_0x3a168a=_0x205bb9[_0x166ff6(0x7c2)+'h'];_0x6e3b1c[_0x1f50e2(0x839)](_0x5b1cd4,_0x3a168a);_0x5b1cd4++){_0x590199[_0x5b1cd4]=_0xa66b1d[_0x1f50e2(0x66a)+_0x1f50e2(0x5ec)](_0x5b1cd4);}return _0x494e02;}else{_0x19c119=_0x6e3b1c[_0x1f50e2(0x65c)](stringToArrayBuffer,_0x19c119);const _0x42f38b={};return _0x42f38b[_0x59013c(0x263)]=_0x6e3b1c[_0x1f50e2(0x25d)],crypto[_0x490225(0x83f)+'e'][_0x2884bb(0x649)+'pt'](_0x42f38b,_0x34b48f,_0x19c119);}}catch(_0x34b9dd){}}function decryptDataWithPrivateKey(_0x550d0c,_0x448b5c){const _0x388c3b=_0x2717,_0x43f49e=_0x2717,_0x1ac5df=_0x2717,_0x43ffd1=_0x2717,_0x47da6e=_0x2717,_0x1d71e7={'Eldaw':function(_0x13090c,_0x54594a){return _0x13090c(_0x54594a);},'gAejx':_0x388c3b(0x9df)+_0x43f49e(0xcd7)};_0x550d0c=_0x1d71e7[_0x1ac5df(0xa0d)](stringToArrayBuffer,_0x550d0c);const _0x1cc483={};return _0x1cc483[_0x1ac5df(0x263)]=_0x1d71e7[_0x43f49e(0x3a5)],crypto[_0x43ffd1(0x83f)+'e'][_0x1ac5df(0x1d4)+'pt'](_0x1cc483,_0x448b5c,_0x550d0c);}const pubkey=_0xeae0e(0xae0)+_0x122511(0x4ef)+_0xeae0e(0x3fe)+_0x122511(0xcb4)+_0x1317da(0x5b8)+_0xeae0e(0x755)+_0x44cb5b(0x79d)+_0x1317da(0xc50)+_0x122511(0xa9a)+_0x1317da(0x511)+_0x44cb5b(0x5b5)+_0x44cb5b(0xcef)+_0x122511(0x787)+_0x1317da(0x817)+_0x122511(0x293)+_0x44cb5b(0xa2c)+_0x44cb5b(0xcc9)+_0x4e848e(0x7ef)+_0x122511(0xb0f)+_0x4e848e(0x4c7)+_0x122511(0x69b)+_0x4e848e(0x445)+_0x1317da(0x80c)+_0x122511(0x1f9)+_0xeae0e(0x4e0)+_0x1317da(0x678)+_0x122511(0x16f)+_0xeae0e(0x30d)+_0xeae0e(0x1a7)+_0xeae0e(0xc18)+_0x44cb5b(0xbc7)+_0x44cb5b(0x970)+_0x44cb5b(0xa6b)+_0x44cb5b(0x326)+_0x122511(0x795)+_0x4e848e(0xb19)+_0x122511(0x543)+_0x122511(0x958)+_0xeae0e(0x6a9)+_0x1317da(0x752)+_0x4e848e(0x413)+_0x1317da(0x574)+_0x1317da(0x964)+_0x122511(0x19a)+_0x122511(0x53f)+_0x1317da(0x784)+_0x4e848e(0x816)+_0x4e848e(0x99d)+_0x122511(0x28b)+_0xeae0e(0xad9)+_0xeae0e(0xa4a)+_0xeae0e(0x440)+_0x4e848e(0xaf9)+_0x122511(0x68d)+_0x4e848e(0xac7)+_0xeae0e(0xaee)+_0x44cb5b(0xbdf)+_0x122511(0xca0)+_0x44cb5b(0x33a)+_0x4e848e(0x777)+_0x44cb5b(0x29d)+_0x44cb5b(0x34f)+_0x44cb5b(0x57e)+_0x122511(0x24d)+_0xeae0e(0x5a4)+_0x122511(0x6a7)+_0x4e848e(0x56b)+_0xeae0e(0xbb4)+_0xeae0e(0x262)+_0x122511(0x672)+_0x44cb5b(0xa03)+_0x4e848e(0x289)+_0x44cb5b(0xcce)+_0x4e848e(0x71e)+_0xeae0e(0x8b4)+_0xeae0e(0xa05)+_0x122511(0xc9e)+_0x122511(0x68e)+_0xeae0e(0x1a6)+_0x1317da(0x7bb)+_0x44cb5b(0x655)+_0x1317da(0x2c4)+_0xeae0e(0x507)+_0x44cb5b(0xa95)+_0x122511(0x3f2)+_0xeae0e(0x2f1)+_0x1317da(0x960)+_0x4e848e(0x398)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x143f84){const _0x4d573c=_0x44cb5b,_0x4710f1=_0x1317da,_0x5d8f21={'shiry':function(_0x9eeae8,_0x11dc0c){return _0x9eeae8(_0x11dc0c);}};return _0x5d8f21[_0x4d573c(0x6d9)](btoa,_0x5d8f21[_0x4d573c(0x6d9)](encodeURIComponent,_0x143f84));}var word_last=[],lock_chat=0x21c9*-0x1+-0xc82*0x3+0xa30*0x7;function wait(_0x2a7392){return new Promise(_0x34fa92=>setTimeout(_0x34fa92,_0x2a7392));}function fetchRetry(_0x468826,_0x5e3ba5,_0x47cdfa={}){const _0x45af87=_0xeae0e,_0x168100=_0x122511,_0x2c6659=_0x44cb5b,_0x22ece2=_0xeae0e,_0x443780=_0x1317da,_0x56dbcc={'jJoFh':function(_0x43f5b8,_0x1387da){return _0x43f5b8+_0x1387da;},'DbUYw':_0x45af87(0x9a4),'WTWkh':_0x168100(0xac8),'MQXKa':_0x45af87(0xa49)+_0x2c6659(0x84a)+'t','AcOXR':function(_0x300404,_0x521d36,_0x1355fe){return _0x300404(_0x521d36,_0x1355fe);},'TPgcx':function(_0x20b253,_0x305a3a){return _0x20b253===_0x305a3a;},'ycOcG':_0x2c6659(0x861),'uaYPq':_0x168100(0xac3),'hSrKw':function(_0xdbd92a,_0x11913f){return _0xdbd92a-_0x11913f;},'PdzdB':function(_0x11331b,_0x3ffeea){return _0x11331b===_0x3ffeea;},'GgNuf':_0x443780(0x9c2),'wDctV':_0x45af87(0x3f3),'sdaMC':function(_0x9a0095,_0x1dd304){return _0x9a0095(_0x1dd304);}};function _0x1367e7(_0x102437){const _0x305950=_0x168100,_0x42772a=_0x168100,_0x3f7b7e=_0x443780,_0x3b4056=_0x2c6659,_0x474206=_0x45af87,_0x377540={'emYMg':function(_0x29fc8a,_0x279277){const _0x567bae=_0x2717;return _0x56dbcc[_0x567bae(0xb94)](_0x29fc8a,_0x279277);},'mSOqL':_0x56dbcc[_0x305950(0x7ca)],'MhtgU':_0x56dbcc[_0x42772a(0xb11)],'JRNQF':_0x56dbcc[_0x305950(0x603)],'VHDhP':function(_0x5d2f41,_0x458e1c,_0x11d507){const _0x5e9590=_0x3f7b7e;return _0x56dbcc[_0x5e9590(0x9de)](_0x5d2f41,_0x458e1c,_0x11d507);},'GAPkJ':function(_0x5ac783,_0x550a97){const _0x32409a=_0x305950;return _0x56dbcc[_0x32409a(0xb94)](_0x5ac783,_0x550a97);}};if(_0x56dbcc[_0x42772a(0xc2f)](_0x56dbcc[_0x305950(0x9e8)],_0x56dbcc[_0x305950(0x218)]))(function(){return![];}[_0x42772a(0x2d9)+_0x474206(0x310)+'r'](fVmjeA[_0x3f7b7e(0x254)](fVmjeA[_0x42772a(0x4e7)],fVmjeA[_0x305950(0x77d)]))[_0x42772a(0x6d2)](fVmjeA[_0x474206(0x70c)]));else{triesLeft=_0x56dbcc[_0x3f7b7e(0x40b)](_0x5e3ba5,-0x9e*0x2+0x21a1+-0x2064);if(!triesLeft){if(_0x56dbcc[_0x3f7b7e(0x80a)](_0x56dbcc[_0x474206(0x681)],_0x56dbcc[_0x3b4056(0x5c3)]))_0x377540[_0x3b4056(0x9e1)](_0x1647eb,_0x4ec017,_0x377540[_0x42772a(0x768)](_0x21e287,-0x1160+0x1bcd+-0x4*0x29b));else throw _0x102437;}return _0x56dbcc[_0x474206(0xb96)](wait,-0x355*0xb+-0x67a*-0x3+-0x1*-0x132d)[_0x42772a(0x91b)](()=>fetchRetry(_0x468826,triesLeft,_0x47cdfa));}}return _0x56dbcc[_0x2c6659(0x9de)](fetch,_0x468826,_0x47cdfa)[_0x443780(0xb18)](_0x1367e7);}function _0x5055(){const _0x209bdc=['PDF','MhQdv','jhjUv','lLpaO','ONeXv','txMWM','TAfRU','Dwwdp','NZmgv','工智能。以','HUbOx','jgtwX','srJyB','tFnCo','ACtVT','://ur','DcdnG','vEtVY','ebxRT','qNSNl','lKNOW','YgSF4','bLirm','JqxeY','fnYzJ','TWfPL','5ppCWNs','fhgdb','DlFXv','RjvSv','vFqlL','inclu','keSVF','weUdZ','wmSdh','twaEu','niuVB','bkoEQ','Nzapd','hzCCf','xHxrr','sQoPw','Qrkht','xHCGo','trim','eGzri',')+)+)','vrowO','qmLcK','ZnMkW','(((.+','<a\x20cl','NijUR','xRcYx','kTxlg','RTDuo','fromC','Kgwdr','lXXid','oJBlD','1|9|4','cut','rea','XOpNN','3DGOX','jITRB','BTzqm','PwFdL','rXWnU','vstaB','UtWXA','oUglD','dhCNR','AoChT','fzTzc','tnnDH','链接,链接','QcXkU','POCSk','MfpnB','JnoRB','VNsMP','GtDod','OxcCP','OeopN','ZRdTn','Trfrh','slWuG','iJnKi','zgGbX','while','uilPp','tttSw','mWANv','CidYE','XDwLV','ByMVG','BjYyc','”有关的信','\x0a以上是关','MEIBC','KMUIz','什么是','SkEoZ','bOJSK','AaDDP','VzUwF','知识,删除','xcBDJ','cttTT','PdsMj','Knbvl','egMLG','BLqUu','AvbuI','EOwtI','什么样','Btnvy','定搜索结果','521156aZYAzr','aSbIK','phoTY','ijOqs','RsIUB','OXusN','rSIaR','hyzNU','footn','NIzOV','oDYWY','yspKO','pAPeY','xYUbA','dYmSS','VSQkW','ytRRR','XlrLP','oRJNd','kNJVv','BbrEf','yqArd','BovCw','XtlBp','10|19','TPgcx','oCPez','TOP_M','LLvoC','BuXtX','ufUpc','nt-Ty','hLPQV','ersio','HMiJc','AmTTT','qSeZI','oMYVk','XqeZb','wWGNt','Charl','ptNzZ','nue','YOwfb','Fhwom','MAZjL','BDvCN','uutlp','jNuOP','DEIYN','OEJdo','YSIQP','kxmcw','bndPL','oIEXb','BttRR','ddDtz','KwsXF','gkqhk','xRiso','sQONd','以上是“','count','dAUDR','VjMGW','arch?','ArwRL','qLIKL','gcSci','容:\x0a','pDJup','LbHGs','lrtxt','iNBmy','KIwCl','eczlq','code','qgaRl','circl','XuHtd','vfsiC','NLBxm','关内容,在','Liuoa','|2|1','PlCgk','ZXtwL','CbklD','WTSnc','down\x20','hfnRM','ViMGv','t_ans','oCBqo','lrGnA','INoIO','KePNv','jLlOG','VstpM','info','rAdgV','0|22','TZifh','rKAua','cEQEV','ibRHy','WxgvE','Dhaof','jgInp','FKwUG','HzRSN','ykkbd','vPlaX','iPKOI','APNds','sJTmA','OJyuo','qthji','NMEgx','ifiUp','jnmQA','\x5c+\x5c+\x20','LGKJC','XeHYq','RjasX','VxuXx','KYkwV','jieba','vJmLc','Eghwx','excep','CSWjT','UwdYP','PsWxY','容,发表带','form','XHz/b','PuYCV','wJ8BS','ImJWQ','kuQBX','ujonY','应内容来源','QKFxF','mWqxK','EPXvV','Nwyfz','EPkRW','DnwHO','kpWgt','keVKU','HPosF','KZfku','kihHa','inBlf','rYmPy','nToCl','WFeZH','IC\x20KE','(来源ur','gUohT','htZgp','up\x20vo','mpute','forEa','qYQBs','nSBhF','ebiGL','网络知识:','wSYbu','bkvyY','XUvWk','何人。如果','ck=\x22s','3|5|1','nstru','|3|10','ErwaL','sFGQE','ri5nt','FppoM','引擎机器人','nAiAx','JMRVK','mcFPl','call','1702512KgNiBM','FOeZH','appli','MWICo','dBUfR','FFWTO','相关的,需','AEP','QYjsJ','CVpOp','KmuvU','jXRtn','dpbsl','hYjhh','pENmb','WcPTF','texta','NbFtB','SsFJW','qnJPl','Abkbm','avTpV','eWsta','RxleT','dOHJr','aoAVQ','uMEPJ','jpVDY','tYkbu','VrlZv','gLPct','Q8AMI','xESOI','axMGP','”的网络知','backg','OonbI','iLMvk','TvHLO','UXGIa','|0|4','DtWNF','DNMOJ','IXteO','ufUtF','WdLVg','cvyJu','IABjs','nKjZa','bGDLu','CiBkw','lCeuh','QQZdK','oPSkR','幽默的、含','xIkoe','|21|1','HQURx','eOVLd','为什么','hslKV','PKGjX','RiVQh','round','rMAMz','trans','QWCXq','nIsxn','Zldpr','tjJkz','now','Og4N1','AfnaQ','HpFlk','dQOoT','tAlFE','fHexo','nvLCb','$]*)','kyjMD','ixaRS','无关内容,','DNVsH','给出和上文','igmCz','YmURY','PcpZt','lHrbh','tIXxN','zbocw','ueBtE','fTJvX',']:\x20','reTBl','yEeTD','KQxwB','AsyAB','IeAni','aLpJy','GrkpU','RKzsS','cTGbB','HTML','yueWY','QKJyV','gJcyT','ById','24|3|','tekKc','qunnY','vWOpp','kNqqN','MMZWn','RYanY','M0iHK','wXgBd','ZCwKd','json数','poTBv','odoyp','XInSa','pkcs8','GoTnP','nXqxQ','vSTDb','GbPaM','FdFSQ','Zgxg4','6|6|2','qaYMi','Secbn','iYpzu','MigMp','gJITY','----','wKJLH','GtBDF','20|6|','ugzTL','l-inp','nokXu','AKGdf','qElQX','DgocS','ctJOH','MMayQ','pitQi','qsKhh','ntWin','(来源ht','jVNXT','XwoAo','fLknD','RLdTp','avata','zZatc','qoPOJ','WRmWN','nbRTt','VRZdu','<div\x20','hhKYj','wtzkW','BhMym','ore\x22\x20','kJcVg','apper','KumIM','Rdsur','Qivrj','tezsU','juFPM','decry','AkmQK','DfoZR','QWjKF','qnYPp','AQSkr','VLxWk','MIDDL','GJkRr','tor','KVCOt','CHrfB','items','error','YuOCe','YLHTm','wxOMq','RqjCA','GXigx','LqNHc','Zctfy','VIcuz','GNfnc','YnvBU','UGlKT','NatuL','4|0|1','Olrmo','vTtgr',',不得重复','keys','kyYlm','PXWlg','KOgHb','zhcHS','ZlDGC','UqAoh','xPZXA','FkEEj','tant','Dsfii','qBxny','VNwOF','IcRKE','xKZkA','conso','rrVJd','to__','FcnEU','对应内容来','WwhPR','Wocxu','seCtv','fjkWv','NRvhX','xvuTK','Cyjkz','xsIft','Heigh','vEesq','svdpk','2|21|','YsZqJ','VkEjB','YqfPP','搜索框','ONzdz','lOCTx','uaYPq','zlxxG','。用户搜索','NbwjT','hguiw','HvGWf','xRqQd','FmLoy','IxaKC','xWDmd','ImvxF','MxnvS','dhpvh','seToA','oZrev','euGEl','PKzDZ','cEfjh','DRkUl','kNmpq','ztSrQ','lGXzT','ic/th','FHNej','KtdJS','raws','要上网搜索','Jqhxq','NsTlF','pdfjs','NYRei','AGPHu','pSfUq','wtcwk','MRDlb','czBnp','OEonK','xllHA','GzAxy','yPsmX','YxsCc','xLwnJ','|3|1','wAzVQ','CIyQv','parse','zPxZn','axsZI','zZHbS','iuluW','MOCbq','vwxxj','&lang','6f2AV','tRwhN','LOfZG','Zjpme','usebI','lqDAd','UZEAm','emYMg','#read','VNHLA','文中用(链','ZVWvv','bciWd','4|8|2','lSzJN','aMNZP','HzePE','NXObu','n\x20(fu','网址)标注','|7|1|','UGCzO','name','xgzep','AFfps','PSUbe','getPa','FpaxU','PlKlQ','alt','14|2|','_page','ExosP','CwSqM','FojLM','ghbGK','jpCwD','YHRyl','aOBhQ','cjCff','wYaex','XOlBb','yGJRS','BaFAR','url_p','(来源','undin','VbLhV','UtVGw','GnefE','(来源:h','aJsba','TUbem','zMnuS','lBSAx','xsdxq','xfBpv','CHOmq','STbeJ','VuOJv','r8Ljj','abili','GMHlI','rUcys','ekLGV','hgdvj','NvZZZ','hmENk','XJHnE','的是“','g0KQO','swTds','\x20>\x20if','lnUBZ','IJsIn','BQeJs','有emoj','rfRjr','在文中用(','rLWNC','59tVf','rJGGW','OafbV','ylJak','CqdnH','URrdF','lKJbK','XuWDd','hvLIY','(链接ht','nOwyl','HIenH','(来源链接','ZKOSb','aqHuT','catio','xlPoy','UnLcT','WEujR','jgoYY','ocVNO','BAsJP','PRCwg','FyOML','jnehY','NBayi','(链接','KGGSn','aKoCY','FSKOx','CXmqn','jjzfH','left','ulIsE','RXuxv','cvEHB','0|17|','wfcZG','xoIkX','75uOe','1540wVYMCe','介绍一下','VMlOP','WqyGP','zejXi','type','lMhTP','</a>','&time','LkRzt','XWpQg','CqTcQ','FChwp','EvDys','jAmcV','niNGo','Vfexd','HdqPs','WZqIG','eVCzJ','const','deRBT','svIHw','IcFeE','_more','soYns','qRaIV','DmCCe','lpPJC','CEJvq','KAyRD','PdWiD','KzxcY','YGiat','vSYzL','djZtu','zAbGP','NMvCy','mubpR','TibUj','GcauS','GPNYj','XbAqz','svIuk','D\x20PUB','nWRCs','hzvxc','KTKms','mCBGv','SzkRC','M_LEF','VHpTU','FCLmo','KUGEE','forma','提问:','lIhKk','</but','FkSLg','RHHuE','NwdpR','yIVOT','YXsxW','tFLsb','PaXgd','QGyaX','SPtYY','FQlun','VleiL','CJfBv','mFeqX','YVBoX','fy7vC','HLFvO','mnumG','ructo','momoX','mpyPm','QYLXV','KBJSt','OpHNE','ISxWn','jpmQW','DihXV','QWYDm','REkOk','byteL','xQmFq','kwYsY','https','ShLEA','sJotw','eiqse','NYvKD','Iqhgi','qtkBF','getBo','5Aqvo','hwILG','wMggS','AqBBu','cQoHc','GRthn','yrvQE','rTODr','Topzv','(url','bmpme','jTiNp','hqRRB','KtVpq','JOAsJ','amNFo','uaEnZ','gnREi','INxuF','uwmpv','ESazm','rgxSo','remov','succe','uEjAm','fZUnA','18|23','aeBhe','JUfuj','TuXcF','depxL','63zbwynD','JkFOL','Kyyjk','aXUfg','IBbYH','qIqUd','DdzuK','CEomX','</div','NkPKx','9kXxJ','MDxYP','(链接:h','KKbVi','DLE','UtfuQ','EIGpw','DtLHX','MKWpB','khhHE','QAVjC','xpqmN','TeNHn','Qozsd','LazFv','YOIYO','MiWpL','CNGBf','sbETo','sULXv','VXhMB','bDTso','SFlVM','EEODq','jNVuL','AUTXI','/url','JJaXC','gpBxT','FlVkw','|0|2','WMrpp','kqbSL','_titl','输入框','wYKrd','JOwmI','QxFCy','aDgly','TOP_R','ZTzqq','ZaDlI','repla','uVwvR','PBZqR','QFTtj','1|2|1','KKIDt','mhqxp','归纳发表评','jmYJA','dhQou','BaLnz','MxcMm','ibute','map','kEfjx','M_MID','ZSNbO','lTop','XAgnC','VnbPC','zFfRM','YVHBA','GelNw','vsJeB','VWdwl','sgSBt','vote','MZTHJ','has','uVkJM','atIQI','EY---','prese','CjCmH','WdVbc','|8|13','Qhxjp','VJnxS','Hfzqe','FpqnV','PRnJh','(来源:u','11|6|','input','gAejx','lGRSV','mwVDq','JaAEq','nmard','s://u','ovnXf','hqSWd','XjVUg','wydSh','iuzDi','mmxOD','jVlzw','MQZzJ','jmslP','hzDhn','AWHly','BQEad','MVREZ','END\x20P','YPhqP','词的完整独','QyIMq','cwIam','vPkMy','ZamBv','YGRAf','JOhNU','vduNU','int','EpRcn','GLDHL','tZZss','BxWze','utf-8','LapbF','hAFFa','BsEkO','#ff00','BFHun','ccdqf','CsNPS','subst','VFwnr','sGSEw','VNXxO','YGAGb','KGXVX','ZARkX','{}.co','FeJoo','bKatc','sQqkc','REgPh','DF文档','Node','XNqLn','bGynT','role','asUlh','YtaQB','fPKUT','aHDhI','不要放在最','hIzkg','jvulP','tJEus','gukik','MRnPz','vaWUX','hqmef','hvmAo','Lhesm','QpKYp','WGmNI','ycPco','mLeSX','---EN','GkSBm','hPUGu','CnZPR','GfnVX','sFVOv','wgLCL','xGNsJ','zuoHG','DEUJF','nNNkF','aKxJT','\x20PUBL','XKUQV','Xdgce','QrXod','fkNeR','bEoRO','oouZM','ixRJN','site','yugsq','PNRvC','intro','BUiNP','hSrKw','4|2|0','vnQqL','qkxRv','jWzIG','zDRmG','立问题,以','vYoFJ','o7j8Q','attac','SXVps','tKvul','WBHFQ','ZHKlc','zOIsY','GsIeP','ErhBQ','_rang','tyzVf','DVFSA','EiUJG','WEHJr','selec','VCOcq','#prom','PMbAD','eMwUP','AyZZI','awtVq','ESKsR','eNuXC','EFkTU','息。不要假','Jksgs','tmzza','”,结合你','aqCtj','aZezN','gROtJ','wQYLx','koQTX','EDKuA','ZFLMB','ZaeJz','cubdq','NVuqe','iUEgS','ErDsC','GxfIf','AhQkU','WiYUV','udqeW','hivgS','Ga7JP','HOuVy','打开链接','nAZeK','SVcxy','dAtOP','lnmtw','irlAA','BHTCF','Teqql','duHuw','sort','jZyKj','hJYJe','OrNKR','XgDLm','aXDrP','emoji','QxxcE','QBlbi','PtjLy','zTQdD','uiytK','0|3|4','gRixq','FSLbP','ZvMcx','krWnk','YpSCr','tNiGV','tEEvq','FNbfh','(网址ht','CENTE','from','fNWNA','on\x20cl','IEVvm','BfbpD','GoPJE','oHZLS','gTLJc','cyogi','psnOk','conca','IRfGP','XGdom','aria-','zhwqO','dUlaL','qIMEa','Qsxqe','#fnre','|11|1','aOvBN','使用了网络','|15|9','PKyBY','ytuQC','chat_','RqFAv','ubyWg','OuEXe','s=gen','dCXWI','lhrzv','IcDWM','VpLWl','iSItf','DBoWf','mcymU','RZiAH','LmiEG','exIOd','impor','QTqXl','ICfPf','IblqD','xoLAy','BwoeI','pgtGD','cyZUt','qxcFK','告诉我','delta','peiNU','top','GjWjg','tFBse','UjieZ','BiXVn','720uLYdGt','XZzHD','ZigdH','init','rVEiP','20|9|','”的搜索结','SjSkZ','EnVcK','TlAtM','vnFrV','NBEAP','oHBtN','fKZTS','QKmtB','vSCrC','ton>','jpCbc','#ifra','exUSf','UfRFr','sQqTN','JuRIu','lkDNZ','mjvQk','xUPNz','ohPLy','s)\x22>','PxhsC','POST','dzLEW','t(thi','SQmzT','lByfk','QZQQX','kKzbt','funct','IFozV','nujmT','qftvz','GeQqm','DLiFS','CGzQT','next','57ZXD','ring','DNpCU','ZFcXq','源链接,链','RyRMi','eHixT','wctvT','QYUpU','|4|2','katcj','EeNgz','PHZtW','JACFo','paPmi','zFWkD','sdPcc','zBIPw','kThtF','block','ObPQQ','uBPqm','上设定保密','KvxfL','heigh','g9vMj','1|4|0','tribu','PvmAa','match','xyvgs','bCoWu','mSOqL','DShHe','HpOgO','UNwTx','kPFKA','SsVrm','LvWrB','iSqUn','BEGIN','fnpmN','AxEMg','写一句语言','guvpy','onofc','VaNLS','BHmdZ','UBLIC','CSnhZ','\x5c(\x20*\x5c','QbpME','YUAYF','pgHvM','rn\x20th','drzEu','WsVsk','label','TZunL','Selec','|21|2','dxPZM','Ekdgc','color','fwIDA','GMgnn','TJvFL','hrHea','aBdgh','oxddR','uKJNF','TpuLu','BVXpi','cqiva','BAQEF','TWsvp','ThcWj','tWidt','gfnDh','getRe','dKRMx','JVGyo','UHtSA','bNLsS','RJmXx','dmEMs','xRuWJ','NlPws','KffCl','VgAXC','YbOhM','JKIUo','ByUme','iVzwd','GnkBx','JhFwJ','enalt','SHA-2','KLHZs','SopwO','hECcW','的,不含代','ouQoY','gOusW','MoQQw','rlzPx','KAdOK','中文完成任','GxZgf','dXtnu','actio','ciajA','quzCJ','rXJUo','ktnuC','xLrtY','CLNyK','jYNET','ation','fyeov','Kjm9F','npm\x20v','href','agQUc','OzHSs','dczNn','ote\x22>','mZOHZ','FRwaL','KWacF','BduQA','M_RIG','nRwlT','CNMhE','WIBnH','oiFyv','iClSc','qrmNE','UjNJS','pFxNn','IEQUt','ldChR','afVNK','AipQu','SBRkK','OgZXH','FgkPg','decod','SMmcR','kIgFI','eiypi','JoJhM','egkUX','odePo','nfSGq','snqfl','FlcYk','oAUxi','PNXot','ojFRi','CEsFA','务,如果使','chat','RuCGw','XxoYe','ZorEc','yHBIV','gZYCl','GLTUK','sVYqL','mjAQv','Width','BMAvF','90ceN','RnKtU','width','sFNfY','TIZiX','CHuOX','oALdH','YdHhR',',位于','ntDoc','bawmy','shift','gHFKb','nUMhc','KOCOh','KacjD','fOdIh','tOuho','arch.','jWpfw','JkzVZ','EMcSZ','cgYVY','XCjGv','syste','log','ayUoC','FgcEf','uvDAc','DKAMt','RxWVP','LHOSt','rDnWD','YqsDS','DF文档','Oitjv','QucQJ','fbtbU','conti','KyVmg','jMMse','3|2|1','TmyIo','BniAq','网页内容:','spSGq','COzeH','jdvza','7ERH2','TzALp','hNJna','ghwXG','bWcjO','hqWOo','PEfIh','bpdPw','dGjzq','VYIxX','delet','Pxsgz','XVDsr','amenW','XQIXf','n/jso','pctEz','AAOCA','接不要放在','CBsvd','Y----','JdGTn','gLrmA','fucec','vIUZO','hbLCN','VWWEb','Welpa','eVmBL','qUfXK','tQBhb','wDctV','lJBOt','OUojl','onten','网页布局:','inue','tZyPY','OTzLk','XjMns','jmtgi','IyaTJ','hdhMk','stion','CQXgE','zgaaN','filte','ObhxI','eral&','&cate','phfYq','kOXJo','jOyUa','NsluG','icTrm','KYdyL','OgzDs','KKKJE','displ','qpIYf','jXfGW','LDfYV','cudGb','strin','JfcVV','doffD','src','magi/','AVZcR','UACFr','BvtNN','EZzMN','odeAt','szLFW','wer\x22>','\x20KEY-','jpLMr','SOHnD','Nlrbb','OoRNH','dQJjz','piAez','GTosu','pZzgk','查一下','ueYIU','ZqegZ','clone','ewerA','dEMGQ','lZzji','SGkvG','4|15|','uYlnt','Wyfns','MQXKa','VQwXR','GkHJn','es的搜索','JGBeO','KGNyU','FPBQJ','JfFQg','lbOqs','pMZkK','KgyiS','DjbyL','AIEYF','(http','xXwjo','hSqCq','MZdMJ','gXKOn','tps:/','VkQWU','xNJXD','YOfMu','gpLPn','KqqOv','GSmCe','YtMAB',':url','QknEb','body','rWAWz','NikTE','dPuTm','dHlEO','wflBV','biTHg','QFVTf','XbWtn','2154256WBJqex','cUCxi','的回答','WudGT','dpaDA','URIku','vhOde','qvAJl','kSEXj','xQrPv','LmTrK','getAt','UygaJ','cTNiq','CqfpJ','fjHtr','opPDT','IDDLE','SWZjf','index','XWDAt','pplic','VkFKB','ength','q3\x22,\x22','tPoox','qBCTf','ldxnP','me-wr','xRyFO','vUUEX','NZiqa','Viizv','encry','KqUdV','E_RIG','str','table','bind','x.htm','fBZef','wKxNT','hqXaX','iWFTa','test','THDFK','leEsz','fJxSU','CbhUP','wbdHj','xiUIj','rBLEI','aXyld','DNvMD','fOEBu','TWQQN','bHDec','BfpiH','YMOhy','ugYko','xeIeX','hbFwI','Ovtzd','ReeGR','XbvSF','QErdo','charC','jhNdh','NChIZ','FpWIM','XXmeg','kQFjr','\x22retu','eTOHQ','CymwM','KQusk','mmERv','hEven','choic','OrWRq','Orq2W','tddvN','IQqCF','ing','BqsnR','preuM','VBVCu','NLkMF','qdTQK','GgNuf','qunTU','CrXUd','DgXkx','3|1|4','kqdrN','kIqPu','kg/co','qHxUl','BIzPT','IkEXM','scrol','hgKAv','GnzGy','oqhOs','tagNa','UlJdy','CCZKj','PjAyi','xGckG','YIYWo','jOpCc','/stat','COIiR','fkAMw','Iftpo','iUuAB','xFWND','ader','NNOTD','mFrne','KuPWc','ut-co','KYYxZ','JLQqO','wbGBn','VwRoc','eTQlv','RE0jW','wxQkb','kn688','NMkRd','ETVrI','gXZPS','gNvDi','lDKdf','TMEPI','Qirhy','kBoYF','YEyDx','Aafkh','gYRml','QGEzB','UDFTb','pdfDo','krsjs','JCszR','<butt','qtTVQ','qxOCl','|4|16','iubNI','JLwnM','#chat','XExYI','cPdaz','yTdxj','jbIbf','sMauA','uvzjR','wybFd','ngyMz','zAXhP','YHFLL','|16|1','HwPqM','DzxCF','ipGNK','thycl','torAl','messa','apply','DFBxe','iNWAD','aedfK','fwIkW','b\x20lic','xNWlo','shiry','RszHG','QIzRt','XapXc','DFIqU','(链接:u','evXBY','buWHr','nfgnG','LaLFh','HsnWN','Trufa','read','yNlvM','cumen','Sntlm','size','Color','zHxUV','QcWTv','bkSsa','DIHNC','EFT','plrzd','KWJGY','ttps:','ijrmM','QGOwQ','ttjVe','dLQHM','UpoCh','sUEVK','btEWq','NpqDd','UHEnS','q1\x22,\x22','ZurwF','bwruv','gIgwl','ZrsWz','JQrzb','IWNTR','slRSP','HmaCD','qfAfj','qVhCf','CwsTT','uHVJl','class','kPwrO','baTzl','JRNQF','dowxN','kXzvw','end_w','onoec','5|18|','mqaWK','yOAdZ','des','OBqAr','SeJWC','gYReS','ZWQDb','LBOxW','QfsSp','ISpgU','getVi','JoAdY','2A/dY','gITcP','RudxC','sqrt','dow','sTTRO','ErbCf','MBfoV','Gfqws','pre','UJYtS','arKhe','erCas','LxPuU','wGGFt','UvetJ','qzoYk','qVxVb','LoKDC','1361170ejiTiZ','lDdTo','oaUwr','hIIOf','#ffff','jFopB','l?fil','组格式[\x22','Bosct','EluyE','OCtVc','yWJiz','wHfcL','HrLug','WqTsZ','unshi','quWOi','LunbB','uage=','0|18|','CkDfm','LoAvn','nsqNy','SOSRY','AjoOH','split','PyynX','gnIMk','qDikg','yZuiJ','bvNXQ','VAtdb','utqag','zFe7i','McXKy','rQLAX','-MIIB','rame','oiNEf','NNcsw','CZlJE','gify','GEHZg','fGBSQ','QcsHb','yhGHx','vbZPE','sBUPH','MmlvO','TrKji','pgqmm','cwAUv','lWZoP','nFHfU','CgbKk','GAPkJ','MqpyF','JyPNm','cDwqR','tWGFv','YRPol','bMcyU','jXbcg','fRGam','FsaAL','LmWhm','KNZCd','CIiHh','BHbvH','uBHMq','dfun4','LfhWS','dsJYf','data','hJPEN','NvfAm','MhtgU','dyDyi','bclEf','lcssA','\x0a以上是“','#0000','YHwPB','34Odt','OZtPu','wGyHM','IBCgK','XDkAo','nMRDD','://se','UNxRB','vYTOb','spki','ntent','Lduzo','yxWXT','e)\x20{}','TQLlo','flsTl','IUcZO','md+az','xJDXQ','FRRVo','ions','rfxbU','GdpcJ','IRoAL','E\x20KEY','IjANB','oNogq','agbrR','DuBND','mGNGn','wLWVK','XCZJq','TzgCe','HNwRY','Ljgpo','EHbIM','kkKyA','gLwSk','RzYUZ','kpyuj','ELMQV','tKey','ivCeZ','键词“','PFAyu','mVQsS','Ptppq','CqBon','rwEtJ','hTKvK','FHRAL','HSgyT','QZYWw','oERwo','KFcFY','hf6oa','Ayblg','pqNGS','UYRLx','ion\x20*','searc','你是内部代','lengt','号Char','FjmNi','OdKrm','yqKjS','\x20PRIV','yXGiR','TLqqo','DbUYw','xCiRA','value','fesvZ','QSdVK','lMOJY','vGaKJ','bTGTP','dHbTy','TBYnu','yrCEl','iFWCi','EmlpQ','hppmN','GopRf','iSDkL','aSbeX','join','idEkL','zGeoG','ement','toLow','KOjcv','aFqbl','a-zA-','RqydL','fFsrC','tQOzG','BvFXH','NYfKn','eqchY','ratur','SEvcl','BngrM','oMqPa','BWaOF','cdDbI','18eLN','cDmvM','aNHXq','Vhzxw','SRxlb','btn_m','FxMTg','SAavX','VZIvx','JbCkG','nPtxy','AGjVF','slice','more','url','CMzuK','CkDhG','xTPMR','TydsD','VxZqM','xHolt','BUtLK','ffuOn','SQFQN','CIDIE','AdvnE','ty-re','PdzdB','dChil','o9qQ4','xgAnE','GeUps','sdfXz','dJzQW','aGQHr','oVyfL','onloa','mdBQo','IrKtm','mFcpu','CAQEA','fqwHw','sXvzB','识,删除无','avgwi','adMrp','FjQFo','dstEd','fEDpa','chain','Wefkq','FyGXV','bLFYp','butto','SXYTM','BgeWP','EuoAE','zCSjD','oEbQB','3|17','SBEmU','XoDLQ','icama','WVJsT','uXVnz','ceAll','ShWci','style','tPGJH','xSTgg','jmZPU','nHlPM','BNCGv','pdf','HhvoQ','nmfIe','12|19','emMmo','TANwu','hnNkf','subtl','\x0a给出带有','soHbO','IjmuZ','DkUMr','写一段','kqxPb','WcTTQ','重复上文','woZBe','sLnGU','Objec','Bcksn','但是加载失','gIbyH','iyjuQ','PthAg','TfLDL','gClie','MbyUZ','PCuaX','t_que','Conte','PGiJN','srMDC','zaIfj','//url','msMOZ','WXVTp','KQiPo','OJxvS','iOREj','hifBT','asm.j','IRwEy','yDznD','用了网络知','lrEsH','aOKof','HeAnG','rbQZq','floor','bZiNR','lvihi','zwKZo','rirMS','AbXXa','dNmMf','Egdcu','Rqcpb','lhhKr','add','spekL','YFZbD','WjIit','FFvYI','Gdqsz','Sacvd','FQCGR','lgQrX','QOZqu','DDRBq','qPerH','BDdaD','OAZAh','sJITK','rObWu','FIoDu','XQXlA','|2|23','xsuek','user','HcKeK','总结网页内','olNlt','gzNtU','bFgex','zh-CN','RYLKz','FtIsB','eci','gorie','uBRku','[DONE','FDLZm','|3|2','JFGhS','GydzY','BqziS','fXgnF','FqwiK','GeXLB','csNvh','Uogsw','trace','mZphj','fiqQq','BzdoT','uwHAR','zRjqm','awNZB','nfGBe','QLFNb','|7|14','asccp','CEeQa','bHLTd','CZvre','houfZ','LQGyb','ENDRp','DXDtc','yoiUC','TOP_L','mQfxt','EFvgv','cXulG','sJtkM','dfHVa','toStr','\x20的网络知','TavET','NLxRP','哪一个','的知识总结','KLPnM','conte','nctio','nhNbn','GTFSh','#moda','DJpTQ','__pro','YJpeh','haXmQ','WRJgS','LGRxr','xeXkW','iNMjm','ewpor','YCVXM','NtTTv','ges','cpyuo','ycXul','anGqu','hMKHR','ebQeT','yGaRm','lHeig','rch=0','KqteW','JFlOa','vMEyz','复上文。结','dYFQz','gYlxe','PeeGz','XZkKE','edxYa','ATofR','#00ff','FZCrS','BmJAx','uManN','aTbCm','sZpbx','QZgho','e=&sa','0-9a-','VHVVn','woork','getEl','dStyl','mMMbR','OOLwh','不带序号的','qdIUt','xESwc','GxYUT','kaGWD','eAttr','fAnvx','FKpgH','UNaMt','mqiYZ','rpyio','tion','MTHlE','klEmQ','QWApL','FdcNp','ZNFYH','zPiMy','jRyBw','vRpiV','rGkJI','BvnYh','yfjtM','CroKN','\x0a以上是任','RGovG','LBTvP','acDbm','FHWYS','\x20(tru','nIIBh','sBknU','qIUGM','提及已有内','QoAGG','scale','CMtOt','KcGiB','vZiJk','sZfLX','围绕关键词','EQgXL','MkSiL','JzqBy','then','UiRqn','JqRVH','UUmop','7|12','title','0|3|1','OwSkR','znsyL','DmyZx','UvUUs','=\x22cha','392765MgHeuA','jcjwP','你是一个叫','vUrRV','iyoKp','is\x22)(','kg/ke','Nphps','LMOEP','NRoVG','sMXXC','rUTLi','(链接ur','cnVuN','LGFKe','zOFfp','FMHHX','query','json','Ksfjp','VRDnB','infob','umZlq','gXaUX','iNmEm','请推荐','eUvcf','gAegl','wNKhP','WGbpW','VviOb','jXgac','AjrZw','QtPjo','iwUAV','KOKxQ','SEnYX','fZiUP','rjjYc','jDyxZ','hlLaJ','fZSQG','zxQTy','QAxzC','WzxCT','SBMIp','odorH','VpxMU','tgStl','hQZpf','NIyVs','SRUFJ','ISRkk','LSZPx','zzdNu','ChEss','VrlWf','LIC\x20K','UTjyZ',':http','AGNHT','MgcIv','WxLTC','ass=\x22','qGkri','IzizY','iTodV','eHgns','fesea','(网址','ZzsAT','ctor(','LiIcc','5eepH','qMbBH','oxes','jYyEU','shnKp','1|4|2','_cont','mplet','TUemj','gsRDt','fyrcr','RAPFp','CjwCI','lRtvQ','Caskf','HsQkP','xcIFJ','Fnelx','PZlGF','pCVEt','dkktB','BRSJW','写一个','otAEQ','i的引入语','dQPAN','jzIfl','rFnOk','|0|3','Rkoul','JqBPU','RspwV','bnLsO','_inpu','最后,不得','BUnoo','Obvxi','IuNjg','用简体中文','(网址:h','vjleZ','FGLLy','CJMjK','LePrQ','nQsHS','x+el7','Opwce','NAOJA','tNbil','YOwQX','rWfDS','SvICz','debu','q4\x22]','tent','warn','mHqBy','umjbX','all','HfUBT','SMqyD','ywUYB','wmksw','oZsXr','tGmjd','KIFwS','bNQSn','JHttL','RYroY','JrNCG','CJNYL','DPmqE','proto','xWUmR','ADYPu','LjMzm','lCPWb','trqpj','lPFKm','hycxO','PhCPO','ZaVdg','bhzVI','DYnLp','IGHT','mpyYi','CniCL','getTe','WDJHJ','tvFAy','ABUco','LKcOi','bZnYt','rdwZf','vhmmP','rbhlF','zA-Z_','YuSLK','XjcaZ','UoPrh','OUEmf','UFvgb','HInUp','MlAyJ','eqvQU','fXPyL','aEDUN','tmhdc','UzzUa','AMMwN','AcOXR','RSA-O','OyCpp','VHDhP','YHWKL','qRPcX','mnZeN','LdfFE','LcjDH','f\x5c:','ycOcG','Index','curpa','FHnde','22|5|','HWkhT','isfPd','LCCXX','krZsN','xPxGY','DBJVp','QImGq','CsAWz','ekzFL','thrDr','StRGh','byNwB','RhLyS','MMpQa','gffpP','q2\x22,\x22','MQmNC','wyitS','jylly','SxydD','retur','CamoW','asqbu','CZlBK','u9MCf','jYnAw','ZMdpV','gNGYR','nOeUr','img','hXucq','ARKzH','Eldaw','wCBZL','URJQj','HSoKP','EVhNR','FWcSm','DtQcp','NhoQQ','xgrNC','DOQOd','JDRpN','nUQnz','edZHl','GhhGE','ument','ftFrl','fCNBN','cFtDE','XmkxG','sQRcn','rlpur','THPJj','eRDBn','TpBAK','_talk','vaVxZ','PHLGy','HHfNv','JauDh','mDyKJ','Qxxhz','2RHU6','255','nGhSP','ebcha','OEbaE','255,\x20','oFXtw','caGxt','view','QMTcX','ExLlu','MgxGU','xiMFX','clEGB','/inde','BwZSY','wBaHr','FtyvK','pxkMZ','ytext','rQDOO','znege','PtRzA','UBSMH','FShGq','niSzN','dLXKC','JjaQp','qAnLa','state','z8ufS','0,\x200,','tsAHG','JeiTd','aOcyR','XtYAa','FMuTx','ZqGEW','DxdaM','EdlbJ','BxTCd','这是一个P','ymZTw','Psuqe','PCxwA','qNIbG','zZDcm','lMWGO','lcaKR','nCqia','论,可以用','rfFFY','vXxmg','BvepX','ikaiU','kg/se','bVpow','CmjDv','FrMMi','rRhHN','zBUcc','ablSQ','tempe','qgUFT','fjyLD','WYZwO','roxy','E_LEF','RIVAT','哪一些','cTqzt','aQNzs','ETNkz','OxXKo','jztJq','YPQUt','|12|8','UUmOd','etNZW','NZMHT','xtCon','xmTHX','ntRec','KpgFb','fkdTd','YGiFd','EXALG','pORyV','jLBUe','有什么','ymwsy','MCyiY','TLhvd','rTkxo','ense','DuBNP','cPxse','qcLws','PNMzt','Ifsyz','kWgXm','WYSvP','Avfel','nce_p','akTSd','QAB--','完成任务“','oncli','GUlov','NsVzv','iG9w0','t=jso','代码块','oKJmT','vAtsf','1099698YzXeBo','PThuj','air','yrcRM','mIoGn','JTpnY','vcJKL','TLGfL','(网址ur','DqZDe','LfxjI','emes/','RHzaz','Error','JaAcl','NYQEJ','qTzon','vDLyA','coCkF','KhIlM','bBimP','cUncP','min','VbrTC','xgZqG','GeoTZ','HsMss','nNHkI','tXrti','YetxJ','inner','VcQQs','KIZue','dZfsW','KfZAN','JbGEj','WDOLs','QBWDc','_rs_w','wuhsq','9VXPa','gger','oDkxQ','n()\x20','YElnE','vuTjQ','xKixP','*(?:[','rkzGH','vqJoY','qLwOX','OJfAA','ehSxl','xhfPw','iUrae','vkFld','ZPuvQ','SrOPo','5U9h1','DwkXS','DGZvr','VyXrH','Atcin','RlVFs','hdrBo','-----','gukpf','eRKOW','getCo','mGkjK','YyxcW','PATRU','oYwcx','MXegn','juLaH','jwKHK','kDaTH','20|14','xzcCK','D33//','vytYs','lIOSz','QgbkD','uylYm','amEwM','ewJrD','wjEOO','WsFhW','Qwars','ILCzL','b8kQG','LtvMP','xitDB','lcPia','eitJC','YQgiJ','FTtcm','kSGTJ','PHGJD','KYgQT','teOIG','shHYU','fmXdm','的评论','LTApM','GqsHW','gWXII','XvxMY','CvOxS','rFcuw','qTIQw','tpIVD','JrKUg','网页标题:','WTWkh','vOkib','QgjHE','FHbxh','mFJXh','McuQM','fgKGF','catch','PGoZB','dismi','appen','fYUtD','RdtWe','TCpHw','RSZyZ','eauTJ','hpjMX','nqjyk','PDFVi','BkElp','push','numPa','GpBBF','NRixP',',不告诉任','iAySB','xRGeA','xIUgL','MvXvA','jArVR','zNJqS','IClyP','DZUlx','sdXIJ','Z_$][','FEJvj','zkZIy','xUUdw','JCFnr','KhoNk','17|0|','assis','(网址:u','CGHmB','BKwHM','dDLOI','pyghA','lncWM','euhRo','inLTt','setIn','KxIyZ','ixTCE','GwVPv','talk','PPXJG','找一个','uNrdh','rJXEU','ATE\x20K','rqVCR','DuNvf','EMnhK','RKekK','wiPPB','faoWa','TtAMQ','offse','rrodi','aqqlG',',颜色:','JlQky','IobCp','XbNbm','YOSKh','CxEvV','tHeig','WaPQI','githu','QPzaV','FvsIc','zUzvt','VPQek','SzcBK','sjvrb','SxxKf','|1|5|','wIvrS','textC','RMDAL','nFQtN','taMDz','kfZyV','ULZGS','muwbn','uzGFJ','owyxz','NYKPh','ApthK','bSjFe','bZONo','eUAqL','NANUV','AiMMn','FoyUv','能帮忙','VzECU','UpTxK','exec','mEwnb','3|3|1','AuEJl','lTPfw','KkjDM','jHtpr','YPNzg','les的人','QpngV','BSvnm','后,不得重','识。用简体','OvCtT','lzcfe','aEmHp','KHnmv','tPVBK','接)标注对','jtxIH','jNHPD','MJByj','pDjTf','jJoFh','24|19','sdaMC','IvbCf','IjdhC','terva','CjkfF','BuktF','dOzJo','cHPUR','BOTTO'];_0x5055=function(){return _0x209bdc;};return _0x5055();}function send_webchat(_0x43b409){const _0x148083=_0x122511,_0x326892=_0xeae0e,_0x44f475=_0x1317da,_0x24c78e=_0xeae0e,_0x22ec2c=_0x1317da,_0xfdab69={'CJNYL':function(_0x44b62b,_0x43aadf){return _0x44b62b+_0x43aadf;},'cTNiq':_0x148083(0x676)+'es','sQqkc':_0x326892(0x47b)+_0x326892(0xb47),'JfcVV':function(_0x10f7aa,_0x5bac73){return _0x10f7aa+_0x5bac73;},'aMNZP':function(_0x26d263,_0x5e38fb){return _0x26d263+_0x5e38fb;},'AipQu':_0x148083(0x1c8)+_0x44f475(0x709)+_0x22ec2c(0x926)+_0x326892(0x854)+_0x24c78e(0x5cf)+'\x22>','QgjHE':_0x22ec2c(0x442),'iuluW':_0x24c78e(0xbd2)+_0x24c78e(0x966)+_0x22ec2c(0xc1e)+_0x44f475(0x545),'EZzMN':function(_0x319b89,_0x77ff59){return _0x319b89(_0x77ff59);},'cHPUR':_0x326892(0x2cc),'jnehY':_0x24c78e(0x34d)+'>','UUmop':_0x326892(0xae0)+_0x326892(0x4ef)+_0x22ec2c(0x7c7)+_0x24c78e(0xb4c)+_0x22ec2c(0x398)+'--','eHixT':_0x24c78e(0xae0)+_0x22ec2c(0x3b8)+_0x326892(0xa70)+_0x22ec2c(0x79c)+_0x326892(0xae0),'YetxJ':function(_0x4a3f25,_0x27a066){return _0x4a3f25-_0x27a066;},'LapbF':_0x24c78e(0x1a1),'TuXcF':_0x326892(0x9df)+_0x24c78e(0xcd7),'HHfNv':_0x326892(0x528)+'56','bclEf':_0x326892(0x1d4)+'pt','hnNkf':_0x24c78e(0xaac)+':','xiUIj':function(_0x490589,_0x1e03a3){return _0x490589!==_0x1e03a3;},'rrVJd':_0x22ec2c(0x948),'amenW':_0x326892(0x3a7),'XbAqz':_0x148083(0x25b),'vPkMy':_0x148083(0xba1),'QbpME':_0x326892(0x6c0)+_0x44f475(0xa25),'gukpf':function(_0x19eaf8,_0x1243ef){return _0x19eaf8>_0x1243ef;},'vUUEX':function(_0x50a339,_0x3abe9f){return _0x50a339==_0x3abe9f;},'MJByj':_0x326892(0x892)+']','FNbfh':function(_0x47930f,_0x130aec){return _0x47930f===_0x130aec;},'WxgvE':_0x148083(0x4d6),'VkEjB':_0x44f475(0xa73),'cudGb':_0x148083(0x975)+_0x44f475(0x98c),'YGAGb':_0x148083(0x6c0)+_0x22ec2c(0x991)+'t','RZiAH':_0x326892(0x886),'hdhMk':_0x24c78e(0xb3a)+_0x24c78e(0x1fb),'dDLOI':function(_0x335644,_0x424dee){return _0x335644===_0x424dee;},'atIQI':_0x44f475(0x914),'oUglD':_0x22ec2c(0x9f5),'lrtxt':_0x44f475(0x62c),'otAEQ':_0x24c78e(0x473),'ghwXG':_0x44f475(0x8c2),'TIZiX':_0x326892(0xa89),'svIHw':_0x148083(0x6c5),'BUiNP':_0x326892(0x178),'BaFAR':_0x148083(0x355),'qmLcK':_0x22ec2c(0x5df),'oHZLS':_0x326892(0x423)+'pt','peiNU':function(_0x430e28,_0x4ec74e,_0x1d3fe3){return _0x430e28(_0x4ec74e,_0x1d3fe3);},'JauDh':_0x22ec2c(0x1c8)+_0x22ec2c(0x709)+_0x44f475(0x926)+_0x22ec2c(0xc72)+_0x148083(0x5ee),'FyGXV':function(_0x213fbd,_0xad17e7){return _0x213fbd===_0xad17e7;},'hyzNU':_0x148083(0x23e),'KgyiS':_0x326892(0x8c6),'vjleZ':_0x326892(0x2f9),'nujmT':function(_0x4c7e98,_0x54d2e6){return _0x4c7e98(_0x54d2e6);},'oxddR':function(_0xb07ba2,_0x193183){return _0xb07ba2===_0x193183;},'vSYzL':_0x44f475(0x27d),'sFGQE':_0x24c78e(0x3c7),'NkPKx':function(_0x401c88,_0x296576){return _0x401c88===_0x296576;},'PEfIh':_0x22ec2c(0x570),'WsVsk':_0x22ec2c(0xcd3),'ueYIU':_0x44f475(0x60a),'IyaTJ':function(_0x1449e7,_0x19e665){return _0x1449e7<_0x19e665;},'kQFjr':function(_0xaf8578,_0x46fcb8){return _0xaf8578+_0x46fcb8;},'FSLbP':function(_0x93aada,_0x45368d){return _0x93aada+_0x45368d;},'oiNEf':function(_0x2d9e24,_0x44248e){return _0x2d9e24+_0x44248e;},'jzIfl':_0x24c78e(0x907)+'\x20','GelNw':_0x24c78e(0x8b7)+_0x22ec2c(0xb89)+_0x24c78e(0x532)+_0x22ec2c(0x568)+_0x148083(0x863)+_0x148083(0x81a)+_0x24c78e(0xc68)+_0x326892(0x257)+_0x24c78e(0xb8f)+_0x22ec2c(0xca4)+_0x44f475(0xbeb)+_0x22ec2c(0x3e4)+_0x22ec2c(0xb88)+_0x326892(0x8d9)+'果:','YqsDS':_0x44f475(0x58c)+'m','APNds':_0x22ec2c(0x7c1)+_0x44f475(0x7c3)+_0x44f475(0xb85)+_0x24c78e(0xba8)+_0x24c78e(0x4dd)+_0x148083(0xb29)+_0x22ec2c(0xcc2)+_0x24c78e(0x477)+_0x148083(0xc0a)+_0x326892(0x179)+_0x326892(0x29b)+_0x326892(0x260)+_0x44f475(0x205)+_0x44f475(0x4cb)+_0x24c78e(0x5b6)+_0x326892(0x992)+_0x44f475(0x847),'uNrdh':function(_0x2ecbcb,_0x2406e7){return _0x2ecbcb+_0x2406e7;},'WwhPR':_0x24c78e(0xcbe)+'\x0a','bciWd':_0x24c78e(0x996)+_0x44f475(0xa96),'gpLPn':_0x44f475(0x4b8),'DlFXv':function(_0x1fc743,_0x491442){return _0x1fc743(_0x491442);},'bLirm':function(_0x3fc2e2,_0xa77b4a){return _0x3fc2e2+_0xa77b4a;},'VrlWf':function(_0x47ab00,_0x4e147b){return _0x47ab00+_0x4e147b;},'Atcin':_0x22ec2c(0x31e)+_0x326892(0x78a)+_0x326892(0x586)+_0x24c78e(0x688)+_0x44f475(0x977)+_0x44f475(0x798),'zPiMy':function(_0xcd2a51,_0x16d8eb){return _0xcd2a51!=_0x16d8eb;},'VNXxO':_0x44f475(0x6c0),'KQiPo':function(_0x519ed5,_0x58a0a9){return _0x519ed5+_0x58a0a9;},'KYgQT':_0x24c78e(0x781),'VuOJv':_0x24c78e(0x4a1)+'\x0a','aXUfg':function(_0x4b71f8,_0x3f0a43){return _0x4b71f8===_0x3f0a43;},'FQlun':_0x44f475(0x6ed),'ulIsE':_0x44f475(0x613),'rWfDS':function(_0x5eb9eb){return _0x5eb9eb();},'ddDtz':function(_0xfb102a,_0x13c590){return _0xfb102a>_0x13c590;},'nQsHS':function(_0x535eac,_0x9c7b65){return _0x535eac+_0x9c7b65;},'GxYUT':_0x22ec2c(0x31e)+_0x44f475(0x78a)+_0x22ec2c(0x586)+_0x22ec2c(0xa63)+_0x24c78e(0xc57)+'q=','sFNfY':_0x22ec2c(0x24c)+_0x326892(0x743)+_0x326892(0x88c)+_0x44f475(0x2cd)+_0x22ec2c(0x41c)+_0x44f475(0x8e7)+_0x326892(0x96b)+_0x326892(0x8d5)+_0x44f475(0x5d5)+_0x24c78e(0x890)+_0x22ec2c(0x47f)+_0x22ec2c(0x5d4)+_0x326892(0x2fb)+_0x22ec2c(0xa9b)+'n'};if(_0xfdab69[_0x24c78e(0x900)](lock_chat,0xf52*0x2+0x1695+-0x3539))return;lock_chat=-0xceb*0x1+-0x1b4e+-0x283a*-0x1,knowledge=document[_0x148083(0x938)+_0x24c78e(0x502)+_0x326892(0x1dd)](_0xfdab69[_0x22ec2c(0x3d2)])[_0x24c78e(0xabd)+_0x326892(0x18e)][_0x148083(0x379)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x326892(0x379)+'ce'](/<hr.*/gs,'')[_0x44f475(0x379)+'ce'](/<[^>]+>/g,'')[_0x148083(0x379)+'ce'](/\n\n/g,'\x0a');if(_0xfdab69[_0x44f475(0xae1)](knowledge[_0x44f475(0x7c2)+'h'],0x1*-0x1723+-0x16c8+0x2f7b))knowledge[_0x22ec2c(0x7fb)](-0x1e1f+-0x675*-0x1+0xc9d*0x2);knowledge+=_0xfdab69[_0x24c78e(0x85c)](_0xfdab69[_0x326892(0x95f)](_0xfdab69[_0x22ec2c(0xb02)],original_search_query),_0xfdab69[_0x22ec2c(0x288)]);let _0x51e6ab=document[_0x24c78e(0x938)+_0x44f475(0x502)+_0x148083(0x1dd)](_0xfdab69[_0x148083(0x3d3)])[_0x148083(0x7cc)];_0x43b409&&(_0xfdab69[_0x44f475(0x348)](_0xfdab69[_0x148083(0x308)],_0xfdab69[_0x326892(0x2be)])?(_0x4915a2=_0x3137ce[_0x22ec2c(0x245)](_0xfdab69[_0x22ec2c(0x9b6)](_0x319571,_0x97d801))[_0xfdab69[_0x148083(0x635)]],_0x2f700b=''):(_0x51e6ab=_0x43b409[_0x22ec2c(0xb69)+_0x24c78e(0x5c6)+'t'],_0x43b409[_0x22ec2c(0x33c)+'e'](),_0xfdab69[_0x24c78e(0x9a2)](chatmore)));if(_0xfdab69[_0x148083(0x646)](_0x51e6ab[_0x148083(0x7c2)+'h'],0x1fd2+-0x1b24+-0x4ae)||_0xfdab69[_0x22ec2c(0xc4e)](_0x51e6ab[_0x24c78e(0x7c2)+'h'],0xa1f*0x2+-0x206c+0xcba))return;_0xfdab69[_0x326892(0x495)](fetchRetry,_0xfdab69[_0x24c78e(0xb4a)](_0xfdab69[_0x44f475(0x99c)](_0xfdab69[_0x22ec2c(0x8f2)],_0xfdab69[_0x24c78e(0x5eb)](encodeURIComponent,_0x51e6ab)),_0xfdab69[_0x148083(0x577)]),0x4b*-0xc+-0xd3*-0x16+-0xe9b)[_0x326892(0x91b)](_0x1e1ec2=>_0x1e1ec2[_0x326892(0x939)]())[_0x24c78e(0x91b)](_0x122e77=>{const _0x33b3ff=_0x44f475,_0xe0243b=_0x148083,_0x47997a=_0x22ec2c,_0x540a82=_0x24c78e,_0x17078f=_0x148083,_0x19c769={'qRPcX':function(_0x2dbb1f,_0x5b522b){const _0x16479c=_0x2717;return _0xfdab69[_0x16479c(0x4c1)](_0x2dbb1f,_0x5b522b);},'LfhWS':function(_0x6ac329,_0x466924){const _0x21b6ae=_0x2717;return _0xfdab69[_0x21b6ae(0x9b6)](_0x6ac329,_0x466924);},'GoTnP':function(_0x3eb706,_0x191d74){const _0x3cfe44=_0x2717;return _0xfdab69[_0x3cfe44(0x50c)](_0x3eb706,_0x191d74);},'vYTOb':_0xfdab69[_0x33b3ff(0x2e7)],'oDkxQ':_0xfdab69[_0xe0243b(0xcc8)]};if(_0xfdab69[_0xe0243b(0x34e)](_0xfdab69[_0x540a82(0x5aa)],_0xfdab69[_0x33b3ff(0x5aa)])){prompt=JSON[_0x540a82(0x245)](_0xfdab69[_0xe0243b(0x4c1)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x540a82(0xb7d)](_0x122e77[_0xe0243b(0x93c)+_0x17078f(0x972)][0x2*0xab3+0x194*-0x18+0x107a][_0x540a82(0x8bd)+'nt'])[0x16*-0xc5+0x3*0x5e7+-0xc6])),prompt[_0xe0243b(0x77a)][_0x47997a(0x399)+_0x17078f(0xa93)+_0x33b3ff(0x527)+'y']=0x49+-0x1f30*0x1+-0x8*-0x3dd,prompt[_0x33b3ff(0x77a)][_0x47997a(0xa6a)+_0x17078f(0x7e9)+'e']=-0x102a+0x1d12+-0xce8+0.9;for(st in prompt[_0x33b3ff(0x231)]){if(_0xfdab69[_0xe0243b(0x45f)](_0xfdab69[_0x47997a(0x4ff)],_0xfdab69[_0x47997a(0x5f9)]))_0x3a5c57='表单';else{if(_0xfdab69[_0x47997a(0x5cd)](_0xfdab69[_0x540a82(0x9b6)](_0xfdab69[_0x540a82(0x66f)](_0xfdab69[_0x540a82(0x25c)](_0xfdab69[_0x47997a(0x459)](_0xfdab69[_0x47997a(0x757)](knowledge,prompt[_0x540a82(0x231)][st]),'\x0a'),_0xfdab69[_0x540a82(0x98a)]),_0x51e6ab),_0xfdab69[_0x47997a(0x38f)])[_0x17078f(0x7c2)+'h'],-0x1b6+-0x1948+0x1d*0x122))knowledge+=_0xfdab69[_0x17078f(0x459)](prompt[_0xe0243b(0x231)][st],'\x0a');}}const _0x18bfaf={};_0x18bfaf[_0x33b3ff(0x3df)]=_0xfdab69[_0x17078f(0x595)],_0x18bfaf[_0xe0243b(0x8bd)+'nt']=_0xfdab69[_0x540a82(0xc88)],prompt[_0x33b3ff(0x77a)][_0x47997a(0x6d1)+_0x540a82(0x8cd)]=[_0x18bfaf,{'role':_0xfdab69[_0xe0243b(0x5ce)],'content':_0xfdab69[_0x47997a(0xb4a)](_0xfdab69[_0x17078f(0x206)],knowledge)},{'role':_0xfdab69[_0x540a82(0x487)],'content':_0xfdab69[_0x33b3ff(0x757)](_0xfdab69[_0x540a82(0x66f)](_0xfdab69[_0x33b3ff(0x259)],_0x51e6ab),'')}],optionsweb={'method':_0xfdab69[_0x540a82(0x619)],'headers':headers,'body':_0xfdab69[_0x33b3ff(0x4c1)](b64EncodeUnicode,JSON[_0x47997a(0x5e3)+_0xe0243b(0x75a)](prompt[_0x33b3ff(0x77a)]))},document[_0x47997a(0x938)+_0x540a82(0x502)+_0xe0243b(0x1dd)](_0xfdab69[_0xe0243b(0x468)])[_0xe0243b(0xabd)+_0xe0243b(0x18e)]='',_0xfdab69[_0x33b3ff(0x495)](markdownToHtml,_0xfdab69[_0xe0243b(0xbbb)](beautify,_0x51e6ab),document[_0x47997a(0x938)+_0x47997a(0x502)+_0x33b3ff(0x1dd)](_0xfdab69[_0x33b3ff(0x468)])),chatTemp='',text_offset=-(0x25f1+0x5*0x2f+-0x26db),prev_chat=document[_0x540a82(0x8eb)+_0x47997a(0x7de)+_0x17078f(0x192)](_0xfdab69[_0x17078f(0x3d9)])[_0xe0243b(0xabd)+_0x540a82(0x18e)],prev_chat=_0xfdab69[_0x33b3ff(0xbb5)](_0xfdab69[_0x17078f(0x66f)](_0xfdab69[_0x33b3ff(0x95f)](prev_chat,_0xfdab69[_0x540a82(0x556)]),document[_0xe0243b(0x938)+_0x540a82(0x502)+_0x33b3ff(0x1dd)](_0xfdab69[_0x47997a(0x468)])[_0x33b3ff(0xabd)+_0xe0243b(0x18e)]),_0xfdab69[_0x17078f(0x2b5)]),_0xfdab69[_0x33b3ff(0x495)](fetch,_0xfdab69[_0x540a82(0xadd)],optionsweb)[_0x17078f(0x91b)](_0x4ca25b=>{const _0x47483d=_0x47997a,_0x3dfae0=_0x540a82,_0x262817=_0x540a82,_0x5a8403=_0x47997a,_0x52ed07=_0x17078f,_0x31dae5={'dKRMx':_0xfdab69[_0x47483d(0x3d9)],'xRcYx':function(_0x4a1c51,_0xc69d77){const _0x463ff8=_0x47483d;return _0xfdab69[_0x463ff8(0x5e4)](_0x4a1c51,_0xc69d77);},'jwKHK':function(_0xac52,_0x31fd2){const _0x107f4d=_0x47483d;return _0xfdab69[_0x107f4d(0x25c)](_0xac52,_0x31fd2);},'ytRRR':_0xfdab69[_0x3dfae0(0x556)],'Kgwdr':_0xfdab69[_0x47483d(0xb13)],'vwxxj':_0xfdab69[_0x47483d(0x249)],'kpWgt':function(_0x37b0b9,_0x3feca9){const _0x248210=_0x5a8403;return _0xfdab69[_0x248210(0x5eb)](_0x37b0b9,_0x3feca9);},'ytuQC':_0xfdab69[_0x52ed07(0xb9d)],'ywUYB':_0xfdab69[_0x47483d(0x2b5)],'yugsq':_0xfdab69[_0x47483d(0x91e)],'wGGFt':_0xfdab69[_0x3dfae0(0x4cd)],'uYlnt':function(_0x58dc4f,_0x465e42){const _0x3cdc9e=_0x3dfae0;return _0xfdab69[_0x3cdc9e(0xabc)](_0x58dc4f,_0x465e42);},'nqjyk':function(_0x4c3932,_0x5e5af1){const _0xf702a=_0x262817;return _0xfdab69[_0xf702a(0x5eb)](_0x4c3932,_0x5e5af1);},'URIku':_0xfdab69[_0x3dfae0(0x3c8)],'bZiNR':_0xfdab69[_0x47483d(0x343)],'OEJdo':_0xfdab69[_0x262817(0xa28)],'VLxWk':_0xfdab69[_0x3dfae0(0x77f)],'qsKhh':_0xfdab69[_0x52ed07(0x83e)],'BwZSY':function(_0x4dba5c,_0x2c9426){const _0x7f9182=_0x3dfae0;return _0xfdab69[_0x7f9182(0x65a)](_0x4dba5c,_0x2c9426);},'PFAyu':_0xfdab69[_0x5a8403(0x202)],'LoKDC':_0xfdab69[_0x262817(0x5b1)],'LCCXX':_0xfdab69[_0x5a8403(0x2ef)],'CidYE':_0xfdab69[_0x3dfae0(0x3bd)],'PCxwA':_0xfdab69[_0x262817(0x4fa)],'MEIBC':function(_0x20933a,_0x3bea60){const _0x2cde18=_0x47483d;return _0xfdab69[_0x2cde18(0xae1)](_0x20933a,_0x3bea60);},'dhpvh':function(_0x2e74df,_0x440975){const _0x19de3f=_0x262817;return _0xfdab69[_0x19de3f(0x646)](_0x2e74df,_0x440975);},'yhGHx':_0xfdab69[_0x262817(0xb92)],'lIOSz':function(_0x24bd78,_0x484a0f){const _0x199c86=_0x52ed07;return _0xfdab69[_0x199c86(0x45f)](_0x24bd78,_0x484a0f);},'FqwiK':_0xfdab69[_0x3dfae0(0xc80)],'YuOCe':_0xfdab69[_0x3dfae0(0x213)],'XInSa':_0xfdab69[_0x52ed07(0x5e2)],'DcdnG':_0xfdab69[_0x5a8403(0x3d3)],'tNiGV':_0xfdab69[_0x52ed07(0x487)],'CkDfm':_0xfdab69[_0x52ed07(0x5ce)],'oZrev':function(_0x5d31ab,_0x3c33f5){const _0x36ee95=_0x5a8403;return _0xfdab69[_0x36ee95(0xb3e)](_0x5d31ab,_0x3c33f5);},'mIoGn':_0xfdab69[_0x262817(0x397)],'GrkpU':_0xfdab69[_0x262817(0xbe6)],'wHfcL':_0xfdab69[_0x5a8403(0xc5e)],'bnLsO':_0xfdab69[_0x3dfae0(0x987)],'Wefkq':_0xfdab69[_0x3dfae0(0x635)],'vbZPE':_0xfdab69[_0x262817(0x5a7)],'oPSkR':_0xfdab69[_0x262817(0x578)],'evXBY':_0xfdab69[_0x5a8403(0x2db)],'umZlq':_0xfdab69[_0x5a8403(0x40a)],'KZfku':_0xfdab69[_0x47483d(0x278)],'EluyE':_0xfdab69[_0x5a8403(0xbcf)],'aOcyR':_0xfdab69[_0x47483d(0x468)],'ZnMkW':function(_0x4f1f9c,_0x3c8e69,_0x6fbffd){const _0x5aebf2=_0x47483d;return _0xfdab69[_0x5aebf2(0x495)](_0x4f1f9c,_0x3c8e69,_0x6fbffd);},'WcPTF':function(_0x4e32f7,_0x1e0dde){const _0x28741a=_0x5a8403;return _0xfdab69[_0x28741a(0x25c)](_0x4e32f7,_0x1e0dde);},'BbrEf':_0xfdab69[_0x52ed07(0xa29)]};if(_0xfdab69[_0x3dfae0(0x822)](_0xfdab69[_0x47483d(0xc1d)],_0xfdab69[_0x3dfae0(0x60d)]))_0x2e85c4+=_0xe00390;else{const _0x5d31b6=_0x4ca25b[_0x47483d(0x61f)][_0x3dfae0(0x516)+_0x3dfae0(0x69d)]();let _0x22ffdf='',_0x15904f='';_0x5d31b6[_0x47483d(0x6e5)]()[_0x3dfae0(0x91b)](function _0x2f1fee({done:_0x386383,value:_0xaff285}){const _0xb70fe=_0x52ed07,_0x263e2d=_0x5a8403,_0x4e0db0=_0x52ed07,_0x4eaa42=_0x52ed07,_0x118677=_0x262817,_0x59ae89={'dowxN':function(_0x562869,_0x85cc51){const _0x171b06=_0x2717;return _0x19c769[_0x171b06(0x9e3)](_0x562869,_0x85cc51);},'jgInp':function(_0x39c90a,_0x4d9ae1){const _0x256a3c=_0x2717;return _0x19c769[_0x256a3c(0x778)](_0x39c90a,_0x4d9ae1);}};if(_0x19c769[_0xb70fe(0x1a2)](_0x19c769[_0xb70fe(0x78c)],_0x19c769[_0x263e2d(0x78c)])){if(_0x386383)return;const _0x13b843=new TextDecoder(_0x19c769[_0x4e0db0(0xac9)])[_0x4e0db0(0x55a)+'e'](_0xaff285);return _0x13b843[_0x4e0db0(0xbcb)]()[_0x118677(0x74a)]('\x0a')[_0x4eaa42(0xcba)+'ch'](function(_0x3ad800){const _0x36a85a=_0x4eaa42,_0x28ff9c=_0x263e2d,_0x5c1cd0=_0x4e0db0,_0x4a4434=_0x4eaa42,_0x17559c=_0xb70fe,_0x3361b5={'YHFLL':_0x31dae5[_0x36a85a(0x517)],'jRyBw':function(_0x520b6e,_0x1fbe80){const _0x27bc21=_0x36a85a;return _0x31dae5[_0x27bc21(0xbd4)](_0x520b6e,_0x1fbe80);},'tsAHG':function(_0x5a99ef,_0x6b0561){const _0x11b86f=_0x36a85a;return _0x31dae5[_0x11b86f(0xbd4)](_0x5a99ef,_0x6b0561);},'asccp':function(_0x567b67,_0x577266){const _0x37e569=_0x36a85a;return _0x31dae5[_0x37e569(0xaea)](_0x567b67,_0x577266);},'gUohT':function(_0x37c656,_0x30359a){const _0xb9ba1a=_0x36a85a;return _0x31dae5[_0xb9ba1a(0xaea)](_0x37c656,_0x30359a);},'wflBV':_0x31dae5[_0x36a85a(0xc26)],'PCuaX':_0x31dae5[_0x36a85a(0xbd8)],'qgaRl':_0x31dae5[_0x5c1cd0(0x24b)],'WsFhW':function(_0x6ddb43,_0x16e034){const _0x2498a9=_0x36a85a;return _0x31dae5[_0x2498a9(0xcab)](_0x6ddb43,_0x16e034);},'krWnk':_0x31dae5[_0x36a85a(0x47a)],'fhgdb':_0x31dae5[_0x5c1cd0(0x9ad)],'bwruv':_0x31dae5[_0x5c1cd0(0x407)],'spekL':_0x31dae5[_0x36a85a(0x72c)],'UqAoh':function(_0x5c9964,_0x4fbbb8){const _0x5f2bca=_0x4a4434;return _0x31dae5[_0x5f2bca(0x601)](_0x5c9964,_0x4fbbb8);},'gJcyT':function(_0x303c15,_0x287dfb){const _0x570679=_0x28ff9c;return _0x31dae5[_0x570679(0xcab)](_0x303c15,_0x287dfb);},'YGRAf':function(_0x29e051,_0x54c90d){const _0x265ee9=_0x17559c;return _0x31dae5[_0x265ee9(0xb22)](_0x29e051,_0x54c90d);},'Jksgs':_0x31dae5[_0x4a4434(0x62d)],'lpPJC':_0x31dae5[_0x5c1cd0(0x869)],'AKGdf':_0x31dae5[_0x4a4434(0xc48)],'SzcBK':_0x31dae5[_0x28ff9c(0x1da)],'EdlbJ':_0x31dae5[_0x4a4434(0x1bb)]};if(_0x31dae5[_0x4a4434(0xa3b)](_0x31dae5[_0x5c1cd0(0x7b0)],_0x31dae5[_0x4a4434(0x730)])){try{_0x31dae5[_0x36a85a(0xa3b)](_0x31dae5[_0x5c1cd0(0x9ef)],_0x31dae5[_0x4a4434(0xbfd)])?document[_0x5c1cd0(0x938)+_0x5c1cd0(0x502)+_0x5c1cd0(0x1dd)](_0x31dae5[_0x5c1cd0(0xa58)])[_0x36a85a(0x68c)+_0x5c1cd0(0x38a)]=document[_0x5c1cd0(0x938)+_0x28ff9c(0x502)+_0x36a85a(0x1dd)](_0x31dae5[_0x5c1cd0(0xa58)])[_0x36a85a(0x68c)+_0x36a85a(0x8d4)+'ht']:_0x4bf33e+='';}catch(_0x774aee){}_0x22ffdf='';if(_0x31dae5[_0x5c1cd0(0xc03)](_0x3ad800[_0x36a85a(0x7c2)+'h'],0x115b+0xb*-0xac+-0x5*0x1fd))_0x22ffdf=_0x3ad800[_0x4a4434(0x7fb)](0x1b7*-0x1+-0x1273+0x1430);if(_0x31dae5[_0x36a85a(0x224)](_0x22ffdf,_0x31dae5[_0x28ff9c(0x75e)])){if(_0x31dae5[_0x5c1cd0(0xaf0)](_0x31dae5[_0x5c1cd0(0x899)],_0x31dae5[_0x5c1cd0(0x1e2)]))bTJWqn[_0x17559c(0x70d)](_0x495bc8,'0');else{const _0x5a6abb=_0x31dae5[_0x17559c(0x1a0)][_0x28ff9c(0x74a)]('|');let _0x344c8f=0x1e62+-0x2*0x5d5+-0x12b8;while(!![]){switch(_0x5a6abb[_0x344c8f++]){case'0':document[_0x28ff9c(0x938)+_0x5c1cd0(0x502)+_0x4a4434(0x1dd)](_0x31dae5[_0x17559c(0xbaf)])[_0x4a4434(0x7cc)]='';continue;case'1':const _0x2f8040={};_0x2f8040[_0x4a4434(0x3df)]=_0x31dae5[_0x28ff9c(0x45d)],_0x2f8040[_0x17559c(0x8bd)+'nt']=_0x51e6ab,word_last[_0x5c1cd0(0xb25)](_0x2f8040);continue;case'2':lock_chat=-0xa*0x285+-0x2685+0x3fb7;continue;case'3':return;case'4':const _0x210acd={};_0x210acd[_0x17559c(0x3df)]=_0x31dae5[_0x4a4434(0x745)],_0x210acd[_0x5c1cd0(0x8bd)+'nt']=chatTemp,word_last[_0x17559c(0xb25)](_0x210acd);continue;}break;}}}let _0xf98f66;try{if(_0x31dae5[_0x36a85a(0x226)](_0x31dae5[_0x17559c(0xaa3)],_0x31dae5[_0x28ff9c(0x18b)]))_0x5ba9a6[_0x36a85a(0x8eb)+_0x17559c(0x7de)+_0x17559c(0x192)](_0x3361b5[_0x28ff9c(0x6ca)])[_0x5c1cd0(0xabd)+_0x4a4434(0x18e)]=_0x3361b5[_0x36a85a(0x901)](_0x3361b5[_0x5c1cd0(0xa4c)](_0x3361b5[_0x5c1cd0(0x901)](_0x3361b5[_0x17559c(0x901)](_0x3361b5[_0x28ff9c(0x8a7)](_0x3361b5[_0x5c1cd0(0xcb6)](_0x44e1d4,_0x3361b5[_0x17559c(0x624)]),_0x3361b5[_0x5c1cd0(0x853)]),_0x3361b5[_0x28ff9c(0xc63)]),_0x3361b5[_0x5c1cd0(0xaf6)](_0x2e0f54,_0x4961c8)),_0x3361b5[_0x36a85a(0x45b)]),_0x3361b5[_0x28ff9c(0xbba)]);else try{if(_0x31dae5[_0x36a85a(0xa3b)](_0x31dae5[_0x17559c(0x73d)],_0x31dae5[_0x4a4434(0x990)]))_0xf98f66=JSON[_0x5c1cd0(0x245)](_0x31dae5[_0x4a4434(0xaea)](_0x15904f,_0x22ffdf))[_0x31dae5[_0x36a85a(0x821)]],_0x15904f='';else return 0x15de+0x233d+-0x391a;}catch(_0x317633){if(_0x31dae5[_0x4a4434(0xaf0)](_0x31dae5[_0x28ff9c(0x75f)],_0x31dae5[_0x5c1cd0(0xd05)])){const _0x39ac76=_0x3361b5[_0x36a85a(0x6fe)],_0x3de0f5=_0x3361b5[_0x5c1cd0(0x873)],_0x119395=_0x59e5e3[_0x4a4434(0x3cf)+_0x36a85a(0x4c8)](_0x39ac76[_0x17559c(0x7c2)+'h'],_0x3361b5[_0x17559c(0x1f8)](_0x28db29[_0x36a85a(0x7c2)+'h'],_0x3de0f5[_0x4a4434(0x7c2)+'h'])),_0x2ba45a=_0x3361b5[_0x5c1cd0(0x191)](_0x54e439,_0x119395),_0xdda91f=_0x3361b5[_0x17559c(0x3bf)](_0x56ec9c,_0x2ba45a);return _0x42aeb0[_0x5c1cd0(0x83f)+'e'][_0x5c1cd0(0x48a)+_0x5c1cd0(0x7ad)](_0x3361b5[_0x5c1cd0(0x42c)],_0xdda91f,{'name':_0x3361b5[_0x36a85a(0x2e1)],'hash':_0x3361b5[_0x17559c(0x1b5)]},!![],[_0x3361b5[_0x5c1cd0(0xb64)]]);}else _0xf98f66=JSON[_0x17559c(0x245)](_0x22ffdf)[_0x31dae5[_0x28ff9c(0x821)]],_0x15904f='';}}catch(_0x5addd7){_0x31dae5[_0x4a4434(0xa3b)](_0x31dae5[_0x5c1cd0(0x6df)],_0x31dae5[_0x5c1cd0(0x93d)])?_0x15904f+=_0x22ffdf:_0x25bd70[_0x5c1cd0(0x1e1)](_0x3361b5[_0x4a4434(0xa53)],_0x4bc916);}_0xf98f66&&_0x31dae5[_0x36a85a(0xc03)](_0xf98f66[_0x36a85a(0x7c2)+'h'],-0x1f15+0x5a6+0x196f)&&_0xf98f66[0x1*-0x14eb+0x899*-0x2+-0xb*-0x377][_0x4a4434(0x494)][_0x17559c(0x8bd)+'nt']&&(_0x31dae5[_0x17559c(0x226)](_0x31dae5[_0x28ff9c(0xcae)],_0x31dae5[_0x28ff9c(0x73a)])?_0x11b8eb[_0x28ff9c(0x1e1)](_0x3361b5[_0x17559c(0xa53)],_0x4ffda6):chatTemp+=_0xf98f66[-0x25f9+-0x1d*-0x6+-0x1*-0x254b][_0x28ff9c(0x494)][_0x5c1cd0(0x8bd)+'nt']),chatTemp=chatTemp[_0x36a85a(0x379)+_0x28ff9c(0x830)]('\x0a\x0a','\x0a')[_0x28ff9c(0x379)+_0x28ff9c(0x830)]('\x0a\x0a','\x0a'),document[_0x4a4434(0x938)+_0x36a85a(0x502)+_0x5c1cd0(0x1dd)](_0x31dae5[_0x17559c(0xa4e)])[_0x36a85a(0xabd)+_0x17559c(0x18e)]='',_0x31dae5[_0x5c1cd0(0xbd0)](markdownToHtml,_0x31dae5[_0x4a4434(0xcab)](beautify,chatTemp),document[_0x5c1cd0(0x938)+_0x5c1cd0(0x502)+_0x4a4434(0x1dd)](_0x31dae5[_0x28ff9c(0xa4e)])),document[_0x36a85a(0x8eb)+_0x4a4434(0x7de)+_0x4a4434(0x192)](_0x31dae5[_0x4a4434(0x517)])[_0x5c1cd0(0xabd)+_0x4a4434(0x18e)]=_0x31dae5[_0x4a4434(0xbd4)](_0x31dae5[_0x4a4434(0xcdf)](_0x31dae5[_0x36a85a(0xaea)](prev_chat,_0x31dae5[_0x28ff9c(0xc2a)]),document[_0x5c1cd0(0x938)+_0x4a4434(0x502)+_0x17559c(0x1dd)](_0x31dae5[_0x28ff9c(0xa4e)])[_0x28ff9c(0xabd)+_0x5c1cd0(0x18e)]),_0x31dae5[_0x28ff9c(0x9ad)]);}else _0x1a6dbc+=_0x55bfad;}),_0x5d31b6[_0xb70fe(0x6e5)]()[_0x4e0db0(0x91b)](_0x2f1fee);}else{const _0x50f9b7={};_0x50f9b7[_0x118677(0x912)]=0x1,_0x4f0a8d[_0xb70fe(0xa34)]=_0x4e483c[_0x263e2d(0x71c)+_0x4eaa42(0x8ca)+'t'](_0x50f9b7),_0x570c53[_0x4eaa42(0xb25)](_0xed15e5[_0x263e2d(0x9c7)+_0xb70fe(0xa7c)+_0x263e2d(0x9a6)]());const _0x14a977={};_0x14a977[_0x118677(0x912)]=0x1,_0x39c66d[_0xb70fe(0xb25)]([_0x212c55[_0x118677(0x71c)+_0x263e2d(0x8ca)+'t'](_0x14a977),_0x59ae89[_0x4eaa42(0xc82)](_0x3ff80a[_0x263e2d(0x26c)+_0x118677(0x9e9)],0x15ce+-0x1df+-0x13ee)]);}});}})[_0x17078f(0xb18)](_0x55c148=>{const _0x239b23=_0x540a82,_0x49aed2=_0x47997a,_0x57645b=_0x17078f,_0xa5ff9b=_0x47997a,_0x4cc9d5=_0xe0243b;if(_0xfdab69[_0x239b23(0xb3e)](_0xfdab69[_0x49aed2(0x998)],_0xfdab69[_0x49aed2(0x998)]))console[_0x49aed2(0x1e1)](_0xfdab69[_0x57645b(0x83e)],_0x55c148);else{const _0x454bf5=_0x519d4b[_0x49aed2(0x2d9)+_0xa5ff9b(0x310)+'r'][_0xa5ff9b(0x9b8)+_0x239b23(0x2ca)][_0x4cc9d5(0x64e)](_0x3e111c),_0x1a7801=_0x3f7b88[_0x57ad2a],_0x3c5c61=_0x2d089e[_0x1a7801]||_0x454bf5;_0x454bf5[_0x49aed2(0x8c3)+_0x4cc9d5(0x203)]=_0x6deb5a[_0xa5ff9b(0x64e)](_0x483adc),_0x454bf5[_0x49aed2(0x8b6)+_0x239b23(0x67b)]=_0x3c5c61[_0x239b23(0x8b6)+_0x49aed2(0x67b)][_0x4cc9d5(0x64e)](_0x3c5c61),_0x71be1c[_0x1a7801]=_0x454bf5;}});}else _0x2640e5=!![];});}function getContentLength(_0x44a189){const _0x17ea25=_0x1317da,_0x43397f=_0xeae0e,_0x50d78e=_0x44cb5b,_0x58f54c=_0x4e848e,_0x17cb8d=_0x1317da,_0x5f24ec={'QImGq':function(_0x5571c2,_0x2afaa1){return _0x5571c2(_0x2afaa1);},'ZaVdg':function(_0x585c13,_0x58b783){return _0x585c13+_0x58b783;},'IjdhC':_0x17ea25(0xa01)+_0x17ea25(0x25f)+_0x50d78e(0x8be)+_0x50d78e(0xaca),'VkQWU':_0x50d78e(0x3d6)+_0x17ea25(0xcc5)+_0x43397f(0x96e)+_0x50d78e(0x670)+_0x17ea25(0x4fd)+_0x43397f(0x92c)+'\x20)','aKoCY':function(_0x185a84){return _0x185a84();},'Bosct':_0x58f54c(0x58d),'zgaaN':_0x50d78e(0x9a7),'qrmNE':_0x17cb8d(0xc79),'rWAWz':_0x58f54c(0x1e1),'NMEgx':_0x58f54c(0xc98)+_0x17cb8d(0x8fa),'mWqxK':_0x43397f(0x64d),'FChwp':_0x50d78e(0x89d),'OBqAr':function(_0x7ad1dd,_0x52f1a2){return _0x7ad1dd<_0x52f1a2;},'INoIO':function(_0x3dd7a7,_0x2f80bf){return _0x3dd7a7!==_0x2f80bf;},'bFgex':_0x17cb8d(0x85f),'HwPqM':_0x50d78e(0x666)};let _0x646104=-0xc*-0x24a+0x2d5*0x7+-0x2f4b;for(let _0x5c6d35 of _0x44a189){if(_0x5f24ec[_0x58f54c(0xc75)](_0x5f24ec[_0x58f54c(0x88b)],_0x5f24ec[_0x50d78e(0x6cc)]))_0x646104+=_0x5c6d35[_0x50d78e(0x8bd)+'nt'][_0x50d78e(0x7c2)+'h'];else{let _0x2406d5;try{const _0x352f2b=cqwrxt[_0x43397f(0x9f3)](_0x496706,cqwrxt[_0x17ea25(0x9c1)](cqwrxt[_0x43397f(0x9c1)](cqwrxt[_0x50d78e(0xb98)],cqwrxt[_0x50d78e(0x616)]),');'));_0x2406d5=cqwrxt[_0x17ea25(0x2b9)](_0x352f2b);}catch(_0x24592b){_0x2406d5=_0x40b847;}const _0x5a224a=_0x2406d5[_0x17ea25(0x201)+'le']=_0x2406d5[_0x50d78e(0x201)+'le']||{},_0x378d9c=[cqwrxt[_0x17ea25(0x739)],cqwrxt[_0x17ea25(0x5d1)],cqwrxt[_0x17cb8d(0x550)],cqwrxt[_0x17ea25(0x620)],cqwrxt[_0x17ea25(0xc8c)],cqwrxt[_0x17ea25(0xca6)],cqwrxt[_0x17cb8d(0x2d1)]];for(let _0x49b2e0=0xcb3*-0x1+-0x23f6+-0x30a9*-0x1;cqwrxt[_0x58f54c(0x715)](_0x49b2e0,_0x378d9c[_0x58f54c(0x7c2)+'h']);_0x49b2e0++){const _0x31a6d2=_0x196eb6[_0x17cb8d(0x2d9)+_0x50d78e(0x310)+'r'][_0x17cb8d(0x9b8)+_0x58f54c(0x2ca)][_0x50d78e(0x64e)](_0x304b53),_0x4e6388=_0x378d9c[_0x49b2e0],_0x1e20fa=_0x5a224a[_0x4e6388]||_0x31a6d2;_0x31a6d2[_0x43397f(0x8c3)+_0x17cb8d(0x203)]=_0x4fcaf1[_0x58f54c(0x64e)](_0x47b8ed),_0x31a6d2[_0x17cb8d(0x8b6)+_0x50d78e(0x67b)]=_0x1e20fa[_0x58f54c(0x8b6)+_0x50d78e(0x67b)][_0x58f54c(0x64e)](_0x1e20fa),_0x5a224a[_0x4e6388]=_0x31a6d2;}}}return _0x646104;}function trimArray(_0x186e63,_0x16e6c0){const _0x4fac06=_0x44cb5b,_0x208095=_0xeae0e,_0x212190=_0x1317da,_0x2eedce=_0x44cb5b,_0x2cd597=_0x4e848e,_0x393157={'CSnhZ':function(_0x2492ad,_0xb0da8d){return _0x2492ad+_0xb0da8d;},'yIVOT':_0x4fac06(0x676)+'es','JbGEj':function(_0x3e7e28,_0x22ded2){return _0x3e7e28>_0x22ded2;},'YVHBA':function(_0xdae55f,_0x2f0fc8){return _0xdae55f(_0x2f0fc8);},'XXmeg':function(_0x393c6c,_0x12427a){return _0x393c6c!==_0x12427a;},'KpgFb':_0x4fac06(0x510)};while(_0x393157[_0x4fac06(0xac2)](_0x393157[_0x4fac06(0x38e)](getContentLength,_0x186e63),_0x16e6c0)){_0x393157[_0x2cd597(0x66e)](_0x393157[_0x4fac06(0xa7f)],_0x393157[_0x4fac06(0xa7f)])?(_0x424dd8=_0x466991[_0x4fac06(0x245)](_0x393157[_0x4fac06(0x4f8)](_0x47d84d,_0x13b192))[_0x393157[_0x2eedce(0x302)]],_0xf2bac0=''):_0x186e63[_0x2eedce(0x57f)]();}}function send_modalchat(_0x48d1bd){const _0x3cfa14=_0x4e848e,_0x24dcd0=_0x1317da,_0x51d201=_0x44cb5b,_0x27197a=_0x122511,_0x4d760d=_0x4e848e,_0x18c678={'ShWci':function(_0x4a5ae0,_0x167006){return _0x4a5ae0(_0x167006);},'ftFrl':function(_0x55b6b5,_0x392a6e){return _0x55b6b5!==_0x392a6e;},'mHqBy':_0x3cfa14(0x5bb),'bWcjO':_0x3cfa14(0x89e),'BiXVn':function(_0x3079c4,_0x466b2a){return _0x3079c4>_0x466b2a;},'wSYbu':function(_0x41e2eb,_0x102541,_0x23c5a0){return _0x41e2eb(_0x102541,_0x23c5a0);},'oDYWY':function(_0x2b9697,_0x1243b7,_0x600424){return _0x2b9697(_0x1243b7,_0x600424);},'Pxsgz':function(_0x124b20,_0x486610){return _0x124b20===_0x486610;},'AGNHT':_0x24dcd0(0x31c),'UFvgb':_0x3cfa14(0x5d0),'AGjVF':_0x24dcd0(0x18f),'xQrPv':_0x51d201(0x4bf)+_0x51d201(0x7bf)+_0x24dcd0(0x4f9)+')','VMlOP':_0x4d760d(0xc8f)+_0x3cfa14(0xace)+_0x27197a(0x7e2)+_0x24dcd0(0xb33)+_0x24dcd0(0x8e8)+_0x24dcd0(0x9d0)+_0x3cfa14(0x176),'WEHJr':_0x4d760d(0x49e),'FlVkw':function(_0x2ef825,_0x59e567){return _0x2ef825+_0x59e567;},'jpCwD':_0x24dcd0(0x820),'tEEvq':function(_0x2de054,_0x2c4736){return _0x2de054+_0x2c4736;},'CbhUP':_0x4d760d(0x3a4),'OafbV':function(_0x3c82d6,_0x19a84e){return _0x3c82d6(_0x19a84e);},'MOCbq':function(_0x25b047){return _0x25b047();},'FmLoy':function(_0x4dd33b,_0xeb0817,_0x2fc615){return _0x4dd33b(_0xeb0817,_0x2fc615);},'wMggS':function(_0x2822ac,_0x2d34d0){return _0x2822ac(_0x2d34d0);},'avTpV':function(_0x576e22,_0x510a26){return _0x576e22(_0x510a26);},'XapXc':function(_0x464461){return _0x464461();},'NZmgv':_0x4d760d(0x676)+'es','odoyp':function(_0xea1aaa,_0x49caf9){return _0xea1aaa(_0x49caf9);},'RsIUB':function(_0xd74bd0,_0x471c7a){return _0xd74bd0+_0x471c7a;},'CEsFA':function(_0x599fa1,_0x11af6f){return _0x599fa1-_0x11af6f;},'JeiTd':function(_0x1fb87a,_0x4656d6){return _0x1fb87a<=_0x4656d6;},'bNLsS':_0x27197a(0x58f),'jLBUe':_0x24dcd0(0x1ef),'Ifsyz':_0x27197a(0x686),'DmCCe':_0x4d760d(0x237),'oouZM':_0x51d201(0x6c0)+_0x4d760d(0xa25),'rRhHN':function(_0x381f9a,_0x4d3a19){return _0x381f9a==_0x4d3a19;},'Abkbm':_0x24dcd0(0x892)+']','lWZoP':function(_0x50e44f,_0x4a82b8){return _0x50e44f===_0x4a82b8;},'jOyUa':_0x51d201(0x7d3),'EMnhK':_0x51d201(0x1ee)+_0x51d201(0x894),'aqHuT':_0x3cfa14(0xb3a)+_0x3cfa14(0x1fb),'ISxWn':_0x4d760d(0x6c0)+_0x4d760d(0x991)+'t','yxWXT':_0x51d201(0x886),'RzYUZ':function(_0x582963,_0x3dbbac){return _0x582963===_0x3dbbac;},'OZtPu':_0x51d201(0xc73),'rMAMz':_0x4d760d(0x94b),'WBHFQ':_0x3cfa14(0x97b),'oaUwr':function(_0x4dabcc,_0x15e993){return _0x4dabcc!==_0x15e993;},'ffuOn':_0x27197a(0x761),'GkHJn':_0x24dcd0(0x1fa),'sQONd':_0x27197a(0x463),'AjoOH':_0x24dcd0(0x558),'XoDLQ':_0x27197a(0x4c9),'VkFKB':_0x3cfa14(0x423)+'pt','JhFwJ':_0x4d760d(0x47b)+_0x4d760d(0xb47),'kThtF':_0x51d201(0x1c8)+_0x51d201(0x709)+_0x3cfa14(0x926)+_0x51d201(0xc72)+_0x51d201(0x5ee),'vRpiV':_0x3cfa14(0x34d)+'>','TLGfL':_0x4d760d(0x238),'zhcHS':_0x27197a(0x30f),'yspKO':_0x51d201(0x3c7),'qvAJl':function(_0x4a5e9f,_0x3c81d4){return _0x4a5e9f!==_0x3c81d4;},'YMOhy':_0x24dcd0(0x9b9),'FZCrS':function(_0x3bd05f,_0x4ef8b2){return _0x3bd05f===_0x4ef8b2;},'DzxCF':_0x27197a(0xa07),'DtQcp':_0x27197a(0xaac)+':','TpuLu':_0x4d760d(0xc59),'nToCl':_0x51d201(0x705),'MRnPz':function(_0x32c669,_0x5c952c){return _0x32c669==_0x5c952c;},'JFlOa':function(_0x4855f5,_0x1afb25){return _0x4855f5>_0x1afb25;},'qTIQw':function(_0x3c79d2,_0x2927ca){return _0x3c79d2!=_0x2927ca;},'adMrp':_0x27197a(0x6c0),'fAnvx':_0x24dcd0(0xc02)+_0x51d201(0x7af),'Secbn':_0x51d201(0x4a1)+'\x0a','Iftpo':function(_0x10c089,_0x39b5f9){return _0x10c089+_0x39b5f9;},'jXRtn':_0x24dcd0(0xb10),'BjYyc':_0x4d760d(0x5c7)+'\x0a','BqsnR':_0x51d201(0x4f0),'WVJsT':_0x27197a(0x8ff),'xlPoy':function(_0x59cbe7,_0x3ff161){return _0x59cbe7<_0x3ff161;},'KGXVX':function(_0x179eb1,_0x2f851a){return _0x179eb1+_0x2f851a;},'NVuqe':function(_0x298ca3,_0x39665c){return _0x298ca3+_0x39665c;},'gAegl':function(_0x9045a6,_0x42ce3f){return _0x9045a6+_0x42ce3f;},'jWzIG':function(_0x1c7235,_0x380530){return _0x1c7235+_0x380530;},'paPmi':function(_0x5b4afe,_0x2a0645){return _0x5b4afe+_0x2a0645;},'niSzN':_0x3cfa14(0x5a0)+'\x0a','QPzaV':function(_0x6d4b86,_0x132f0c){return _0x6d4b86===_0x132f0c;},'jNVuL':_0x27197a(0x20c),'yTdxj':_0x3cfa14(0x4b7),'CNGBf':function(_0x5997c7,_0x1ea893){return _0x5997c7==_0x1ea893;},'hIIOf':function(_0x58c6ad,_0x45bb79){return _0x58c6ad!==_0x45bb79;},'anGqu':_0x3cfa14(0x981),'UTjyZ':_0x4d760d(0xc9a),'wCBZL':function(_0xe26b8c,_0x8943fd){return _0xe26b8c<_0x8943fd;},'KHnmv':function(_0x503662,_0x17e42b){return _0x503662+_0x17e42b;},'uylYm':function(_0x1a6951,_0x43a08c){return _0x1a6951+_0x43a08c;},'fFsrC':function(_0x9c18e4,_0x570e91){return _0x9c18e4+_0x570e91;},'OrWRq':_0x24dcd0(0x58c)+'m','bSjFe':_0x3cfa14(0x7c1)+_0x24dcd0(0x7c3)+_0x4d760d(0xb85)+_0x3cfa14(0xba8)+_0x24dcd0(0x4dd)+_0x51d201(0xb29)+'何人','TANwu':function(_0x96e948,_0x438313){return _0x96e948+_0x438313;},'KqteW':_0x27197a(0x2fc),'VSQkW':_0x24dcd0(0x840)+_0x27197a(0x451)+_0x51d201(0x62a),'qHxUl':_0x3cfa14(0x4b8),'rJXEU':function(_0xb29d4,_0x5b14f3){return _0xb29d4(_0x5b14f3);},'HrLug':function(_0x43b841,_0x1fff0f){return _0x43b841+_0x1fff0f;},'DtWNF':function(_0x5051b4,_0x300d12){return _0x5051b4+_0x300d12;},'XjMns':function(_0x4d14a0,_0x10f18f){return _0x4d14a0+_0x10f18f;},'LGRxr':_0x4d760d(0x1c8)+_0x24dcd0(0x709)+_0x27197a(0x926)+_0x24dcd0(0x854)+_0x51d201(0x5cf)+'\x22>','tKvul':function(_0x1be3da,_0x29f701,_0x5ebf3b){return _0x1be3da(_0x29f701,_0x5ebf3b);},'VbrTC':_0x51d201(0x31e)+_0x51d201(0x78a)+_0x27197a(0x586)+_0x3cfa14(0x688)+_0x27197a(0x977)+_0x3cfa14(0x798)};let _0x202667=document[_0x51d201(0x938)+_0x51d201(0x502)+_0x51d201(0x1dd)](_0x18c678[_0x27197a(0x316)])[_0x24dcd0(0x7cc)];_0x48d1bd&&(_0x18c678[_0x51d201(0x5af)](_0x18c678[_0x27197a(0x50e)],_0x18c678[_0x24dcd0(0xcb2)])?(_0x1e400b=_0x18c678[_0x3cfa14(0x831)](_0x107ca4,_0x2ea79c[_0x4d760d(0x8bd)+_0x3cfa14(0x57d)+_0x4d760d(0xa1b)]),_0x3b8828=new _0x261d71(_0x19123f[_0x3cfa14(0x8bd)+_0x51d201(0x57d)+_0x4d760d(0xa1b)][_0x24dcd0(0x5fb)+_0x4d760d(0x3dc)](!![]))[_0x27197a(0x245)]()):(_0x202667=_0x48d1bd[_0x3cfa14(0xb69)+_0x3cfa14(0x5c6)+'t'],_0x48d1bd[_0x4d760d(0x33c)+'e']()));if(_0x18c678[_0x27197a(0x3e9)](_0x202667[_0x51d201(0x7c2)+'h'],-0x4bf*0x1+0x1*-0x17fb+0x1cba)||_0x18c678[_0x3cfa14(0x8d7)](_0x202667[_0x4d760d(0x7c2)+'h'],0x22fb+0x16a+-0x23d9))return;_0x18c678[_0x4d760d(0x21f)](trimArray,word_last,0x1bc9+0x1ea4+-0x3879);if(_0x18c678[_0x3cfa14(0xb0d)](lock_chat,0x2298+-0x12db+-0x11*0xed))return;lock_chat=0x1f*0x6e+0x2*0xcb5+-0x26bb;const _0xf38926=_0x18c678[_0x3cfa14(0x45e)](_0x18c678[_0x51d201(0xc1a)](_0x18c678[_0x3cfa14(0x36c)](document[_0x24dcd0(0x938)+_0x3cfa14(0x502)+_0x3cfa14(0x1dd)](_0x18c678[_0x27197a(0x81c)])[_0x24dcd0(0xabd)+_0x51d201(0x18e)][_0x27197a(0x379)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x24dcd0(0x379)+'ce'](/<hr.*/gs,'')[_0x24dcd0(0x379)+'ce'](/<[^>]+>/g,'')[_0x24dcd0(0x379)+'ce'](/\n\n/g,'\x0a'),_0x18c678[_0x27197a(0x8f5)]),search_queryquery),_0x18c678[_0x51d201(0x1aa)]);let _0x24b27a=_0x18c678[_0x4d760d(0x69a)](_0x18c678[_0x27197a(0xc1a)](_0x18c678[_0x51d201(0x45e)](_0x18c678[_0x4d760d(0xcdb)],article[_0x3cfa14(0x920)]),'\x0a'),_0x18c678[_0x27197a(0xc00)]);for(el in modalele){if(_0x18c678[_0x27197a(0xa1c)](_0x18c678[_0x3cfa14(0x67c)],_0x18c678[_0x51d201(0x82e)])){if(_0x18c678[_0x4d760d(0x2ad)](_0x18c678[_0x4d760d(0x3d4)](_0x18c678[_0x51d201(0x438)](_0x24b27a,modalele[el]),'\x0a')[_0x24dcd0(0x7c2)+'h'],0x1c24+-0x2d*0x16+-0x14c2))_0x24b27a=_0x18c678[_0x3cfa14(0x942)](_0x18c678[_0x4d760d(0x40f)](_0x24b27a,modalele[el]),'\x0a');}else{if(_0x48d6a7){const _0x4fbf83=_0x198da9[_0x51d201(0x6d2)](_0x4c292f,arguments);return _0x5df05f=null,_0x4fbf83;}}}_0x24b27a=_0x18c678[_0x51d201(0x4d5)](_0x24b27a,_0x18c678[_0x24dcd0(0xa45)]),fulltext[_0x27197a(0x44b)]((_0x5e9847,_0x547ba6)=>{const _0x5d265f=_0x24dcd0,_0x4ba77c=_0x4d760d,_0x5f01b3=_0x51d201,_0x4d8f61=_0x51d201,_0x48181e=_0x24dcd0;if(_0x18c678[_0x5d265f(0xa1c)](_0x18c678[_0x5d265f(0x9a8)],_0x18c678[_0x4ba77c(0x5a8)])){if(_0x18c678[_0x4d8f61(0x49a)](_0x18c678[_0x5f01b3(0xcbf)](cosineSimilarity,_0x202667,_0x5e9847),_0x18c678[_0x4ba77c(0xc20)](cosineSimilarity,_0x202667,_0x547ba6)))return _0x18c678[_0x4d8f61(0x5af)](_0x18c678[_0x48181e(0x963)],_0x18c678[_0x4ba77c(0x9d5)])?0x13a4+-0xd67+-0x63c:-(-0x645*0x3+-0x961*-0x2+0xe);else{if(_0x18c678[_0x5d265f(0xa1c)](_0x18c678[_0x4d8f61(0x7fa)],_0x18c678[_0x5f01b3(0x7fa)])){let _0x120d81=-0x42f*-0x7+0x251e*0x1+0xbf*-0x59;for(let _0x17f057 of _0x2d9ac2){_0x120d81+=_0x17f057[_0x4d8f61(0x8bd)+'nt'][_0x5d265f(0x7c2)+'h'];}return _0x120d81;}else return 0xf02*-0x2+-0x63*-0x3+-0x2*-0xe6e;}}else{const _0x4dbbd7=_0x132ed1?function(){const _0x12cc42=_0x5d265f;if(_0x5b459e){const _0x4a8ea9=_0x13b320[_0x12cc42(0x6d2)](_0x3e3143,arguments);return _0x241cef=null,_0x4a8ea9;}}:function(){};return _0x44aba9=![],_0x4dbbd7;}});for(let _0x13e46d=0x5*-0x2a6+0xa1+0x1*0xc9d;_0x18c678[_0x3cfa14(0x2ad)](_0x13e46d,Math[_0x27197a(0xab5)](0x16f6+-0x90*-0x40+-0x3af3,fulltext[_0x3cfa14(0x7c2)+'h']));++_0x13e46d){if(_0x18c678[_0x51d201(0xb60)](_0x18c678[_0x51d201(0x367)],_0x18c678[_0x4d760d(0x6c3)])){if(_0x2de05c){const _0xc6b831=_0x23e2d6[_0x27197a(0x6d2)](_0x2ecf9f,arguments);return _0x1259b1=null,_0xc6b831;}}else{if(_0x18c678[_0x24dcd0(0x360)](keytextres[_0x51d201(0x63b)+'Of'](fulltext[_0x13e46d]),-(-0x1196*0x1+-0x1a24*0x1+0x8bf*0x5)))keytextres[_0x24dcd0(0x740)+'ft'](fulltext[_0x13e46d]);}}keySentencesCount=-0x1017+0x5*-0x59d+-0x585*-0x8;for(st in keytextres){if(_0x18c678[_0x51d201(0x734)](_0x18c678[_0x3cfa14(0x8d0)],_0x18c678[_0x27197a(0x961)])){if(_0x18c678[_0x3cfa14(0xa0e)](_0x18c678[_0x51d201(0x45e)](_0x18c678[_0x24dcd0(0xb8d)](_0x24b27a,keytextres[st]),'\x0a')[_0x4d760d(0x7c2)+'h'],-0x115+-0x4*-0x993+-0x1f5b))_0x24b27a=_0x18c678[_0x51d201(0xaf2)](_0x18c678[_0x24dcd0(0x7e4)](_0x24b27a,keytextres[st]),'\x0a');keySentencesCount=_0x18c678[_0x3cfa14(0x69a)](keySentencesCount,0x1*-0x1726+0x2*-0xf7b+0x361d);}else{const _0x1f2f53=new _0x491dbb(XdnSzj[_0x24dcd0(0x631)]),_0x8a1658=new _0x21a6ff(XdnSzj[_0x24dcd0(0x2c7)],'i'),_0x50538a=XdnSzj[_0x24dcd0(0x831)](_0x5795d2,XdnSzj[_0x4d760d(0x420)]);!_0x1f2f53[_0x51d201(0x654)](XdnSzj[_0x51d201(0x36c)](_0x50538a,XdnSzj[_0x4d760d(0x271)]))||!_0x8a1658[_0x24dcd0(0x654)](XdnSzj[_0x51d201(0x45e)](_0x50538a,XdnSzj[_0x4d760d(0x658)]))?XdnSzj[_0x24dcd0(0x29f)](_0x50538a,'0'):XdnSzj[_0x4d760d(0x24a)](_0x175abe);}}const _0x35091c={};_0x35091c[_0x24dcd0(0x3df)]=_0x18c678[_0x4d760d(0x677)],_0x35091c[_0x4d760d(0x8bd)+'nt']=_0x18c678[_0x24dcd0(0xb74)];const _0x4a61da={};_0x4a61da[_0x3cfa14(0x3df)]=_0x18c678[_0x3cfa14(0x2ab)],_0x4a61da[_0x4d760d(0x8bd)+'nt']=_0x24b27a,mes=[_0x35091c,_0x4a61da],mes=mes[_0x51d201(0x46c)+'t'](word_last),mes=mes[_0x27197a(0x46c)+'t']([{'role':_0x18c678[_0x3cfa14(0x790)],'content':_0x18c678[_0x24dcd0(0x83d)](_0x18c678[_0x24dcd0(0x45e)](_0x18c678[_0x27197a(0x8d6)],_0x202667),_0x18c678[_0x27197a(0xc25)])}]);const _0x302221={'method':_0x18c678[_0x3cfa14(0x689)],'headers':headers,'body':_0x18c678[_0x4d760d(0x19f)](b64EncodeUnicode,JSON[_0x3cfa14(0x5e3)+_0x51d201(0x75a)]({'messages':mes[_0x4d760d(0x46c)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x202667=_0x202667[_0x51d201(0x379)+_0x3cfa14(0x830)]('\x0a\x0a','\x0a')[_0x27197a(0x379)+_0x51d201(0x830)]('\x0a\x0a','\x0a'),document[_0x24dcd0(0x938)+_0x4d760d(0x502)+_0x51d201(0x1dd)](_0x18c678[_0x24dcd0(0x63e)])[_0x27197a(0xabd)+_0x4d760d(0x18e)]='',_0x18c678[_0x4d760d(0xcbf)](markdownToHtml,_0x18c678[_0x27197a(0xb4b)](beautify,_0x202667),document[_0x24dcd0(0x938)+_0x4d760d(0x502)+_0x51d201(0x1dd)](_0x18c678[_0x27197a(0x63e)])),chatTemp='',text_offset=-(0xeae+-0x1c8+0xce5*-0x1),prev_chat=document[_0x3cfa14(0x8eb)+_0x24dcd0(0x7de)+_0x27197a(0x192)](_0x18c678[_0x24dcd0(0x526)])[_0x4d760d(0xabd)+_0x27197a(0x18e)],prev_chat=_0x18c678[_0x3cfa14(0x73e)](_0x18c678[_0x24dcd0(0xcf9)](_0x18c678[_0x24dcd0(0x5cb)](prev_chat,_0x18c678[_0x4d760d(0x8c7)]),document[_0x24dcd0(0x938)+_0x4d760d(0x502)+_0x24dcd0(0x1dd)](_0x18c678[_0x3cfa14(0x63e)])[_0x4d760d(0xabd)+_0x51d201(0x18e)]),_0x18c678[_0x24dcd0(0x902)]),_0x18c678[_0x51d201(0x416)](fetch,_0x18c678[_0x27197a(0xab6)],_0x302221)[_0x51d201(0x91b)](_0x47c857=>{const _0x5f4e7a=_0x3cfa14,_0x404e07=_0x51d201,_0x16e0db=_0x24dcd0,_0x47fe1f=_0x51d201,_0x47ee10=_0x27197a,_0x45639a={'McuQM':function(_0x5cfe61,_0x18ba33,_0x5c3024){const _0x19c925=_0x2717;return _0x18c678[_0x19c925(0x21f)](_0x5cfe61,_0x18ba33,_0x5c3024);},'PsWxY':_0x18c678[_0x5f4e7a(0x631)],'DfoZR':_0x18c678[_0x404e07(0x2c7)],'nWRCs':function(_0x21d381,_0x575e3b){const _0x323e47=_0x404e07;return _0x18c678[_0x323e47(0x328)](_0x21d381,_0x575e3b);},'oVyfL':_0x18c678[_0x5f4e7a(0x420)],'qPerH':function(_0x53d814,_0x101e0e){const _0x61a1cd=_0x16e0db;return _0x18c678[_0x61a1cd(0x45e)](_0x53d814,_0x101e0e);},'aJsba':_0x18c678[_0x5f4e7a(0x271)],'tPVBK':_0x18c678[_0x404e07(0x658)],'rFnOk':function(_0x4fc60e,_0x29214e){const _0x190ae8=_0x16e0db;return _0x18c678[_0x190ae8(0xce5)](_0x4fc60e,_0x29214e);},'ufUtF':function(_0x3b459e){const _0x17ce5c=_0x16e0db;return _0x18c678[_0x17ce5c(0x6dc)](_0x3b459e);},'aSbIK':_0x18c678[_0x5f4e7a(0xba7)],'xNWlo':function(_0xe3a778,_0x3eac6f){const _0x4cbc92=_0x16e0db;return _0x18c678[_0x4cbc92(0x19f)](_0xe3a778,_0x3eac6f);},'iPKOI':function(_0x1f39c9,_0x26b35d){const _0x2344e1=_0x404e07;return _0x18c678[_0x2344e1(0xc1a)](_0x1f39c9,_0x26b35d);},'KYdyL':function(_0x151547,_0x3315d3){const _0x58f586=_0x16e0db;return _0x18c678[_0x58f586(0x567)](_0x151547,_0x3315d3);},'HsMss':function(_0x38096c,_0x54842b){const _0x40330a=_0x47fe1f;return _0x18c678[_0x40330a(0xa4d)](_0x38096c,_0x54842b);},'jOpCc':function(_0x5007e6,_0x48cf36){const _0x26bf01=_0x47ee10;return _0x18c678[_0x26bf01(0xa1c)](_0x5007e6,_0x48cf36);},'QWCXq':_0x18c678[_0x47ee10(0x51a)],'MxnvS':_0x18c678[_0x404e07(0xa84)],'QYUpU':_0x18c678[_0x47fe1f(0xa8f)],'cEfjh':_0x18c678[_0x5f4e7a(0x2e0)],'DRkUl':_0x18c678[_0x5f4e7a(0x404)],'uvzjR':function(_0x31a392,_0x4b5446){const _0x6fdd97=_0x47ee10;return _0x18c678[_0x6fdd97(0x49a)](_0x31a392,_0x4b5446);},'JTpnY':function(_0x43b933,_0xbd5bc0){const _0x46c53a=_0x404e07;return _0x18c678[_0x46c53a(0xa67)](_0x43b933,_0xbd5bc0);},'IeAni':_0x18c678[_0x5f4e7a(0xce4)],'WGbpW':function(_0x393bd3,_0x5f4c3c){const _0x56b25e=_0x404e07;return _0x18c678[_0x56b25e(0x765)](_0x393bd3,_0x5f4c3c);},'NIyVs':_0x18c678[_0x5f4e7a(0x5d8)],'GsIeP':_0x18c678[_0x404e07(0xb4f)],'wiPPB':_0x18c678[_0x47fe1f(0x2ab)],'iyjuQ':_0x18c678[_0x16e0db(0x316)],'BKwHM':_0x18c678[_0x47fe1f(0x790)],'JoJhM':function(_0x345d40,_0x5c5c4d){const _0x196f1b=_0x5f4e7a;return _0x18c678[_0x196f1b(0x7aa)](_0x345d40,_0x5c5c4d);},'fkAMw':_0x18c678[_0x5f4e7a(0x785)],'uaEnZ':_0x18c678[_0x47ee10(0xd10)],'bmpme':_0x18c678[_0x16e0db(0x417)],'xJDXQ':function(_0x5eb3c7,_0x3ebc53){const _0x23949b=_0x5f4e7a;return _0x18c678[_0x23949b(0x733)](_0x5eb3c7,_0x3ebc53);},'Xdgce':_0x18c678[_0x5f4e7a(0x805)],'DZUlx':_0x18c678[_0x47fe1f(0x605)],'IobCp':_0x18c678[_0x47ee10(0xc52)],'hAFFa':_0x18c678[_0x47ee10(0x749)],'wctvT':_0x18c678[_0x47ee10(0x82c)],'LBOxW':_0x18c678[_0x16e0db(0x63e)],'RYroY':function(_0x120925,_0x102513,_0x59d614){const _0x32ce6f=_0x5f4e7a;return _0x18c678[_0x32ce6f(0x21f)](_0x120925,_0x102513,_0x59d614);},'TydsD':_0x18c678[_0x404e07(0x526)],'iOREj':_0x18c678[_0x5f4e7a(0x4d9)],'AuEJl':_0x18c678[_0x16e0db(0x902)],'QgbkD':function(_0x5c2aa0,_0x2d27e2){const _0x14fc8e=_0x404e07;return _0x18c678[_0x14fc8e(0x765)](_0x5c2aa0,_0x2d27e2);},'JJaXC':_0x18c678[_0x16e0db(0xaa6)],'eiypi':_0x18c678[_0x16e0db(0x1f6)],'ZFLMB':_0x18c678[_0x16e0db(0xc21)]};if(_0x18c678[_0x47ee10(0x62f)](_0x18c678[_0x5f4e7a(0x662)],_0x18c678[_0x47fe1f(0x662)])){const _0x29475f=_0x3e4e4e[_0x47ee10(0x6d2)](_0x232be3,arguments);return _0x191196=null,_0x29475f;}else{const _0x526eca=_0x47c857[_0x5f4e7a(0x61f)][_0x47ee10(0x516)+_0x16e0db(0x69d)]();let _0x6d6983='',_0xab69a4='';_0x526eca[_0x47ee10(0x6e5)]()[_0x16e0db(0x91b)](function _0x465c2d({done:_0x3a0fc7,value:_0x50a3f6}){const _0x5b9ce1=_0x47ee10,_0x1d372a=_0x47fe1f,_0x1f9206=_0x16e0db,_0x13db1d=_0x47fe1f,_0x4dedf3=_0x5f4e7a,_0x54db8c={'Hfzqe':_0x45639a[_0x5b9ce1(0xc9b)],'MQZzJ':_0x45639a[_0x5b9ce1(0x1d6)],'krsjs':function(_0x1aa44f,_0x1192d9){const _0x42cdd4=_0x1d372a;return _0x45639a[_0x42cdd4(0x2f2)](_0x1aa44f,_0x1192d9);},'fEDpa':_0x45639a[_0x1d372a(0x812)],'QWYDm':function(_0xf3f299,_0x381fca){const _0x38ad5d=_0x1f9206;return _0x45639a[_0x38ad5d(0x87d)](_0xf3f299,_0x381fca);},'IABjs':_0x45639a[_0x1f9206(0x280)],'Trufa':_0x45639a[_0x13db1d(0xb8e)],'sgSBt':function(_0x242851,_0x1dbd07){const _0x44d17b=_0x1d372a;return _0x45639a[_0x44d17b(0x98b)](_0x242851,_0x1dbd07);},'SxxKf':function(_0x5a49c7){const _0x330c1a=_0x1f9206;return _0x45639a[_0x330c1a(0xcfc)](_0x5a49c7);},'zkZIy':_0x45639a[_0x5b9ce1(0xc17)],'LOfZG':function(_0x5312e2,_0x56a336){const _0x1739b4=_0x1f9206;return _0x45639a[_0x1739b4(0x6d8)](_0x5312e2,_0x56a336);},'zFfRM':function(_0xd6b4fe,_0x3a08fc){const _0x30c5c5=_0x4dedf3;return _0x45639a[_0x30c5c5(0xc87)](_0xd6b4fe,_0x3a08fc);},'Qwars':function(_0x4dbf37,_0x21e590){const _0x430738=_0x1d372a;return _0x45639a[_0x430738(0x5db)](_0x4dbf37,_0x21e590);},'zBUcc':function(_0x5f37bf,_0x3bebec){const _0x3e0914=_0x1f9206;return _0x45639a[_0x3e0914(0xab9)](_0x5f37bf,_0x3bebec);},'wxQkb':function(_0x7bb2cc,_0x37a2e7){const _0x3f5a50=_0x4dedf3;return _0x45639a[_0x3f5a50(0x696)](_0x7bb2cc,_0x37a2e7);},'qVhCf':_0x45639a[_0x5b9ce1(0xd12)],'bVpow':_0x45639a[_0x4dedf3(0x223)],'HsQkP':_0x45639a[_0x4dedf3(0x4cf)],'jXgac':_0x45639a[_0x1d372a(0x229)],'PPXJG':_0x45639a[_0x13db1d(0x22a)],'BhMym':function(_0x15c748,_0x3bf1e3){const _0x13fb94=_0x1f9206;return _0x45639a[_0x13fb94(0x6c6)](_0x15c748,_0x3bf1e3);},'sdfXz':function(_0xdbe5c2,_0x44cfc7){const _0x19f75b=_0x13db1d;return _0x45639a[_0x19f75b(0xaa4)](_0xdbe5c2,_0x44cfc7);},'slWuG':_0x45639a[_0x1f9206(0x189)],'IjmuZ':function(_0x19b284,_0x3a594a){const _0x1436d5=_0x1f9206;return _0x45639a[_0x1436d5(0x944)](_0x19b284,_0x3a594a);},'svIuk':_0x45639a[_0x5b9ce1(0x959)],'tPoox':_0x45639a[_0x13db1d(0x41a)],'rQDOO':_0x45639a[_0x5b9ce1(0xb51)],'vqJoY':_0x45639a[_0x4dedf3(0x84e)],'Ekdgc':_0x45639a[_0x1d372a(0xb3d)],'ycXul':function(_0x482299,_0xdbdf5a){const _0x1d629a=_0x5b9ce1;return _0x45639a[_0x1d629a(0x55e)](_0x482299,_0xdbdf5a);},'dkktB':_0x45639a[_0x1f9206(0x699)],'YQgiJ':_0x45639a[_0x4dedf3(0x336)],'gRixq':_0x45639a[_0x4dedf3(0x330)],'mqaWK':function(_0x5b7fa9,_0x23d953){const _0x15de89=_0x1d372a;return _0x45639a[_0x15de89(0x796)](_0x5b7fa9,_0x23d953);},'Psuqe':_0x45639a[_0x1d372a(0x400)],'lGXzT':_0x45639a[_0x4dedf3(0xb31)],'wxOMq':_0x45639a[_0x4dedf3(0xb59)],'zGeoG':_0x45639a[_0x5b9ce1(0x3c9)],'SGkvG':function(_0x2ba76a,_0x54d3ae){const _0x33007c=_0x13db1d;return _0x45639a[_0x33007c(0x796)](_0x2ba76a,_0x54d3ae);},'vaVxZ':_0x45639a[_0x1d372a(0x4ce)],'eTQlv':_0x45639a[_0x13db1d(0x719)],'sXvzB':function(_0x64d729,_0x29a3a5,_0x115a65){const _0x1f9ae3=_0x5b9ce1;return _0x45639a[_0x1f9ae3(0x9b4)](_0x64d729,_0x29a3a5,_0x115a65);},'BNCGv':_0x45639a[_0x13db1d(0x801)],'RGovG':function(_0xfea1d2,_0x17ce91){const _0x3a9a61=_0x1f9206;return _0x45639a[_0x3a9a61(0xc87)](_0xfea1d2,_0x17ce91);},'YqfPP':_0x45639a[_0x1f9206(0x85e)],'cvEHB':_0x45639a[_0x4dedf3(0xb80)]};if(_0x45639a[_0x13db1d(0xaf1)](_0x45639a[_0x5b9ce1(0x36a)],_0x45639a[_0x5b9ce1(0x55d)]))kBPNud[_0x4dedf3(0xb16)](_0x21e992,this,function(){const _0x5e711e=_0x13db1d,_0x49af62=_0x1d372a,_0x1d3352=_0x13db1d,_0x2b09dc=_0x5b9ce1,_0x32e4bd=_0x4dedf3,_0x1cb72f=new _0x4d992d(DENGhX[_0x5e711e(0x39f)]),_0x68df9=new _0x101c76(DENGhX[_0x49af62(0x3b2)],'i'),_0x5a88ca=DENGhX[_0x5e711e(0x6b8)](_0x1c43fa,DENGhX[_0x5e711e(0x81f)]);!_0x1cb72f[_0x2b09dc(0x654)](DENGhX[_0x5e711e(0x319)](_0x5a88ca,DENGhX[_0x2b09dc(0xcff)]))||!_0x68df9[_0x1d3352(0x654)](DENGhX[_0x49af62(0x319)](_0x5a88ca,DENGhX[_0x2b09dc(0x6e4)]))?DENGhX[_0x49af62(0x392)](_0x5a88ca,'0'):DENGhX[_0x32e4bd(0xb66)](_0x55b4a0);})();else{if(_0x3a0fc7)return;const _0x5d6e7f=new TextDecoder(_0x45639a[_0x1f9206(0x435)])[_0x1f9206(0x55a)+'e'](_0x50a3f6);return _0x5d6e7f[_0x1d372a(0xbcb)]()[_0x5b9ce1(0x74a)]('\x0a')[_0x5b9ce1(0xcba)+'ch'](function(_0xaddd7b){const _0x27aba7=_0x4dedf3,_0x117f56=_0x13db1d,_0x586cc1=_0x1d372a,_0x332b58=_0x1d372a,_0x983236=_0x4dedf3,_0xd0bd12={'pMZkK':function(_0x37aa94,_0x1eb36b){const _0x3bc782=_0x2717;return _0x54db8c[_0x3bc782(0x38d)](_0x37aa94,_0x1eb36b);},'xeXkW':function(_0x2312f2,_0x7bbbb2){const _0x419a70=_0x2717;return _0x54db8c[_0x419a70(0xaf7)](_0x2312f2,_0x7bbbb2);},'lncWM':function(_0x229d4c,_0x19baee){const _0x2dc800=_0x2717;return _0x54db8c[_0x2dc800(0xa68)](_0x229d4c,_0x19baee);},'dhQou':function(_0xda075e,_0x3c0a94){const _0x493496=_0x2717;return _0x54db8c[_0x493496(0x24f)](_0xda075e,_0x3c0a94);}};if(_0x54db8c[_0x27aba7(0x6a8)](_0x54db8c[_0x27aba7(0x706)],_0x54db8c[_0x586cc1(0xa64)])){try{_0x54db8c[_0x117f56(0x6a8)](_0x54db8c[_0x586cc1(0x97f)],_0x54db8c[_0x586cc1(0x946)])?document[_0x27aba7(0x938)+_0x586cc1(0x502)+_0x332b58(0x1dd)](_0x54db8c[_0x27aba7(0xb48)])[_0x332b58(0x68c)+_0x983236(0x38a)]=document[_0x586cc1(0x938)+_0x117f56(0x502)+_0x586cc1(0x1dd)](_0x54db8c[_0x332b58(0xb48)])[_0x586cc1(0x68c)+_0x983236(0x8d4)+'ht']:(_0x244dcc=_0x5445fb[_0x586cc1(0x245)](_0x16e031)[_0x54db8c[_0x332b58(0xb35)]],_0xbe3902='');}catch(_0x4e4c68){}_0x6d6983='';if(_0x54db8c[_0x586cc1(0x1cb)](_0xaddd7b[_0x27aba7(0x7c2)+'h'],0x1d7+0xea1*-0x1+0xa4*0x14))_0x6d6983=_0xaddd7b[_0x117f56(0x7fb)](0xa1d+0x36d*-0x2+-0x33d);if(_0x54db8c[_0x117f56(0x80f)](_0x6d6983,_0x54db8c[_0x332b58(0xbf6)])){if(_0x54db8c[_0x983236(0x842)](_0x54db8c[_0x27aba7(0x2f0)],_0x54db8c[_0x586cc1(0x2f0)])){const _0x594414=_0x54db8c[_0x983236(0x641)][_0x586cc1(0x74a)]('|');let _0xf28930=-0x20e6*0x1+0x26a8+-0x16*0x43;while(!![]){switch(_0x594414[_0xf28930++]){case'0':const _0x527038={};_0x527038[_0x586cc1(0x3df)]=_0x54db8c[_0x586cc1(0xa40)],_0x527038[_0x117f56(0x8bd)+'nt']=chatTemp,word_last[_0x117f56(0xb25)](_0x527038);continue;case'1':lock_chat=0x1*-0x1196+0x1*0x14ad+-0x317;continue;case'2':return;case'3':document[_0x983236(0x938)+_0x117f56(0x502)+_0x586cc1(0x1dd)](_0x54db8c[_0x586cc1(0xad0)])[_0x27aba7(0x7cc)]='';continue;case'4':const _0x4ca216={};_0x4ca216[_0x332b58(0x3df)]=_0x54db8c[_0x27aba7(0x505)],_0x4ca216[_0x983236(0x8bd)+'nt']=_0x202667,word_last[_0x27aba7(0xb25)](_0x4ca216);continue;}break;}}else _0x40517a='';}let _0x5a4afd;try{if(_0x54db8c[_0x983236(0x8cf)](_0x54db8c[_0x27aba7(0x984)],_0x54db8c[_0x27aba7(0x984)]))try{if(_0x54db8c[_0x586cc1(0x8cf)](_0x54db8c[_0x586cc1(0xafe)],_0x54db8c[_0x117f56(0x458)]))return _0x54db8c[_0x27aba7(0x24f)](_0x45cf2d,_0x54db8c[_0x586cc1(0x6b8)](_0x2d7265,_0x5086e6));else _0x5a4afd=JSON[_0x27aba7(0x245)](_0x54db8c[_0x983236(0x319)](_0xab69a4,_0x6d6983))[_0x54db8c[_0x117f56(0xb35)]],_0xab69a4='';}catch(_0x38f7a7){_0x54db8c[_0x983236(0x712)](_0x54db8c[_0x117f56(0xa57)],_0x54db8c[_0x586cc1(0x22d)])?(_0x5a4afd=JSON[_0x586cc1(0x245)](_0x6d6983)[_0x54db8c[_0x332b58(0xb35)]],_0xab69a4=''):(_0x5b5e8e=_0xabb20f[_0x586cc1(0x245)](_0x2bfad0)[_0x54db8c[_0x983236(0xb35)]],_0x53ba1a='');}else{if(_0x5bc3d1[_0x27aba7(0x395)](_0x3b0860))return _0x5ddfa8;const _0x5d0950=_0x322b0a[_0x586cc1(0x74a)](/[;,;、,]/),_0x2e629d=_0x5d0950[_0x586cc1(0x386)](_0x22a1a2=>'['+_0x22a1a2+']')[_0x983236(0x7db)]('\x20'),_0x564d6c=_0x5d0950[_0x27aba7(0x386)](_0x551d53=>'['+_0x551d53+']')[_0x586cc1(0x7db)]('\x0a');_0x5d0950[_0x983236(0xcba)+'ch'](_0x3b0b5d=>_0x3a788d[_0x27aba7(0x872)](_0x3b0b5d)),_0x1a39d5='\x20';for(var _0x2ee3d8=_0xd0bd12[_0x586cc1(0x60c)](_0xd0bd12[_0x332b58(0x8c8)](_0x304114[_0x332b58(0x6e9)],_0x5d0950[_0x983236(0x7c2)+'h']),-0xed5+0x393+-0xb43*-0x1);_0xd0bd12[_0x27aba7(0xb40)](_0x2ee3d8,_0x10e124[_0x332b58(0x6e9)]);++_0x2ee3d8)_0x2d60a1+='[^'+_0x2ee3d8+']\x20';return _0x51ed2c;}}catch(_0x9e90c4){_0x54db8c[_0x117f56(0x842)](_0x54db8c[_0x586cc1(0x1e4)],_0x54db8c[_0x27aba7(0x7dd)])?_0x4f4a60+=_0x1b7e3a[0x242+-0x1955+0x1713*0x1][_0x27aba7(0x494)][_0x586cc1(0x8bd)+'nt']:_0xab69a4+=_0x6d6983;}if(_0x5a4afd&&_0x54db8c[_0x27aba7(0x1cb)](_0x5a4afd[_0x983236(0x7c2)+'h'],-0x1*-0x180d+0x1c1e+-0x342b)&&_0x5a4afd[-0xdbe*0x1+-0x635*0x2+0x117*0x18][_0x983236(0x494)][_0x332b58(0x8bd)+'nt']){if(_0x54db8c[_0x332b58(0x5ff)](_0x54db8c[_0x117f56(0xa26)],_0x54db8c[_0x586cc1(0xa26)])){_0x35f90d=0xfb+-0x6*0x22f+0x6b*0x1d;return;}else chatTemp+=_0x5a4afd[0x2*0xba2+0x171c+-0xe0*0x35][_0x117f56(0x494)][_0x332b58(0x8bd)+'nt'];}chatTemp=chatTemp[_0x332b58(0x379)+_0x117f56(0x830)]('\x0a\x0a','\x0a')[_0x27aba7(0x379)+_0x117f56(0x830)]('\x0a\x0a','\x0a'),document[_0x586cc1(0x938)+_0x586cc1(0x502)+_0x586cc1(0x1dd)](_0x54db8c[_0x332b58(0x6a6)])[_0x27aba7(0xabd)+_0x332b58(0x18e)]='',_0x54db8c[_0x332b58(0x819)](markdownToHtml,_0x54db8c[_0x332b58(0x24f)](beautify,chatTemp),document[_0x332b58(0x938)+_0x332b58(0x502)+_0x983236(0x1dd)](_0x54db8c[_0x27aba7(0x6a6)])),document[_0x332b58(0x8eb)+_0x117f56(0x7de)+_0x332b58(0x192)](_0x54db8c[_0x332b58(0x837)])[_0x586cc1(0xabd)+_0x117f56(0x18e)]=_0x54db8c[_0x983236(0x319)](_0x54db8c[_0x983236(0x319)](_0x54db8c[_0x332b58(0x908)](prev_chat,_0x54db8c[_0x27aba7(0x214)]),document[_0x983236(0x938)+_0x983236(0x502)+_0x27aba7(0x1dd)](_0x54db8c[_0x332b58(0x6a6)])[_0x586cc1(0xabd)+_0x586cc1(0x18e)]),_0x54db8c[_0x983236(0x2c0)]);}else JFKctt[_0x117f56(0x382)](_0x2a1ea8,0xf2b+0x12c*0x1e+-0x3253);}),_0x526eca[_0x13db1d(0x6e5)]()[_0x1f9206(0x91b)](_0x465c2d);}});}})[_0x3cfa14(0xb18)](_0x28fa2f=>{const _0x58b2db=_0x3cfa14,_0x4f0a94=_0x3cfa14,_0x47732c=_0x24dcd0,_0x482746=_0x24dcd0,_0x3ac2ff=_0x51d201;_0x18c678[_0x58b2db(0x8e1)](_0x18c678[_0x58b2db(0x6cd)],_0x18c678[_0x47732c(0x6cd)])?console[_0x482746(0x1e1)](_0x18c678[_0x4f0a94(0xa13)],_0x28fa2f):_0x4d5d2f='按钮';});}function send_chat(_0x3b0e34){const _0x209e46=_0x4e848e,_0x5f41df=_0x44cb5b,_0x28fc06=_0x1317da,_0x51f103=_0x44cb5b,_0x15f645=_0x122511,_0x146564={'FxMTg':_0x209e46(0x6c0)+_0x209e46(0xa25),'FkSLg':function(_0x197389,_0x12ad23){return _0x197389>_0x12ad23;},'wQYLx':function(_0x353abc,_0x30cc36,_0x235c17){return _0x353abc(_0x30cc36,_0x235c17);},'KGGSn':function(_0x21762a,_0x5e0db0){return _0x21762a+_0x5e0db0;},'CHOmq':_0x209e46(0x676)+'es','NlPws':function(_0xaca172,_0x5b5b76){return _0xaca172===_0x5b5b76;},'AFfps':_0x209e46(0x3eb),'iTodV':_0x28fc06(0xc86),'zAXhP':function(_0xf15979,_0x36ad8f){return _0xf15979!==_0x36ad8f;},'rBLEI':_0x28fc06(0xa0f),'xRGeA':function(_0x274136,_0x396567){return _0x274136==_0x396567;},'qkxRv':_0x209e46(0x892)+']','UpoCh':_0x209e46(0x9e6),'znsyL':_0x15f645(0x685)+_0x51f103(0x36d),'tnnDH':_0x209e46(0x6c0)+_0x209e46(0x991)+'t','UJYtS':_0x15f645(0xb3a)+_0x51f103(0x1fb),'Liuoa':_0x28fc06(0x886),'ZCwKd':_0x15f645(0x67a),'RJmXx':_0x51f103(0x622),'YXsxW':_0x28fc06(0x377),'icTrm':_0x51f103(0xbd3),'Sacvd':_0x51f103(0x94a),'iSDkL':_0x15f645(0x8d3),'VcQQs':function(_0x1bd469,_0x24a3d6){return _0x1bd469>_0x24a3d6;},'IBbYH':_0x28fc06(0x363),'SopwO':_0x28fc06(0xb6c),'eVmBL':_0x5f41df(0x423)+'pt','KwsXF':function(_0x36bd1a,_0x31abd9,_0x5ca8bf){return _0x36bd1a(_0x31abd9,_0x5ca8bf);},'FTtcm':function(_0x5bbc04,_0x5758a3){return _0x5bbc04(_0x5758a3);},'VstpM':_0x28fc06(0x47b)+_0x28fc06(0xb47),'gZYCl':_0x51f103(0x1c8)+_0x209e46(0x709)+_0x28fc06(0x926)+_0x209e46(0xc72)+_0x209e46(0x5ee),'kSEXj':_0x209e46(0x34d)+'>','uutlp':function(_0x16d65c,_0x5c8101){return _0x16d65c+_0x5c8101;},'ccdqf':function(_0x3700e3,_0x307895){return _0x3700e3+_0x307895;},'tNbil':_0x5f41df(0xa01)+_0x209e46(0x25f)+_0x15f645(0x8be)+_0x5f41df(0xaca),'AmTTT':_0x51f103(0x3d6)+_0x5f41df(0xcc5)+_0x15f645(0x96e)+_0x5f41df(0x670)+_0x51f103(0x4fd)+_0x5f41df(0x92c)+'\x20)','BgeWP':_0x28fc06(0xbd1)+_0x28fc06(0xbcd)+'+$','sMXXC':_0x51f103(0x9df)+_0x209e46(0xcd7),'CVpOp':_0x5f41df(0xa9c),'CIDIE':_0x5f41df(0x32b),'RYLKz':_0x51f103(0x3c7),'Btnvy':function(_0x2ef8cf,_0x470d58){return _0x2ef8cf!==_0x470d58;},'jpVDY':_0x209e46(0x772),'CroKN':function(_0x4f2b48,_0x52f2d4){return _0x4f2b48===_0x52f2d4;},'lrEsH':_0x51f103(0xc81),'plrzd':_0x28fc06(0xaac)+':','eqchY':_0x51f103(0x8c1)+'l','FjQFo':_0x209e46(0x4da),'RqFAv':_0x51f103(0x314),'EpRcn':function(_0x36c4ce,_0x5e9491){return _0x36c4ce(_0x5e9491);},'tIXxN':function(_0x2f71d1,_0x173608){return _0x2f71d1===_0x173608;},'xvuTK':_0x5f41df(0x6f6),'YtaQB':_0x5f41df(0x251),'EMcSZ':function(_0x56e0c5,_0x37ef57){return _0x56e0c5===_0x37ef57;},'oCPez':_0x51f103(0x333),'bNQSn':function(_0x14225d,_0x35e163,_0x193347){return _0x14225d(_0x35e163,_0x193347);},'nCqia':function(_0x26a7c2,_0x39f4d7){return _0x26a7c2+_0x39f4d7;},'wgLCL':_0x51f103(0x697)+_0x51f103(0x22e)+_0x51f103(0xaaa)+_0x209e46(0x5e7)+_0x51f103(0x235)+_0x15f645(0xa3a)+_0x5f41df(0x64f)+_0x28fc06(0x737)+'e=','QKFxF':function(_0x333095,_0x42ff58){return _0x333095(_0x42ff58);},'ZqegZ':_0x28fc06(0x838),'iClSc':_0x15f645(0x940),'iubNI':_0x209e46(0x844),'EuoAE':_0x15f645(0x986),'aNHXq':_0x51f103(0xb7a),'lZzji':_0x51f103(0x2c6),'RhLyS':_0x209e46(0xd0b),'UvUUs':_0x51f103(0xc05),'YLHTm':_0x28fc06(0xa85),'sGSEw':_0x15f645(0x493),'xsuek':_0x28fc06(0x5f8),'JzqBy':_0x15f645(0xb49),'OgzDs':_0x51f103(0xc13),'OUojl':_0x5f41df(0x8ba),'YEyDx':_0x15f645(0xa71),'TLhvd':function(_0x5ecfc2,_0x3400fe){return _0x5ecfc2!=_0x3400fe;},'BHmdZ':function(_0x1c0466,_0x557664){return _0x1c0466+_0x557664;},'onofc':_0x15f645(0x6c0),'NBEAP':_0x5f41df(0xc02)+_0x15f645(0x7af),'IkEXM':_0x28fc06(0x4a1)+'\x0a','MhQdv':_0x28fc06(0x58c)+'m','FPBQJ':_0x51f103(0x7c1)+_0x28fc06(0x7c3)+_0x209e46(0xb85)+_0x28fc06(0xba8)+_0x5f41df(0x4dd)+_0x15f645(0xb29)+'何人','wLWVK':function(_0x493d49,_0x25845b){return _0x493d49+_0x25845b;},'SQmzT':function(_0x16374d,_0xbd16ac){return _0x16374d+_0xbd16ac;},'nSBhF':_0x5f41df(0x2fc),'KKbVi':_0x15f645(0x840)+_0x5f41df(0x451)+_0x15f645(0x62a),'sJotw':_0x28fc06(0x4b8),'aKxJT':function(_0x4deb41,_0xd164ed,_0x1037a5){return _0x4deb41(_0xd164ed,_0x1037a5);},'xUPNz':function(_0x1d5596,_0x71c4f2){return _0x1d5596+_0x71c4f2;},'DNMOJ':function(_0x3b13ae,_0x5588de){return _0x3b13ae+_0x5588de;},'mVQsS':function(_0xfae356,_0x565c58){return _0xfae356+_0x565c58;},'tezsU':_0x51f103(0x1c8)+_0x51f103(0x709)+_0x209e46(0x926)+_0x51f103(0x854)+_0x209e46(0x5cf)+'\x22>','ZzsAT':_0x5f41df(0x31e)+_0x5f41df(0x78a)+_0x51f103(0x586)+_0x5f41df(0x688)+_0x51f103(0x977)+_0x51f103(0x798)};if(_0x146564[_0x28fc06(0xb2b)](document[_0x5f41df(0x938)+_0x5f41df(0x502)+_0x15f645(0x1dd)](_0x146564[_0x5f41df(0x7e8)])[_0x5f41df(0x832)][_0x209e46(0x5de)+'ay'],_0x146564[_0x5f41df(0x81d)])){if(_0x146564[_0x28fc06(0x906)](_0x146564[_0x209e46(0x47c)],_0x146564[_0x28fc06(0x47c)]))return _0x146564[_0x15f645(0x3c3)](send_modalchat,_0x3b0e34);else _0x295cf6+='';}let _0x10df1c=document[_0x209e46(0x938)+_0x51f103(0x502)+_0x15f645(0x1dd)](_0x146564[_0x5f41df(0xbea)])[_0x15f645(0x7cc)];if(_0x3b0e34){if(_0x146564[_0x5f41df(0x180)](_0x146564[_0x5f41df(0x20b)],_0x146564[_0x51f103(0x3e1)])){const _0x25d605=_0x5c5942?function(){const _0x5d1f24=_0x28fc06;if(_0x5dd51d){const _0x6af1ca=_0x1a4870[_0x5d1f24(0x6d2)](_0x3216ff,arguments);return _0x3d941d=null,_0x6af1ca;}}:function(){};return _0x4e53ac=![],_0x25d605;}else _0x10df1c=_0x3b0e34[_0x5f41df(0xb69)+_0x15f645(0x5c6)+'t'],_0x3b0e34[_0x28fc06(0x33c)+'e']();}regexpdf=/https?:\/\/\S+\.pdf(\?\S*)?/g;if(_0x10df1c[_0x28fc06(0x4e4)](regexpdf)){if(_0x146564[_0x28fc06(0x589)](_0x146564[_0x28fc06(0xc30)],_0x146564[_0x5f41df(0xc30)]))pdf_url=_0x10df1c[_0x5f41df(0x4e4)](regexpdf)[-0x11d2*0x2+0xe*0x217+0x662],_0x146564[_0x28fc06(0x9b2)](modal_open,_0x146564[_0x51f103(0xa5d)](_0x146564[_0x5f41df(0x3f8)],_0x146564[_0x209e46(0xca5)](encodeURIComponent,pdf_url)),_0x146564[_0x28fc06(0x5fa)]);else return _0x2117e1;}if(_0x146564[_0x28fc06(0xb2b)](_0x10df1c[_0x15f645(0x7c2)+'h'],-0x13ff*0x1+-0x1*-0xe4b+0x5b4)||_0x146564[_0x15f645(0x2ff)](_0x10df1c[_0x15f645(0x7c2)+'h'],0x1*-0x5b6+-0x1*-0x1753+0x1111*-0x1))return;_0x146564[_0x209e46(0xc4f)](trimArray,word_last,-0x1385+0x133+0x6c2*0x3);if(_0x10df1c[_0x51f103(0xbbe)+_0x209e46(0x714)]('你能')||_0x10df1c[_0x28fc06(0xbbe)+_0x209e46(0x714)]('讲讲')||_0x10df1c[_0x15f645(0xbbe)+_0x209e46(0x714)]('扮演')||_0x10df1c[_0x5f41df(0xbbe)+_0x209e46(0x714)]('模仿')||_0x10df1c[_0x15f645(0xbbe)+_0x15f645(0x714)](_0x146564[_0x5f41df(0x54f)])||_0x10df1c[_0x51f103(0xbbe)+_0x209e46(0x714)]('帮我')||_0x10df1c[_0x5f41df(0xbbe)+_0x5f41df(0x714)](_0x146564[_0x28fc06(0x6be)])||_0x10df1c[_0x209e46(0xbbe)+_0x51f103(0x714)](_0x146564[_0x15f645(0x827)])||_0x10df1c[_0x51f103(0xbbe)+_0x28fc06(0x714)]('请问')||_0x10df1c[_0x15f645(0xbbe)+_0x5f41df(0x714)]('请给')||_0x10df1c[_0x15f645(0xbbe)+_0x5f41df(0x714)]('请你')||_0x10df1c[_0x15f645(0xbbe)+_0x209e46(0x714)](_0x146564[_0x51f103(0x54f)])||_0x10df1c[_0x209e46(0xbbe)+_0x51f103(0x714)](_0x146564[_0x5f41df(0x7f1)])||_0x10df1c[_0x5f41df(0xbbe)+_0x28fc06(0x714)](_0x146564[_0x209e46(0x5fe)])||_0x10df1c[_0x209e46(0xbbe)+_0x209e46(0x714)](_0x146564[_0x15f645(0x9f9)])||_0x10df1c[_0x51f103(0xbbe)+_0x209e46(0x714)](_0x146564[_0x15f645(0x925)])||_0x10df1c[_0x28fc06(0xbbe)+_0x28fc06(0x714)](_0x146564[_0x5f41df(0x1e3)])||_0x10df1c[_0x209e46(0xbbe)+_0x5f41df(0x714)]('怎样')||_0x10df1c[_0x5f41df(0xbbe)+_0x51f103(0x714)]('给我')||_0x10df1c[_0x15f645(0xbbe)+_0x51f103(0x714)]('如何')||_0x10df1c[_0x15f645(0xbbe)+_0x15f645(0x714)]('谁是')||_0x10df1c[_0x15f645(0xbbe)+_0x28fc06(0x714)]('查询')||_0x10df1c[_0x51f103(0xbbe)+_0x15f645(0x714)](_0x146564[_0x51f103(0x3d1)])||_0x10df1c[_0x28fc06(0xbbe)+_0x51f103(0x714)](_0x146564[_0x15f645(0x885)])||_0x10df1c[_0x209e46(0xbbe)+_0x5f41df(0x714)](_0x146564[_0x51f103(0x91a)])||_0x10df1c[_0x5f41df(0xbbe)+_0x5f41df(0x714)](_0x146564[_0x209e46(0x5dc)])||_0x10df1c[_0x51f103(0xbbe)+_0x5f41df(0x714)]('哪个')||_0x10df1c[_0x15f645(0xbbe)+_0x209e46(0x714)]('哪些')||_0x10df1c[_0x15f645(0xbbe)+_0x28fc06(0x714)](_0x146564[_0x28fc06(0x5c5)])||_0x10df1c[_0x15f645(0xbbe)+_0x209e46(0x714)](_0x146564[_0x5f41df(0x6b2)])||_0x10df1c[_0x51f103(0xbbe)+_0x51f103(0x714)]('啥是')||_0x10df1c[_0x15f645(0xbbe)+_0x5f41df(0x714)]('为啥')||_0x10df1c[_0x209e46(0xbbe)+_0x5f41df(0x714)]('怎么'))return _0x146564[_0x5f41df(0xaff)](send_webchat,_0x3b0e34);if(_0x146564[_0x5f41df(0xa88)](lock_chat,-0x13de+0x97b+-0xa63*-0x1))return;lock_chat=-0x12d4+0x1286+0x4f;const _0x4de2ae=_0x146564[_0x28fc06(0x2b8)](_0x146564[_0x209e46(0xa5d)](_0x146564[_0x15f645(0x4f6)](document[_0x51f103(0x938)+_0x5f41df(0x502)+_0x51f103(0x1dd)](_0x146564[_0x209e46(0x4f4)])[_0x209e46(0xabd)+_0x15f645(0x18e)][_0x15f645(0x379)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x5f41df(0x379)+'ce'](/<hr.*/gs,'')[_0x5f41df(0x379)+'ce'](/<[^>]+>/g,'')[_0x209e46(0x379)+'ce'](/\n\n/g,'\x0a'),_0x146564[_0x28fc06(0x4a6)]),search_queryquery),_0x146564[_0x5f41df(0x68b)]),_0x2eb35c={};_0x2eb35c[_0x209e46(0x3df)]=_0x146564[_0x51f103(0xba0)],_0x2eb35c[_0x28fc06(0x8bd)+'nt']=_0x146564[_0x5f41df(0x609)];const _0x2c0d5b={};_0x2c0d5b[_0x5f41df(0x3df)]=_0x146564[_0x5f41df(0x728)],_0x2c0d5b[_0x51f103(0x8bd)+'nt']=_0x4de2ae;let _0x536f84=[_0x2eb35c,_0x2c0d5b];_0x536f84=_0x536f84[_0x28fc06(0x46c)+'t'](word_last),_0x536f84=_0x536f84[_0x28fc06(0x46c)+'t']([{'role':_0x146564[_0x209e46(0xc69)],'content':_0x146564[_0x209e46(0x7a2)](_0x146564[_0x5f41df(0x4bb)](_0x146564[_0x15f645(0xcbc)],_0x10df1c),_0x146564[_0x5f41df(0x352)])}]);const _0x1da621={'method':_0x146564[_0x15f645(0x320)],'headers':headers,'body':_0x146564[_0x209e46(0xca5)](b64EncodeUnicode,JSON[_0x5f41df(0x5e3)+_0x209e46(0x75a)]({'messages':_0x536f84[_0x51f103(0x46c)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0x10df1c=_0x10df1c[_0x15f645(0x379)+_0x15f645(0x830)]('\x0a\x0a','\x0a')[_0x51f103(0x379)+_0x5f41df(0x830)]('\x0a\x0a','\x0a'),document[_0x51f103(0x938)+_0x209e46(0x502)+_0x15f645(0x1dd)](_0x146564[_0x15f645(0x5c0)])[_0x209e46(0xabd)+_0x5f41df(0x18e)]='',_0x146564[_0x15f645(0x3fd)](markdownToHtml,_0x146564[_0x209e46(0x3c3)](beautify,_0x10df1c),document[_0x28fc06(0x938)+_0x15f645(0x502)+_0x209e46(0x1dd)](_0x146564[_0x15f645(0x5c0)])),chatTemp='',text_offset=-(-0x1*0x224b+0x5d3+0x1c79),prev_chat=document[_0x5f41df(0x8eb)+_0x28fc06(0x7de)+_0x5f41df(0x192)](_0x146564[_0x15f645(0xc78)])[_0x5f41df(0xabd)+_0x15f645(0x18e)],prev_chat=_0x146564[_0x51f103(0x4b4)](_0x146564[_0x28fc06(0xcfa)](_0x146564[_0x209e46(0x7b1)](prev_chat,_0x146564[_0x15f645(0x1d2)]),document[_0x209e46(0x938)+_0x28fc06(0x502)+_0x5f41df(0x1dd)](_0x146564[_0x51f103(0x5c0)])[_0x28fc06(0xabd)+_0x209e46(0x18e)]),_0x146564[_0x28fc06(0x630)]),_0x146564[_0x5f41df(0x3fd)](fetch,_0x146564[_0x5f41df(0x96d)],_0x1da621)[_0x5f41df(0x91b)](_0x56ad26=>{const _0x23924c=_0x209e46,_0x5f39bc=_0x5f41df,_0x40381c=_0x15f645,_0x476595=_0x28fc06,_0x47849f=_0x51f103,_0x221a19={'RTDuo':_0x146564[_0x23924c(0x7f5)],'XJHnE':function(_0x20790c,_0x23700c){const _0x2263c0=_0x23924c;return _0x146564[_0x2263c0(0x2ff)](_0x20790c,_0x23700c);},'NRoVG':function(_0x323e73,_0x44774c,_0x17bf6c){const _0x48a992=_0x23924c;return _0x146564[_0x48a992(0x432)](_0x323e73,_0x44774c,_0x17bf6c);},'tYkbu':function(_0x4b5c87,_0x3f2bcc){const _0xa6d4d=_0x23924c;return _0x146564[_0xa6d4d(0x2b8)](_0x4b5c87,_0x3f2bcc);},'fBZef':_0x146564[_0x5f39bc(0x286)],'qcLws':function(_0x4d70e6,_0x2b91e6){const _0x221235=_0x23924c;return _0x146564[_0x221235(0x51e)](_0x4d70e6,_0x2b91e6);},'CHuOX':_0x146564[_0x23924c(0x265)],'MxcMm':_0x146564[_0x23924c(0x969)],'ARKzH':function(_0x598151,_0x41530c){const _0x38d48f=_0x40381c;return _0x146564[_0x38d48f(0x6c9)](_0x598151,_0x41530c);},'fjHtr':_0x146564[_0x23924c(0x65b)],'IXteO':function(_0x139d55,_0x1d4b50){const _0x4a6d7b=_0x47849f;return _0x146564[_0x4a6d7b(0xb2b)](_0x139d55,_0x1d4b50);},'hSqCq':_0x146564[_0x476595(0x40e)],'IEVvm':function(_0xdac48c,_0xd774e1){const _0x23fd7b=_0x40381c;return _0x146564[_0x23fd7b(0x6c9)](_0xdac48c,_0xd774e1);},'pORyV':_0x146564[_0x47849f(0x6f7)],'fjyLD':_0x146564[_0x40381c(0x923)],'mFeqX':_0x146564[_0x5f39bc(0xbea)],'zBIPw':_0x146564[_0x40381c(0x728)],'Bcksn':_0x146564[_0x476595(0xc69)],'OrNKR':_0x146564[_0x23924c(0x19c)],'oJBlD':_0x146564[_0x40381c(0x51b)],'dfHVa':_0x146564[_0x23924c(0x303)],'MAZjL':_0x146564[_0x47849f(0x5da)],'utqag':_0x146564[_0x47849f(0x878)],'QFVTf':_0x146564[_0x5f39bc(0x7d9)],'DxdaM':function(_0x38955d,_0x2ff368){const _0xa671fc=_0x476595;return _0x146564[_0xa671fc(0xabe)](_0x38955d,_0x2ff368);},'hYjhh':_0x146564[_0x23924c(0x349)],'cgYVY':_0x146564[_0x23924c(0x52a)],'GcauS':_0x146564[_0x40381c(0x5c0)],'hqWOo':function(_0x13a2a6,_0x464a04,_0x2d1634){const _0x4a2ad9=_0x23924c;return _0x146564[_0x4a2ad9(0xc4f)](_0x13a2a6,_0x464a04,_0x2d1634);},'JqxeY':function(_0x19f974,_0x13ef0a){const _0xc83270=_0x476595;return _0x146564[_0xc83270(0xaff)](_0x19f974,_0x13ef0a);},'BkElp':_0x146564[_0x5f39bc(0xc78)],'KQusk':function(_0x2f3401,_0x291ba4){const _0x30ea44=_0x476595;return _0x146564[_0x30ea44(0x2b8)](_0x2f3401,_0x291ba4);},'OdKrm':_0x146564[_0x5f39bc(0x56e)],'DNVsH':_0x146564[_0x476595(0x630)],'ByMVG':function(_0x3354ff,_0x5ebd2e){const _0x489fba=_0x47849f;return _0x146564[_0x489fba(0xc45)](_0x3354ff,_0x5ebd2e);},'iJnKi':function(_0x19e8d4,_0xb4eb1c){const _0x523873=_0x476595;return _0x146564[_0x523873(0x3cd)](_0x19e8d4,_0xb4eb1c);},'GdpcJ':_0x146564[_0x40381c(0x9a0)],'ghbGK':_0x146564[_0x47849f(0xc39)],'mGNGn':_0x146564[_0x23924c(0x826)],'TAfRU':_0x146564[_0x476595(0x931)],'QBlbi':_0x146564[_0x476595(0xcd9)],'rLWNC':_0x146564[_0x5f39bc(0x807)],'bTGTP':_0x146564[_0x47849f(0x88d)]};if(_0x146564[_0x40381c(0xc14)](_0x146564[_0x476595(0xceb)],_0x146564[_0x47849f(0xceb)]))_0x3666e0+=_0x12d72f;else{const _0x5b7a33=_0x56ad26[_0x476595(0x61f)][_0x23924c(0x516)+_0x23924c(0x69d)]();let _0x1e95e6='',_0x3a12f5='';_0x5b7a33[_0x47849f(0x6e5)]()[_0x5f39bc(0x91b)](function _0x2e14ae({done:_0x37a4df,value:_0x513498}){const _0x1f59a8=_0x40381c,_0x996d01=_0x23924c,_0x39deeb=_0x5f39bc,_0x3170e9=_0x23924c,_0x5bb5e3=_0x476595,_0x4618fc={'VHpTU':function(_0x5c2979,_0x523f43){const _0x565108=_0x2717;return _0x221a19[_0x565108(0xbb6)](_0x5c2979,_0x523f43);},'nHlPM':function(_0x371741,_0x3e6f59){const _0x5d50f=_0x2717;return _0x221a19[_0x5d50f(0xbff)](_0x371741,_0x3e6f59);},'pitQi':function(_0x55e188,_0x20851c){const _0xcc1979=_0x2717;return _0x221a19[_0xcc1979(0xbf7)](_0x55e188,_0x20851c);},'KePNv':_0x221a19[_0x1f59a8(0x79a)],'JqRVH':_0x221a19[_0x1f59a8(0x270)],'qtkBF':_0x221a19[_0x1f59a8(0x7a1)],'CEeQa':_0x221a19[_0x1f59a8(0xba5)],'VQwXR':_0x221a19[_0x1f59a8(0x453)]};if(_0x221a19[_0x5bb5e3(0xa0c)](_0x221a19[_0x996d01(0x29c)],_0x221a19[_0x3170e9(0x29c)]))_0x26f597=wrqFUB[_0x3170e9(0x2f8)](_0x5c3f03,wrqFUB[_0x996d01(0x836)](wrqFUB[_0x996d01(0x1ba)](wrqFUB[_0x3170e9(0xc76)],wrqFUB[_0x39deeb(0x91d)]),');'))();else{if(_0x37a4df)return;const _0x2f8bc4=new TextDecoder(_0x221a19[_0x996d01(0x7d1)])[_0x39deeb(0x55a)+'e'](_0x513498);return _0x2f8bc4[_0x996d01(0xbcb)]()[_0x39deeb(0x74a)]('\x0a')[_0x3170e9(0xcba)+'ch'](function(_0x34d6e9){const _0x18381c=_0x5bb5e3,_0x5bffef=_0x39deeb,_0x1f4188=_0x5bb5e3,_0x4d052b=_0x1f59a8,_0x476562=_0x3170e9,_0x2b3ef1={'NYfKn':_0x221a19[_0x18381c(0xbd6)],'nFHfU':function(_0x3fdba2,_0xd53cf3){const _0x33d60f=_0x18381c;return _0x221a19[_0x33d60f(0x291)](_0x3fdba2,_0xd53cf3);},'zCSjD':function(_0x3f08de,_0xbde8fe,_0x6270e2){const _0x19819e=_0x18381c;return _0x221a19[_0x19819e(0x930)](_0x3f08de,_0xbde8fe,_0x6270e2);},'xRqQd':function(_0x51b846,_0x1547ba){const _0x2bafc0=_0x18381c;return _0x221a19[_0x2bafc0(0xcec)](_0x51b846,_0x1547ba);},'egMLG':_0x221a19[_0x5bffef(0x650)]};if(_0x221a19[_0x5bffef(0xa8d)](_0x221a19[_0x4d052b(0x579)],_0x221a19[_0x476562(0x384)]))return _0x3585e3[_0x1f4188(0x8b6)+_0x476562(0x67b)]()[_0x18381c(0x7c0)+'h'](wrqFUB[_0x5bffef(0x324)])[_0x18381c(0x8b6)+_0x18381c(0x67b)]()[_0x18381c(0x2d9)+_0x5bffef(0x310)+'r'](_0x5da342)[_0x4d052b(0x7c0)+'h'](wrqFUB[_0x476562(0x324)]);else{try{if(_0x221a19[_0x5bffef(0xa0c)](_0x221a19[_0x5bffef(0x637)],_0x221a19[_0x18381c(0x637)])){const _0x486667=_0x1804f4?function(){const _0x476d3f=_0x5bffef;if(_0x2e439e){const _0x4cdb8d=_0x3c883e[_0x476d3f(0x6d2)](_0x38570a,arguments);return _0x5c1450=null,_0x4cdb8d;}}:function(){};return _0x461519=![],_0x486667;}else document[_0x4d052b(0x938)+_0x4d052b(0x502)+_0x476562(0x1dd)](_0x221a19[_0x1f4188(0xbd6)])[_0x4d052b(0x68c)+_0x5bffef(0x38a)]=document[_0x4d052b(0x938)+_0x4d052b(0x502)+_0x476562(0x1dd)](_0x221a19[_0x1f4188(0xbd6)])[_0x5bffef(0x68c)+_0x5bffef(0x8d4)+'ht'];}catch(_0x296073){}_0x1e95e6='';if(_0x221a19[_0x4d052b(0x291)](_0x34d6e9[_0x476562(0x7c2)+'h'],-0x809+0x247b+-0x1c6c))_0x1e95e6=_0x34d6e9[_0x5bffef(0x7fb)](0x235c*-0x1+-0x165*0x7+-0x379*-0xd);if(_0x221a19[_0x1f4188(0xcfb)](_0x1e95e6,_0x221a19[_0x1f4188(0x612)])){if(_0x221a19[_0x18381c(0x465)](_0x221a19[_0x1f4188(0xa83)],_0x221a19[_0x18381c(0xa83)]))_0x2475c7[_0x476562(0x938)+_0x1f4188(0x502)+_0x5bffef(0x1dd)](_0x2b3ef1[_0x1f4188(0x7e7)])[_0x4d052b(0x68c)+_0x5bffef(0x38a)]=_0x1c8770[_0x476562(0x938)+_0x1f4188(0x502)+_0x4d052b(0x1dd)](_0x2b3ef1[_0x18381c(0x7e7)])[_0x4d052b(0x68c)+_0x1f4188(0x8d4)+'ht'];else{const _0x1e7c31=_0x221a19[_0x5bffef(0xa6c)][_0x18381c(0x74a)]('|');let _0x5100fa=-0x1*-0x494+-0x186a+-0x9eb*-0x2;while(!![]){switch(_0x1e7c31[_0x5100fa++]){case'0':document[_0x1f4188(0x938)+_0x18381c(0x502)+_0x4d052b(0x1dd)](_0x221a19[_0x476562(0x30b)])[_0x4d052b(0x7cc)]='';continue;case'1':const _0x36234c={};_0x36234c[_0x1f4188(0x3df)]=_0x221a19[_0x1f4188(0x4d8)],_0x36234c[_0x476562(0x8bd)+'nt']=chatTemp,word_last[_0x476562(0xb25)](_0x36234c);continue;case'2':return;case'3':const _0x2b795b={};_0x2b795b[_0x476562(0x3df)]=_0x221a19[_0x4d052b(0x84b)],_0x2b795b[_0x1f4188(0x8bd)+'nt']=_0x10df1c,word_last[_0x5bffef(0xb25)](_0x2b795b);continue;case'4':lock_chat=0x2*0x413+-0x2556+-0x2*-0xe98;continue;}break;}}}let _0x2fcef4;try{if(_0x221a19[_0x4d052b(0x465)](_0x221a19[_0x4d052b(0x44e)],_0x221a19[_0x5bffef(0x44e)])){_0x261216=_0x4618fc[_0x476562(0x2f8)](_0x12f3d8,_0x57a0c3);const _0x18f461={};return _0x18f461[_0x18381c(0x263)]=_0x4618fc[_0x18381c(0x8a8)],_0x1b1178[_0x4d052b(0x83f)+'e'][_0x18381c(0x649)+'pt'](_0x18f461,_0x58b6df,_0x3e967e);}else try{_0x221a19[_0x4d052b(0xa8d)](_0x221a19[_0x5bffef(0xbda)],_0x221a19[_0x18381c(0xbda)])?(_0x2fcef4=JSON[_0x1f4188(0x245)](_0x221a19[_0x476562(0xcec)](_0x3a12f5,_0x1e95e6))[_0x221a19[_0x4d052b(0x650)]],_0x3a12f5=''):_0xc4db77[_0xaec5d8]++;}catch(_0x438c42){if(_0x221a19[_0x1f4188(0xa8d)](_0x221a19[_0x18381c(0x8b5)],_0x221a19[_0x5bffef(0xc43)]))return _0x2b3ef1[_0x476562(0x766)](_0x2b3ef1[_0x4d052b(0x828)](_0x52aae4,_0x46e738,_0x5e363d),_0x2b3ef1[_0x4d052b(0x828)](_0x118545,_0x48a8dc,_0x400a84))?-(0x1*0x25c1+-0x373*0xb+0x31):-0x107*0x1+0xaef+-0x9e7;else _0x2fcef4=JSON[_0x1f4188(0x245)](_0x1e95e6)[_0x221a19[_0x5bffef(0x650)]],_0x3a12f5='';}}catch(_0x12d099){_0x221a19[_0x476562(0xa0c)](_0x221a19[_0x4d052b(0x751)],_0x221a19[_0x4d052b(0x626)])?_0x3a12f5+=_0x1e95e6:_0x929567=_0x4618fc[_0x18381c(0x604)];}if(_0x2fcef4&&_0x221a19[_0x18381c(0xa52)](_0x2fcef4[_0x1f4188(0x7c2)+'h'],-0x70b+-0x3*0x435+0x13aa)&&_0x2fcef4[-0x4ca*0x3+0x277+0xb*0x115][_0x5bffef(0x494)][_0x18381c(0x8bd)+'nt']){if(_0x221a19[_0x4d052b(0xa8d)](_0x221a19[_0x5bffef(0xcdd)],_0x221a19[_0x18381c(0x58a)]))try{_0x31d2ed=_0x12dc6c[_0x5bffef(0x245)](_0x2b3ef1[_0x1f4188(0x21e)](_0x198086,_0x5571d6))[_0x2b3ef1[_0x18381c(0xc0f)]],_0x96bc7e='';}catch(_0x3ffa41){_0x227cc2=_0x2dff2c[_0x476562(0x245)](_0x16236c)[_0x2b3ef1[_0x18381c(0xc0f)]],_0x1a7054='';}else chatTemp+=_0x2fcef4[-0x31d*0x4+-0x1a97+0x270b][_0x5bffef(0x494)][_0x1f4188(0x8bd)+'nt'];}chatTemp=chatTemp[_0x5bffef(0x379)+_0x4d052b(0x830)]('\x0a\x0a','\x0a')[_0x476562(0x379)+_0x5bffef(0x830)]('\x0a\x0a','\x0a'),document[_0x1f4188(0x938)+_0x1f4188(0x502)+_0x4d052b(0x1dd)](_0x221a19[_0x476562(0x2ed)])[_0x1f4188(0xabd)+_0x18381c(0x18e)]='',_0x221a19[_0x4d052b(0x5a9)](markdownToHtml,_0x221a19[_0x4d052b(0xbb6)](beautify,chatTemp),document[_0x5bffef(0x938)+_0x476562(0x502)+_0x18381c(0x1dd)](_0x221a19[_0x476562(0x2ed)])),document[_0x18381c(0x8eb)+_0x1f4188(0x7de)+_0x18381c(0x192)](_0x221a19[_0x1f4188(0xb24)])[_0x1f4188(0xabd)+_0x4d052b(0x18e)]=_0x221a19[_0x1f4188(0xcec)](_0x221a19[_0x18381c(0xcec)](_0x221a19[_0x18381c(0x673)](prev_chat,_0x221a19[_0x5bffef(0x7c5)]),document[_0x4d052b(0x938)+_0x1f4188(0x502)+_0x5bffef(0x1dd)](_0x221a19[_0x4d052b(0x2ed)])[_0x5bffef(0xabd)+_0x18381c(0x18e)]),_0x221a19[_0x5bffef(0x17a)]);}}),_0x5b7a33[_0x3170e9(0x6e5)]()[_0x39deeb(0x91b)](_0x2e14ae);}});}})[_0x5f41df(0xb18)](_0x149c7d=>{const _0x300f3d=_0x51f103,_0x546eb5=_0x209e46,_0x29e209=_0x209e46,_0x448f57=_0x5f41df,_0x170c25=_0x209e46;_0x146564[_0x300f3d(0x906)](_0x146564[_0x300f3d(0x864)],_0x146564[_0x29e209(0x864)])?console[_0x546eb5(0x1e1)](_0x146564[_0x448f57(0x6f0)],_0x149c7d):(_0x3c6dd8[_0x546eb5(0xb25)]([_0x1efa4c[_0x448f57(0x9ea)+'ge'],_0x515a45,_0x390623,_0x2c4a3e]),_0x5c002f='',_0x268ab5='');});}function _0x2717(_0x59d9e4,_0x241456){const _0x5bc794=_0x5055();return _0x2717=function(_0x579d00,_0x5649cb){_0x579d00=_0x579d00-(-0x2b5*0x4+-0x3*-0xa4c+-0x6*0x31b);let _0x256c20=_0x5bc794[_0x579d00];return _0x256c20;},_0x2717(_0x59d9e4,_0x241456);}function replaceUrlWithFootnote(_0x16cc51){const _0x20a86e=_0x44cb5b,_0x41bcba=_0x44cb5b,_0x2d94c1=_0x44cb5b,_0x58b795=_0x44cb5b,_0x48c02b=_0xeae0e,_0x5e222b={};_0x5e222b[_0x20a86e(0x7d5)]=function(_0x52b526,_0x3a4007){return _0x52b526===_0x3a4007;},_0x5e222b[_0x41bcba(0x6a2)]=_0x41bcba(0x934),_0x5e222b[_0x41bcba(0x48c)]=_0x48c02b(0x9d9),_0x5e222b[_0x2d94c1(0x937)]=function(_0x420ff1,_0x543104){return _0x420ff1===_0x543104;},_0x5e222b[_0x20a86e(0x43e)]=_0x48c02b(0x665),_0x5e222b[_0x58b795(0x4b5)]=function(_0x3b5f53,_0x496b36){return _0x3b5f53+_0x496b36;},_0x5e222b[_0x2d94c1(0x700)]=function(_0x146a27,_0x1dc5a6){return _0x146a27-_0x1dc5a6;},_0x5e222b[_0x2d94c1(0x256)]=function(_0x1fc3e4,_0x4e9734){return _0x1fc3e4<=_0x4e9734;},_0x5e222b[_0x48c02b(0x5be)]=function(_0x2dfd8e,_0x50ee91){return _0x2dfd8e>_0x50ee91;},_0x5e222b[_0x41bcba(0xb8a)]=_0x48c02b(0x6bb),_0x5e222b[_0x20a86e(0x188)]=function(_0x32ef80,_0x5d1e9c){return _0x32ef80-_0x5d1e9c;};const _0x3acffe=_0x5e222b,_0x4f4798=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x1533da=new Set(),_0x1aab00=(_0x4da11b,_0x19abf3)=>{const _0x3c68af=_0x41bcba,_0x56e0fa=_0x41bcba,_0xf2491=_0x58b795,_0x22ed01=_0x41bcba,_0x1e67c1=_0x41bcba;if(_0x3acffe[_0x3c68af(0x7d5)](_0x3acffe[_0x3c68af(0x6a2)],_0x3acffe[_0x3c68af(0x48c)]))_0x3199fc+=_0x4112b6[0x176c+0x1333+-0x2a9f][_0xf2491(0x494)][_0x1e67c1(0x8bd)+'nt'];else{if(_0x1533da[_0xf2491(0x395)](_0x19abf3))return _0x3acffe[_0x3c68af(0x937)](_0x3acffe[_0x3c68af(0x43e)],_0x3acffe[_0x22ed01(0x43e)])?_0x4da11b:new _0x1a69b8(_0x4ffe14=>_0x1cace1(_0x4ffe14,_0x263670));const _0x18b564=_0x19abf3[_0x56e0fa(0x74a)](/[;,;、,]/),_0x1c0141=_0x18b564[_0x1e67c1(0x386)](_0x5c7c20=>'['+_0x5c7c20+']')[_0x56e0fa(0x7db)]('\x20'),_0x39bf61=_0x18b564[_0x22ed01(0x386)](_0x34af9f=>'['+_0x34af9f+']')[_0x1e67c1(0x7db)]('\x0a');_0x18b564[_0xf2491(0xcba)+'ch'](_0x56d98f=>_0x1533da[_0xf2491(0x872)](_0x56d98f)),res='\x20';for(var _0x38c2f1=_0x3acffe[_0xf2491(0x4b5)](_0x3acffe[_0xf2491(0x700)](_0x1533da[_0xf2491(0x6e9)],_0x18b564[_0x1e67c1(0x7c2)+'h']),0x1b8+0x230c+0xc41*-0x3);_0x3acffe[_0x1e67c1(0x256)](_0x38c2f1,_0x1533da[_0xf2491(0x6e9)]);++_0x38c2f1)res+='[^'+_0x38c2f1+']\x20';return res;}};let _0x463622=-0xa3*-0x27+-0x7f*-0x4c+-0x3e88,_0x447a97=_0x16cc51[_0x20a86e(0x379)+'ce'](_0x4f4798,_0x1aab00);while(_0x3acffe[_0x2d94c1(0x5be)](_0x1533da[_0x41bcba(0x6e9)],-0x1*-0x1a51+0x941*-0x2+-0x7cf)){if(_0x3acffe[_0x48c02b(0x937)](_0x3acffe[_0x2d94c1(0xb8a)],_0x3acffe[_0x41bcba(0xb8a)])){const _0x3f38cb='['+_0x463622++ +_0x48c02b(0x184)+_0x1533da[_0x58b795(0x7cc)+'s']()[_0x20a86e(0x4c6)]()[_0x41bcba(0x7cc)],_0x77ddc6='[^'+_0x3acffe[_0x20a86e(0x188)](_0x463622,-0x1425+0x13ad+0x79)+_0x41bcba(0x184)+_0x1533da[_0x48c02b(0x7cc)+'s']()[_0x41bcba(0x4c6)]()[_0x58b795(0x7cc)];_0x447a97=_0x447a97+'\x0a\x0a'+_0x77ddc6,_0x1533da[_0x48c02b(0x5ae)+'e'](_0x1533da[_0x58b795(0x7cc)+'s']()[_0x41bcba(0x4c6)]()[_0x48c02b(0x7cc)]);}else _0x3c4d1f[_0x58b795(0xb25)](_0x54e2af[_0x58b795(0x267)+'ge'](_0x311d21));}return _0x447a97;}function beautify(_0x3c7d56){const _0x21ca55=_0x44cb5b,_0x429619=_0x4e848e,_0x32dc2b=_0x44cb5b,_0x25fa15=_0xeae0e,_0x21866a=_0x44cb5b,_0x313147={'tttSw':_0x21ca55(0xaac)+':','oZsXr':function(_0x16c7c3,_0x2b904f){return _0x16c7c3>=_0x2b904f;},'CjkfF':function(_0x139c67,_0x47667f){return _0x139c67!==_0x47667f;},'HQURx':_0x21ca55(0xae2),'irlAA':_0x21ca55(0xacf),'jbIbf':_0x21ca55(0x340)+_0x21866a(0xb67)+_0x21866a(0xc2e)+_0x25fa15(0x39c)+_0x25fa15(0x475)+_0x21ca55(0x1a8)+_0x25fa15(0x211)+_0x429619(0xb39)+_0x21866a(0x4a0)+_0x429619(0x26b)+_0x429619(0x600)+_0x25fa15(0x193)+_0x429619(0x91f),'PtRzA':function(_0x468968,_0x25f00a){return _0x468968+_0x25f00a;},'sdXIJ':_0x25fa15(0x2a6)+_0x32dc2b(0x615)+_0x32dc2b(0x369),'YPQUt':function(_0x3d3594,_0x3f909c){return _0x3d3594(_0x3f909c);},'tXrti':_0x429619(0x610)+_0x32dc2b(0x3aa)+'rl','nokXu':function(_0x1c5de4,_0x23fa86){return _0x1c5de4(_0x23fa86);},'khhHE':function(_0xcbad52,_0x491729){return _0xcbad52+_0x491729;},'Vfexd':_0x21ca55(0x27f)+_0x25fa15(0x6f2)+_0x429619(0x859),'eNuXC':function(_0xb265f5,_0x58bddd){return _0xb265f5(_0x58bddd);},'mLeSX':function(_0x4deff5,_0x4b1b55){return _0x4deff5+_0x4b1b55;},'GUlov':_0x21ca55(0x96c),'jgtwX':function(_0x2b6f14,_0x16ed9f){return _0x2b6f14(_0x16ed9f);},'vIUZO':function(_0x396c96,_0x4c0d1f){return _0x396c96+_0x4c0d1f;},'GfnVX':_0x429619(0x2a9)+_0x429619(0x61d),'ABUco':function(_0x2eddad,_0x120853){return _0x2eddad(_0x120853);},'asUlh':function(_0x453c74,_0x431daa){return _0x453c74(_0x431daa);},'JlQky':_0x429619(0x2a9)+_0x429619(0x7fd),'ijrmM':function(_0x389ac8,_0x5c2748){return _0x389ac8+_0x5c2748;},'iuzDi':_0x25fa15(0x27a),'tGmjd':function(_0x21eb26,_0x14ff6d){return _0x21eb26(_0x14ff6d);},'uiytK':_0x32dc2b(0xcb5)+'l','FHbxh':function(_0x118b13,_0x1c97c4){return _0x118b13(_0x1c97c4);},'wydSh':function(_0x4a2381,_0x10e83b){return _0x4a2381+_0x10e83b;},'AWHly':_0x25fa15(0x2a9)+_0x25fa15(0x962)+_0x21ca55(0x3aa)+'rl','agbrR':function(_0x40a77e,_0x1cf96a){return _0x40a77e(_0x1cf96a);},'ZigdH':function(_0x3f4f04,_0x23e81e){return _0x3f4f04+_0x23e81e;},'FMuTx':_0x32dc2b(0x2b7),'teOIG':function(_0x107f05,_0x4fd0c9){return _0x107f05+_0x4fd0c9;},'ekLGV':function(_0x2ff05d,_0x1974ad){return _0x2ff05d(_0x1974ad);},'LGFKe':function(_0x3d38d2,_0x2dd996){return _0x3d38d2+_0x2dd996;},'hvmAo':_0x25fa15(0xaa7)+'l','WqTsZ':function(_0x5238cf,_0xb88a8){return _0x5238cf(_0xb88a8);},'VwRoc':function(_0x337a07,_0x16a850){return _0x337a07+_0x16a850;},'qGkri':_0x429619(0x6de)+'rl','WqyGP':function(_0x38fb3e,_0x527736){return _0x38fb3e+_0x527736;},'TavET':_0x32dc2b(0x997)+_0x21866a(0x6f2)+_0x32dc2b(0x859),'FSKOx':function(_0xb1d091,_0x4e2e58){return _0xb1d091+_0x4e2e58;},'FdcNp':_0x21ca55(0x2a9)+':','TWfPL':function(_0x5dc712,_0x4f28f5){return _0x5dc712(_0x4f28f5);},'PcpZt':function(_0x14c78e,_0xa15cfb){return _0x14c78e+_0xa15cfb;},'oALdH':_0x429619(0xb3b)+'rl','SBEmU':function(_0x244375,_0x4ffc01){return _0x244375(_0x4ffc01);},'RudxC':_0x25fa15(0x460)+_0x429619(0x615)+_0x32dc2b(0x369),'BIzPT':function(_0x4dd490,_0x2716de){return _0x4dd490+_0x2716de;},'qnJPl':_0x21ca55(0x2a9)+_0x25fa15(0x31e)+_0x32dc2b(0xbae)+'l','JkzVZ':function(_0x10b783,_0x73cae8){return _0x10b783+_0x73cae8;},'arKhe':function(_0x4cbfa7,_0x4852a1){return _0x4cbfa7+_0x4852a1;},'qNSNl':_0x25fa15(0x933)+'l','ELMQV':function(_0x1dd86d,_0x42c061){return _0x1dd86d+_0x42c061;},'xhfPw':_0x21866a(0x32f),'fiqQq':function(_0x14e7fa,_0x393cb5){return _0x14e7fa(_0x393cb5);},'SeJWC':function(_0x2466aa,_0x1484cb){return _0x2466aa(_0x1484cb);},'IWNTR':_0x429619(0x351)+_0x429619(0x6f2)+_0x21ca55(0x859),'YuSLK':function(_0x497047,_0x226a00){return _0x497047+_0x226a00;},'XOlBb':function(_0x2f9243,_0x5a7d5d){return _0x2f9243(_0x5a7d5d);},'qxOCl':function(_0x3e340d,_0x59e2b9){return _0x3e340d+_0x59e2b9;},'uXVnz':function(_0x227ca7,_0x2b9cb0){return _0x227ca7(_0x2b9cb0);},'bKatc':function(_0xaf4259,_0x44bf23){return _0xaf4259+_0x44bf23;},'kDaTH':function(_0x19a684,_0x1319aa){return _0x19a684+_0x1319aa;},'ONeXv':function(_0x5a3a08,_0x471ea7){return _0x5a3a08+_0x471ea7;},'IrKtm':_0x32dc2b(0x1bd)+_0x21866a(0x615)+_0x21ca55(0x369),'gXaUX':function(_0x10d2a0,_0x555b88){return _0x10d2a0(_0x555b88);},'fgKGF':_0x25fa15(0x3a2)+'rl','INxuF':_0x32dc2b(0x2a9),'ViMGv':function(_0x2a1aa6,_0x84aaf5){return _0x2a1aa6(_0x84aaf5);},'qzoYk':function(_0x3889c2,_0x283a10){return _0x3889c2(_0x283a10);},'sdPcc':function(_0x4eda48,_0x184ff0){return _0x4eda48>=_0x184ff0;},'dzLEW':function(_0x584888,_0x3b53a0){return _0x584888===_0x3b53a0;},'ReeGR':_0x21ca55(0x7b5),'DihXV':_0x21866a(0x794),'SMqyD':function(_0x448a2b,_0x642c39){return _0x448a2b+_0x642c39;},'jZyKj':_0x429619(0x31e)+_0x32dc2b(0xbae)+'l','CLNyK':function(_0x2130f0,_0x6ad516){return _0x2130f0+_0x6ad516;},'fYUtD':_0x32dc2b(0x31e)+_0x21866a(0x7fd),'KyVmg':function(_0x5b8f3d,_0x210fe6){return _0x5b8f3d+_0x210fe6;},'BxTCd':_0x429619(0x7fd)};new_text=_0x3c7d56[_0x429619(0x379)+_0x429619(0x830)]('','(')[_0x25fa15(0x379)+_0x21866a(0x830)]('',')')[_0x21ca55(0x379)+_0x429619(0x830)](':\x20',':')[_0x25fa15(0x379)+_0x429619(0x830)]('',':')[_0x32dc2b(0x379)+_0x32dc2b(0x830)](',\x20',',')[_0x25fa15(0x379)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x5072d3=prompt[_0x25fa15(0x279)+_0x429619(0xaa1)][_0x32dc2b(0x7c2)+'h'];_0x313147[_0x32dc2b(0x9af)](_0x5072d3,0x1f53+0x282*0x3+-0x26d9);--_0x5072d3){if(_0x313147[_0x21ca55(0xb9a)](_0x313147[_0x21ca55(0xd09)],_0x313147[_0x21ca55(0x447)])){const _0x16cf8e=_0x313147[_0x21866a(0x6c4)][_0x32dc2b(0x74a)]('|');let _0x264b4c=0x1f63+-0x1f9a+0x37;while(!![]){switch(_0x16cf8e[_0x264b4c++]){case'0':new_text=new_text[_0x25fa15(0x379)+_0x429619(0x830)](_0x313147[_0x21ca55(0xa42)](_0x313147[_0x21ca55(0xb32)],_0x313147[_0x429619(0xa77)](String,_0x5072d3)),_0x313147[_0x21866a(0xa42)](_0x313147[_0x21866a(0xabb)],_0x313147[_0x21ca55(0x1b4)](String,_0x5072d3)));continue;case'1':new_text=new_text[_0x32dc2b(0x379)+_0x25fa15(0x830)](_0x313147[_0x32dc2b(0x358)](_0x313147[_0x32dc2b(0x2d5)],_0x313147[_0x21866a(0xa77)](String,_0x5072d3)),_0x313147[_0x21866a(0x358)](_0x313147[_0x21ca55(0xabb)],_0x313147[_0x21ca55(0x429)](String,_0x5072d3)));continue;case'2':new_text=new_text[_0x429619(0x379)+_0x21ca55(0x830)](_0x313147[_0x32dc2b(0x3f1)](_0x313147[_0x21866a(0xa98)],_0x313147[_0x429619(0x429)](String,_0x5072d3)),_0x313147[_0x21866a(0x358)](_0x313147[_0x32dc2b(0xabb)],_0x313147[_0x21866a(0xbaa)](String,_0x5072d3)));continue;case'3':new_text=new_text[_0x32dc2b(0x379)+_0x429619(0x830)](_0x313147[_0x429619(0x5bc)](_0x313147[_0x25fa15(0x3f6)],_0x313147[_0x21866a(0x9ca)](String,_0x5072d3)),_0x313147[_0x32dc2b(0x3f1)](_0x313147[_0x429619(0xabb)],_0x313147[_0x21866a(0x3e0)](String,_0x5072d3)));continue;case'4':new_text=new_text[_0x25fa15(0x379)+_0x21ca55(0x830)](_0x313147[_0x21ca55(0x5bc)](_0x313147[_0x21866a(0xb58)],_0x313147[_0x21ca55(0xbaa)](String,_0x5072d3)),_0x313147[_0x21866a(0x358)](_0x313147[_0x32dc2b(0xabb)],_0x313147[_0x429619(0x3e0)](String,_0x5072d3)));continue;case'5':new_text=new_text[_0x32dc2b(0x379)+_0x21866a(0x830)](_0x313147[_0x32dc2b(0x6f3)](_0x313147[_0x21866a(0x3af)],_0x313147[_0x32dc2b(0x429)](String,_0x5072d3)),_0x313147[_0x429619(0x3f1)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x32dc2b(0x9b0)](String,_0x5072d3)));continue;case'6':new_text=new_text[_0x21ca55(0x379)+_0x25fa15(0x830)](_0x313147[_0x21ca55(0xa42)](_0x313147[_0x21866a(0x456)],_0x313147[_0x429619(0x9ca)](String,_0x5072d3)),_0x313147[_0x25fa15(0x5bc)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x25fa15(0xb14)](String,_0x5072d3)));continue;case'7':new_text=new_text[_0x21866a(0x379)+_0x21ca55(0x830)](_0x313147[_0x25fa15(0x3ae)](_0x313147[_0x429619(0x3b5)],_0x313147[_0x429619(0x79f)](String,_0x5072d3)),_0x313147[_0x429619(0x358)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x25fa15(0xb14)](String,_0x5072d3)));continue;case'8':new_text=new_text[_0x25fa15(0x379)+_0x32dc2b(0x830)](_0x313147[_0x21866a(0x49d)](_0x313147[_0x21ca55(0xa50)],_0x313147[_0x25fa15(0x9ca)](String,_0x5072d3)),_0x313147[_0x32dc2b(0xb03)](_0x313147[_0x21866a(0xabb)],_0x313147[_0x429619(0x28d)](String,_0x5072d3)));continue;case'9':new_text=new_text[_0x25fa15(0x379)+_0x429619(0x830)](_0x313147[_0x21866a(0x935)](_0x313147[_0x21866a(0x3ec)],_0x313147[_0x25fa15(0x73f)](String,_0x5072d3)),_0x313147[_0x21866a(0x6a5)](_0x313147[_0x429619(0xabb)],_0x313147[_0x429619(0x3e0)](String,_0x5072d3)));continue;case'10':new_text=new_text[_0x21ca55(0x379)+_0x21866a(0x830)](_0x313147[_0x21866a(0x3ae)](_0x313147[_0x32dc2b(0x967)],_0x313147[_0x21866a(0x429)](String,_0x5072d3)),_0x313147[_0x21866a(0x49d)](_0x313147[_0x32dc2b(0xabb)],_0x313147[_0x21ca55(0xa77)](String,_0x5072d3)));continue;case'11':new_text=new_text[_0x429619(0x379)+_0x32dc2b(0x830)](_0x313147[_0x32dc2b(0x2c8)](_0x313147[_0x429619(0x8b8)],_0x313147[_0x32dc2b(0x1b4)](String,_0x5072d3)),_0x313147[_0x32dc2b(0x2ba)](_0x313147[_0x21ca55(0xabb)],_0x313147[_0x21ca55(0x3e0)](String,_0x5072d3)));continue;case'12':new_text=new_text[_0x25fa15(0x379)+_0x21ca55(0x830)](_0x313147[_0x25fa15(0x935)](_0x313147[_0x32dc2b(0x8fe)],_0x313147[_0x21ca55(0xbb8)](String,_0x5072d3)),_0x313147[_0x21ca55(0x17e)](_0x313147[_0x21866a(0xabb)],_0x313147[_0x429619(0x28d)](String,_0x5072d3)));continue;case'13':new_text=new_text[_0x32dc2b(0x379)+_0x429619(0x830)](_0x313147[_0x21ca55(0x2ba)](_0x313147[_0x32dc2b(0x57a)],_0x313147[_0x32dc2b(0x82b)](String,_0x5072d3)),_0x313147[_0x25fa15(0x5bc)](_0x313147[_0x429619(0xabb)],_0x313147[_0x25fa15(0xbb8)](String,_0x5072d3)));continue;case'14':new_text=new_text[_0x429619(0x379)+_0x429619(0x830)](_0x313147[_0x25fa15(0xa42)](_0x313147[_0x21ca55(0x720)],_0x313147[_0x21ca55(0x9ca)](String,_0x5072d3)),_0x313147[_0x25fa15(0x5bc)](_0x313147[_0x32dc2b(0xabb)],_0x313147[_0x32dc2b(0x73f)](String,_0x5072d3)));continue;case'15':new_text=new_text[_0x21866a(0x379)+_0x32dc2b(0x830)](_0x313147[_0x25fa15(0x68a)](_0x313147[_0x429619(0xce3)],_0x313147[_0x429619(0x429)](String,_0x5072d3)),_0x313147[_0x32dc2b(0x588)](_0x313147[_0x21ca55(0xabb)],_0x313147[_0x429619(0xbb8)](String,_0x5072d3)));continue;case'16':new_text=new_text[_0x21ca55(0x379)+_0x32dc2b(0x830)](_0x313147[_0x21866a(0x729)](_0x313147[_0x21866a(0xa98)],_0x313147[_0x25fa15(0x79f)](String,_0x5072d3)),_0x313147[_0x21ca55(0x729)](_0x313147[_0x21ca55(0xabb)],_0x313147[_0x25fa15(0xbb8)](String,_0x5072d3)));continue;case'17':new_text=new_text[_0x21ca55(0x379)+_0x21866a(0x830)](_0x313147[_0x21ca55(0x729)](_0x313147[_0x32dc2b(0xbb2)],_0x313147[_0x429619(0x3e0)](String,_0x5072d3)),_0x313147[_0x21ca55(0x7ac)](_0x313147[_0x21866a(0xabb)],_0x313147[_0x21866a(0xbaa)](String,_0x5072d3)));continue;case'18':new_text=new_text[_0x21ca55(0x379)+_0x21866a(0x830)](_0x313147[_0x21866a(0x7ac)](_0x313147[_0x32dc2b(0xad4)],_0x313147[_0x21ca55(0x89f)](String,_0x5072d3)),_0x313147[_0x21ca55(0xa42)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x429619(0x716)](String,_0x5072d3)));continue;case'19':new_text=new_text[_0x21866a(0x379)+_0x32dc2b(0x830)](_0x313147[_0x25fa15(0x358)](_0x313147[_0x429619(0x702)],_0x313147[_0x25fa15(0xbaa)](String,_0x5072d3)),_0x313147[_0x429619(0x9d1)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x21866a(0x276)](String,_0x5072d3)));continue;case'20':new_text=new_text[_0x32dc2b(0x379)+_0x429619(0x830)](_0x313147[_0x21866a(0x6bc)](_0x313147[_0x32dc2b(0xa50)],_0x313147[_0x21866a(0x82f)](String,_0x5072d3)),_0x313147[_0x25fa15(0x3d8)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x21866a(0x276)](String,_0x5072d3)));continue;case'21':new_text=new_text[_0x429619(0x379)+_0x429619(0x830)](_0x313147[_0x32dc2b(0xaeb)](_0x313147[_0x21ca55(0x3af)],_0x313147[_0x21866a(0xb14)](String,_0x5072d3)),_0x313147[_0x429619(0xba3)](_0x313147[_0x32dc2b(0xabb)],_0x313147[_0x25fa15(0x89f)](String,_0x5072d3)));continue;case'22':new_text=new_text[_0x429619(0x379)+_0x429619(0x830)](_0x313147[_0x21866a(0x68a)](_0x313147[_0x429619(0x815)],_0x313147[_0x25fa15(0x93e)](String,_0x5072d3)),_0x313147[_0x25fa15(0x6f3)](_0x313147[_0x21ca55(0xabb)],_0x313147[_0x32dc2b(0x73f)](String,_0x5072d3)));continue;case'23':new_text=new_text[_0x21866a(0x379)+_0x25fa15(0x830)](_0x313147[_0x429619(0x2ba)](_0x313147[_0x25fa15(0xb17)],_0x313147[_0x429619(0xa77)](String,_0x5072d3)),_0x313147[_0x25fa15(0x358)](_0x313147[_0x32dc2b(0xabb)],_0x313147[_0x21ca55(0x1b4)](String,_0x5072d3)));continue;case'24':new_text=new_text[_0x25fa15(0x379)+_0x21ca55(0x830)](_0x313147[_0x429619(0x17e)](_0x313147[_0x25fa15(0x338)],_0x313147[_0x32dc2b(0xc71)](String,_0x5072d3)),_0x313147[_0x429619(0x3ae)](_0x313147[_0x25fa15(0xabb)],_0x313147[_0x21866a(0x82f)](String,_0x5072d3)));continue;}break;}}else _0xaac2bb+='';}new_text=_0x313147[_0x21ca55(0x72e)](replaceUrlWithFootnote,new_text);for(let _0x4e3a30=prompt[_0x429619(0x279)+_0x429619(0xaa1)][_0x25fa15(0x7c2)+'h'];_0x313147[_0x429619(0x4d7)](_0x4e3a30,0x1f2f+-0xb*-0xb3+-0x26e0);--_0x4e3a30){_0x313147[_0x429619(0x4b9)](_0x313147[_0x429619(0x667)],_0x313147[_0x429619(0x318)])?_0x403eac[_0x25fa15(0x1e1)](_0x313147[_0x429619(0xbfb)],_0x40e2c3):(new_text=new_text[_0x21ca55(0x379)+'ce'](_0x313147[_0x21ca55(0x9ac)](_0x313147[_0x429619(0x44c)],_0x313147[_0x21ca55(0xbb8)](String,_0x4e3a30)),prompt[_0x429619(0x279)+_0x25fa15(0xaa1)][_0x4e3a30]),new_text=new_text[_0x429619(0x379)+'ce'](_0x313147[_0x429619(0x53b)](_0x313147[_0x21866a(0xb1c)],_0x313147[_0x32dc2b(0xa77)](String,_0x4e3a30)),prompt[_0x21ca55(0x279)+_0x32dc2b(0xaa1)][_0x4e3a30]),new_text=new_text[_0x429619(0x379)+'ce'](_0x313147[_0x429619(0x59b)](_0x313147[_0x21ca55(0xa54)],_0x313147[_0x25fa15(0x429)](String,_0x4e3a30)),prompt[_0x21ca55(0x279)+_0x25fa15(0xaa1)][_0x4e3a30]));}return new_text=new_text[_0x21866a(0x379)+_0x429619(0x830)]('[]',''),new_text=new_text[_0x25fa15(0x379)+_0x21866a(0x830)]('((','('),new_text=new_text[_0x21866a(0x379)+_0x429619(0x830)]('))',')'),new_text=new_text[_0x32dc2b(0x379)+_0x429619(0x830)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x4a7fc8=_0x122511,_0x5363c5=_0x4e848e,_0x4adf37=_0x44cb5b,_0x31258e=_0xeae0e,_0x4d72bd=_0x4e848e,_0x1ec22e={'VviOb':function(_0x265f81,_0x1f642c){return _0x265f81!==_0x1f642c;},'ayUoC':_0x4a7fc8(0x6da),'inBlf':function(_0x32f1bf,_0x2807a3){return _0x32f1bf>_0x2807a3;},'cUncP':function(_0x46593d,_0x1043e2){return _0x46593d(_0x1043e2);},'KxIyZ':_0x4a7fc8(0x6c0)+_0x4adf37(0x2dd),'zgGbX':function(_0x2b7912,_0x535d15){return _0x2b7912+_0x535d15;},'oEbQB':_0x5363c5(0x6ba)+_0x5363c5(0x464)+_0x4adf37(0x966)+_0x5363c5(0x7f4)+_0x4adf37(0x1cc)+_0x31258e(0xa97)+_0x4a7fc8(0xcc3)+_0x4adf37(0x70f)+_0x5363c5(0xa2f)+_0x4d72bd(0x4ba)+_0x4adf37(0x4b6),'hpjMX':_0x31258e(0x2fe)+_0x31258e(0x4ab),'BuktF':_0x4d72bd(0xaac)+':','cwAUv':_0x4d72bd(0x490),'YOfMu':_0x4adf37(0x2bb),'vaWUX':_0x4d72bd(0x4b8),'IJsIn':_0x5363c5(0x886),'FHWYS':function(_0x4e2aec,_0x318bbc){return _0x4e2aec+_0x318bbc;},'XZkKE':_0x4adf37(0x6c0),'SrOPo':_0x31258e(0xc53),'niuVB':_0x5363c5(0xcf2)+'','soYns':_0x4a7fc8(0x17b)+_0x4d72bd(0xcd6)+_0x5363c5(0x232)+_0x4a7fc8(0x52c)+_0x4d72bd(0x3ba)+_0x4a7fc8(0x411)+_0x31258e(0x8ef)+_0x4adf37(0x19d)+_0x4d72bd(0x738)+_0x4d72bd(0x6fc)+_0x31258e(0x9fc)+_0x4a7fc8(0x640)+_0x4a7fc8(0x9a5),'AoChT':function(_0x46a41e,_0x4ebba8){return _0x46a41e!=_0x4ebba8;},'Knbvl':function(_0x51b876,_0x4d64f1,_0x3456dd){return _0x51b876(_0x4d64f1,_0x3456dd);},'WzxCT':_0x4adf37(0x31e)+_0x4adf37(0x78a)+_0x31258e(0x586)+_0x4adf37(0x688)+_0x31258e(0x977)+_0x5363c5(0x798)},_0xc73842={'method':_0x1ec22e[_0x4adf37(0x3ea)],'headers':headers,'body':_0x1ec22e[_0x4adf37(0xab4)](b64EncodeUnicode,JSON[_0x31258e(0x5e3)+_0x4d72bd(0x75a)]({'messages':[{'role':_0x1ec22e[_0x5363c5(0x297)],'content':_0x1ec22e[_0x4adf37(0xbf8)](_0x1ec22e[_0x4a7fc8(0xbf8)](_0x1ec22e[_0x4a7fc8(0xbf8)](_0x1ec22e[_0x4a7fc8(0x90b)](document[_0x4a7fc8(0x938)+_0x31258e(0x502)+_0x4d72bd(0x1dd)](_0x1ec22e[_0x5363c5(0x8dd)])[_0x5363c5(0xabd)+_0x5363c5(0x18e)][_0x5363c5(0x379)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x4d72bd(0x379)+'ce'](/<hr.*/gs,'')[_0x4adf37(0x379)+'ce'](/<[^>]+>/g,'')[_0x4d72bd(0x379)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x1ec22e[_0x4d72bd(0xad8)]),original_search_query),_0x1ec22e[_0x4adf37(0xbc3)])},{'role':_0x1ec22e[_0x4a7fc8(0x297)],'content':_0x1ec22e[_0x4adf37(0x2de)]}][_0x4d72bd(0x46c)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x1ec22e[_0x4d72bd(0xbe8)](document[_0x4a7fc8(0x938)+_0x31258e(0x502)+_0x5363c5(0x1dd)](_0x1ec22e[_0x31258e(0xb44)])[_0x4d72bd(0xabd)+_0x31258e(0x18e)],''))return;_0x1ec22e[_0x5363c5(0xc0e)](fetch,_0x1ec22e[_0x31258e(0x953)],_0xc73842)[_0x31258e(0x91b)](_0x5cf7c2=>_0x5cf7c2[_0x31258e(0x939)]())[_0x4d72bd(0x91b)](_0x2ad35d=>{const _0x4fa956=_0x31258e,_0xe9820b=_0x4d72bd,_0x199e48=_0x4d72bd,_0xa1da26=_0x4a7fc8,_0x59ef78=_0x4adf37,_0x553ab4={};_0x553ab4[_0x4fa956(0xa23)]=_0x1ec22e[_0xe9820b(0xb9b)];const _0x37b18a=_0x553ab4;_0x1ec22e[_0x199e48(0x945)](_0x1ec22e[_0xa1da26(0x764)],_0x1ec22e[_0x4fa956(0x618)])?JSON[_0x59ef78(0x245)](_0x2ad35d[_0x59ef78(0x676)+'es'][0x16f9+0x145f+-0x2b58][_0xe9820b(0x6d1)+'ge'][_0x4fa956(0x8bd)+'nt'][_0xe9820b(0x379)+_0x199e48(0x830)]('\x0a',''))[_0xa1da26(0xcba)+'ch'](_0x452d91=>{const _0x48c407=_0xe9820b,_0x1013a4=_0x4fa956,_0xc85724=_0x4fa956,_0x4b6eec=_0xa1da26,_0x20818d=_0xe9820b;if(_0x1ec22e[_0x48c407(0x945)](_0x1ec22e[_0x1013a4(0x58e)],_0x1ec22e[_0x48c407(0x58e)]))return![];else{if(_0x1ec22e[_0xc85724(0xcb0)](_0x1ec22e[_0x4b6eec(0xab4)](String,_0x452d91)[_0x4b6eec(0x7c2)+'h'],0xad7*-0x2+-0x251a+0x3acd))document[_0x1013a4(0x938)+_0x48c407(0x502)+_0x48c407(0x1dd)](_0x1ec22e[_0x4b6eec(0xb44)])[_0x48c407(0xabd)+_0x20818d(0x18e)]+=_0x1ec22e[_0x4b6eec(0xbf8)](_0x1ec22e[_0x48c407(0xbf8)](_0x1ec22e[_0x4b6eec(0x829)],_0x1ec22e[_0x4b6eec(0xab4)](String,_0x452d91)),_0x1ec22e[_0x20818d(0xb21)]);}}):_0x541644[_0x59ef78(0x1e1)](_0x37b18a[_0x199e48(0xa23)],_0x37360f);})[_0x31258e(0xb18)](_0x20ae62=>console[_0x4adf37(0x1e1)](_0x20ae62)),chatTextRawPlusComment=_0x1ec22e[_0x4a7fc8(0x90b)](chatTextRaw,'\x0a\x0a'),text_offset=-(-0x1d93+0x4*-0x4d2+-0x6a*-0x76);}let chatTextRaw='',text_offset=-(0x1847+-0x1d*0x11a+0x7ac);const _0xfda1ca={};_0xfda1ca[_0x44cb5b(0x855)+_0x122511(0xc35)+'pe']=_0xeae0e(0xcd2)+_0x1317da(0x2ac)+_0x44cb5b(0x5b3)+'n';const headers=_0xfda1ca;let prompt=JSON[_0x122511(0x245)](atob(document[_0x122511(0x938)+_0x122511(0x502)+_0x4e848e(0x1dd)](_0x1317da(0x423)+'pt')[_0x4e848e(0xb69)+_0x44cb5b(0x5c6)+'t']));chatTextRawIntro='',text_offset=-(-0x1fd3+0xdcf+0x1205);const _0x4d2355={};_0x4d2355[_0x44cb5b(0x3df)]=_0x1317da(0x58c)+'m',_0x4d2355[_0x44cb5b(0x8bd)+'nt']=_0x44cb5b(0x929)+_0x1317da(0xc3e)+_0x44cb5b(0x606)+_0xeae0e(0xccb)+_0x44cb5b(0x21a)+_0x1317da(0x292)+original_search_query+(_0x4e848e(0xc01)+_0x1317da(0x42b)+_0xeae0e(0xc15)+'');const _0x591c66={};_0x591c66[_0x122511(0x3df)]=_0x44cb5b(0x886),_0x591c66[_0x122511(0x8bd)+'nt']=_0xeae0e(0x996)+_0x122511(0x4f2)+_0x122511(0xd06)+_0x1317da(0x299)+_0x44cb5b(0x988)+'';const optionsIntro={'method':_0x44cb5b(0x4b8),'headers':headers,'body':b64EncodeUnicode(JSON[_0x1317da(0x5e3)+_0x1317da(0x75a)]({'messages':[_0x4d2355,_0x591c66][_0x4e848e(0x46c)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x4e848e(0x31e)+_0xeae0e(0x78a)+_0x1317da(0x586)+_0x44cb5b(0x688)+_0x122511(0x977)+_0xeae0e(0x798),optionsIntro)[_0xeae0e(0x91b)](_0x21fc01=>{const _0x51e824=_0xeae0e,_0x15b12d=_0xeae0e,_0x17ada0=_0x4e848e,_0x1a8cd5=_0x4e848e,_0xa8b3=_0x1317da,_0x11fb0e={'iUrae':_0x51e824(0xaac)+':','nfSGq':_0x51e824(0x3c7),'PGiJN':function(_0x1fad80,_0x515f28){return _0x1fad80>_0x515f28;},'hycxO':function(_0x1e5faa,_0x15fb03){return _0x1e5faa==_0x15fb03;},'fJxSU':_0x17ada0(0x892)+']','XbWtn':_0x15b12d(0x4b8),'ocVNO':function(_0x436f48,_0x21dc41){return _0x436f48(_0x21dc41);},'GTFSh':function(_0x2416a9,_0x1b279d,_0x4ed04b){return _0x2416a9(_0x1b279d,_0x4ed04b);},'KVCOt':_0x51e824(0x31e)+_0x51e824(0x78a)+_0x15b12d(0x586)+_0xa8b3(0x688)+_0x1a8cd5(0x977)+_0x17ada0(0x798),'STbeJ':function(_0xfa4cc2,_0xc99247){return _0xfa4cc2+_0xc99247;},'CJMjK':_0xa8b3(0x676)+'es','JDRpN':function(_0x4c2ffb,_0x3c1d75){return _0x4c2ffb>_0x3c1d75;},'XVDsr':function(_0x3ee1d2,_0xa1d02d,_0x4fbc42){return _0x3ee1d2(_0xa1d02d,_0x4fbc42);},'PdsMj':function(_0x27f518,_0x4c738b){return _0x27f518(_0x4c738b);},'drzEu':function(_0x5a4211,_0x4400a1){return _0x5a4211+_0x4400a1;},'UoPrh':_0x17ada0(0x47b)+_0x51e824(0x409),'mDyKJ':_0xa8b3(0x6c0)+_0x51e824(0xa25),'CNMhE':_0x51e824(0x4e1)+_0x17ada0(0x894),'FppoM':_0x17ada0(0x886),'tddvN':_0x51e824(0x6c0)+_0x15b12d(0x991)+'t','xKixP':_0x1a8cd5(0xb3a)+_0x1a8cd5(0x1fb),'MMZWn':function(_0x47ebb1,_0x201ed9){return _0x47ebb1(_0x201ed9);},'AbXXa':_0x51e824(0x9df)+_0xa8b3(0xcd7),'IRfGP':function(_0xcb47fd,_0x3f2b15){return _0xcb47fd===_0x3f2b15;},'DuBND':_0x1a8cd5(0x2fd),'fRGam':function(_0xa5941f,_0x45a180){return _0xa5941f>_0x45a180;},'hqRRB':function(_0xe95a91,_0x4dbdaf){return _0xe95a91==_0x4dbdaf;},'GnkBx':function(_0x56eded,_0x165c60){return _0x56eded!==_0x165c60;},'yPsmX':_0x15b12d(0x17f),'xmTHX':_0x51e824(0x20d),'BFHun':_0x1a8cd5(0x59d)+_0x17ada0(0xcf8),'gNGYR':function(_0x1866c3){return _0x1866c3();},'XQXlA':_0x17ada0(0x47b)+_0x15b12d(0x7fc),'CiBkw':_0x1a8cd5(0x47b)+_0xa8b3(0x59a)+_0x15b12d(0xc40),'hivgS':_0xa8b3(0x776),'GeoTZ':_0x15b12d(0x54e),'sUEVK':_0x15b12d(0x439),'nhNbn':_0xa8b3(0x92f),'DmyZx':_0x17ada0(0xb84),'ISRkk':_0x15b12d(0x43b),'PNMzt':_0x1a8cd5(0x56d),'rFcuw':function(_0x3bc96b,_0x28a917,_0x5089ee){return _0x3bc96b(_0x28a917,_0x5089ee);},'xCiRA':_0x15b12d(0x569),'svdpk':_0x51e824(0x39d),'eUAqL':_0x15b12d(0x5bd),'UtWXA':_0x17ada0(0x695),'LePrQ':_0x1a8cd5(0x6c0)+_0x1a8cd5(0x2dd),'odorH':_0x51e824(0x6c0),'lMWGO':function(_0x4e3af8,_0xbe5b4e){return _0x4e3af8+_0xbe5b4e;},'avgwi':_0x15b12d(0x917)+'','XbvSF':_0xa8b3(0x42e)+_0x15b12d(0x8bb)+_0x1a8cd5(0x380)+_0x17ada0(0xa5e)+_0x15b12d(0x451)+_0xa8b3(0x1f1)+_0x17ada0(0x910)+_0x51e824(0xc5b)},_0x27c88a=_0x21fc01[_0x15b12d(0x61f)][_0x15b12d(0x516)+_0x1a8cd5(0x69d)]();let _0x2e936e='',_0x6b943c='';_0x27c88a[_0x51e824(0x6e5)]()[_0x15b12d(0x91b)](function _0x539078({done:_0x54c789,value:_0x20cbe3}){const _0xdf04b6=_0xa8b3,_0x4a8540=_0x15b12d,_0xf7d87=_0x1a8cd5,_0x3d1737=_0x17ada0,_0x276335=_0x17ada0,_0x839060={'eqvQU':_0x11fb0e[_0xdf04b6(0xa2a)],'BRSJW':function(_0x2a77d5,_0xbccf5f){const _0x487e96=_0xdf04b6;return _0x11fb0e[_0x487e96(0x287)](_0x2a77d5,_0xbccf5f);},'ZamBv':_0x11fb0e[_0xdf04b6(0x99a)],'wYaex':_0x11fb0e[_0x4a8540(0x54c)],'UGlKT':_0x11fb0e[_0x3d1737(0xcca)],'eVCzJ':_0x11fb0e[_0xdf04b6(0x679)],'cEQEV':_0x11fb0e[_0x276335(0xacd)],'TZifh':function(_0x17f899,_0x59a6cf){const _0x4118a0=_0x3d1737;return _0x11fb0e[_0x4118a0(0x198)](_0x17f899,_0x59a6cf);},'hlLaJ':_0x11fb0e[_0x4a8540(0x86d)],'dZfsW':function(_0x5773d5,_0x1c5e39){const _0x328ab9=_0xf7d87;return _0x11fb0e[_0x328ab9(0x46d)](_0x5773d5,_0x1c5e39);},'mqiYZ':_0x11fb0e[_0x3d1737(0x7a0)],'xgAnE':function(_0x34b3a5,_0x14e6a8){const _0x3ba56b=_0x4a8540;return _0x11fb0e[_0x3ba56b(0x770)](_0x34b3a5,_0x14e6a8);},'MBfoV':function(_0x4b514c,_0x4d87af){const _0x46aa55=_0x4a8540;return _0x11fb0e[_0x46aa55(0x332)](_0x4b514c,_0x4d87af);},'DFBxe':_0x11fb0e[_0x4a8540(0x657)],'rfxbU':function(_0x139284,_0x36ba70){const _0x422fc0=_0x3d1737;return _0x11fb0e[_0x422fc0(0x525)](_0x139284,_0x36ba70);},'edxYa':_0x11fb0e[_0x276335(0x23f)],'ONzdz':_0x11fb0e[_0x276335(0xa7d)],'VxuXx':_0x11fb0e[_0x3d1737(0x3cc)],'ApthK':function(_0x10486d){const _0x5b901b=_0xf7d87;return _0x11fb0e[_0x5b901b(0xa08)](_0x10486d);},'FtIsB':_0x11fb0e[_0x3d1737(0x883)],'JOAsJ':_0x11fb0e[_0x276335(0xd02)],'WXVTp':_0x11fb0e[_0x3d1737(0x43f)],'oFXtw':_0x11fb0e[_0x276335(0xab8)],'xWDmd':_0x11fb0e[_0xdf04b6(0x6f8)],'htZgp':_0x11fb0e[_0x276335(0x8bf)],'ZlDGC':_0x11fb0e[_0x3d1737(0x924)],'qRaIV':_0x11fb0e[_0x276335(0x95b)],'VnbPC':_0x11fb0e[_0xf7d87(0xa8e)],'hwILG':function(_0x3915ba,_0x52c554,_0x5b7332){const _0x1c3b4d=_0x3d1737;return _0x11fb0e[_0x1c3b4d(0xb0c)](_0x3915ba,_0x52c554,_0x5b7332);},'fZSQG':_0x11fb0e[_0xf7d87(0x7cb)],'CsNPS':_0x11fb0e[_0xdf04b6(0x210)],'YOIYO':_0x11fb0e[_0x3d1737(0xb76)],'xLrtY':_0x11fb0e[_0xdf04b6(0x561)],'ZRdTn':_0x11fb0e[_0x4a8540(0xbe5)],'momoX':_0x11fb0e[_0x276335(0x99b)],'nfGBe':_0x11fb0e[_0xf7d87(0x627)],'nPtxy':function(_0x1fc897,_0x572a51){const _0xf51d95=_0x3d1737;return _0x11fb0e[_0xf51d95(0x2b1)](_0x1fc897,_0x572a51);},'rUcys':_0x11fb0e[_0x4a8540(0x955)],'klEmQ':function(_0x2421e9,_0x1b74ef){const _0x1ca90b=_0xdf04b6;return _0x11fb0e[_0x1ca90b(0xa5b)](_0x2421e9,_0x1b74ef);},'JACFo':_0x11fb0e[_0x3d1737(0x81b)],'snqfl':_0x11fb0e[_0xf7d87(0x668)],'Egdcu':_0x11fb0e[_0x276335(0x1de)],'VNsMP':_0x11fb0e[_0x276335(0xad5)]};if(_0x54c789)return;const _0x56c237=new TextDecoder(_0x11fb0e[_0x3d1737(0x561)])[_0x276335(0x55a)+'e'](_0x20cbe3);return _0x56c237[_0xf7d87(0xbcb)]()[_0xf7d87(0x74a)]('\x0a')[_0xdf04b6(0xcba)+'ch'](function(_0x4dc9a9){const _0x19e88a=_0xdf04b6,_0x59055a=_0x276335,_0x13a88b=_0x276335,_0x68e2db=_0xdf04b6,_0x4146b1=_0xdf04b6,_0x15d6ef={};_0x15d6ef[_0x19e88a(0x2b4)]=_0x11fb0e[_0x59055a(0xad5)],_0x15d6ef[_0x59055a(0x5cc)]=_0x11fb0e[_0x19e88a(0x561)];const _0x1bdb82=_0x15d6ef;_0x2e936e='';if(_0x11fb0e[_0x4146b1(0x856)](_0x4dc9a9[_0x19e88a(0x7c2)+'h'],0x1ea3+0x7*-0x544+0x29*0x27))_0x2e936e=_0x4dc9a9[_0x59055a(0x7fb)](0xd*0x123+-0x82*-0x25+-0x218b*0x1);if(_0x11fb0e[_0x19e88a(0x9bf)](_0x2e936e,_0x11fb0e[_0x13a88b(0x657)])){text_offset=-(-0x109f*0x2+0xf14+0x122b);const _0x3cae41={'method':_0x11fb0e[_0x68e2db(0x627)],'headers':headers,'body':_0x11fb0e[_0x68e2db(0x2b1)](b64EncodeUnicode,JSON[_0x59055a(0x5e3)+_0x19e88a(0x75a)](prompt[_0x68e2db(0x77a)]))};_0x11fb0e[_0x19e88a(0x8c0)](fetch,_0x11fb0e[_0x68e2db(0x1de)],_0x3cae41)[_0x19e88a(0x91b)](_0x339429=>{const _0x280502=_0x68e2db,_0x38d93a=_0x68e2db,_0x486011=_0x59055a,_0x5a2741=_0x68e2db,_0x4454d0=_0x4146b1,_0x27e82a={'XtYAa':_0x839060[_0x280502(0x9d8)],'CamoW':function(_0x1c0976,_0x3c0c61){const _0xc83156=_0x280502;return _0x839060[_0xc83156(0x985)](_0x1c0976,_0x3c0c61);},'GtDod':_0x839060[_0x280502(0x3be)],'YsZqJ':_0x839060[_0x38d93a(0x275)],'aOvBN':_0x839060[_0x38d93a(0x1ec)],'oKJmT':_0x839060[_0x38d93a(0x2d8)],'srJyB':_0x839060[_0x38d93a(0xc7e)],'VgAXC':function(_0x48010b,_0x59cd5b){const _0x40d798=_0x38d93a;return _0x839060[_0x40d798(0xc7c)](_0x48010b,_0x59cd5b);},'keVKU':_0x839060[_0x4454d0(0x94f)],'bMcyU':function(_0x54231d,_0x2c7e77){const _0x50b757=_0x486011;return _0x839060[_0x50b757(0xac0)](_0x54231d,_0x2c7e77);},'REgPh':_0x839060[_0x486011(0x8f8)],'gzNtU':function(_0x568fca,_0x2d468a){const _0x395113=_0x486011;return _0x839060[_0x395113(0x80d)](_0x568fca,_0x2d468a);},'ueBtE':function(_0x5dbc51,_0x40d29c){const _0x3d686e=_0x38d93a;return _0x839060[_0x3d686e(0x725)](_0x5dbc51,_0x40d29c);},'phfYq':_0x839060[_0x4454d0(0x6d3)],'LLvoC':function(_0x588664,_0x436011){const _0x494394=_0x280502;return _0x839060[_0x494394(0x799)](_0x588664,_0x436011);},'KzxcY':_0x839060[_0x4454d0(0x8de)],'oAUxi':_0x839060[_0x5a2741(0x216)],'qIqUd':_0x839060[_0x38d93a(0xc93)],'zNJqS':function(_0x4d57d8){const _0x1ab5a6=_0x486011;return _0x839060[_0x1ab5a6(0xb73)](_0x4d57d8);},'bGDLu':_0x839060[_0x38d93a(0x88e)],'jITRB':_0x839060[_0x486011(0x334)],'cDmvM':_0x839060[_0x38d93a(0x85b)],'EXALG':_0x839060[_0x4454d0(0xa32)],'PHLGy':_0x839060[_0x486011(0x221)],'DkUMr':_0x839060[_0x486011(0xcb7)],'jNHPD':_0x839060[_0x486011(0x1f7)],'AyZZI':_0x839060[_0x5a2741(0x2df)],'QxxcE':_0x839060[_0x5a2741(0x38c)],'pqNGS':function(_0x2100c8,_0x18cf5a,_0x29e1c5){const _0x2fa720=_0x486011;return _0x839060[_0x2fa720(0x327)](_0x2100c8,_0x18cf5a,_0x29e1c5);},'xHCGo':_0x839060[_0x280502(0x950)],'ZorEc':_0x839060[_0x486011(0x3ce)],'hmENk':_0x839060[_0x280502(0x35e)],'cpyuo':_0x839060[_0x38d93a(0x53a)],'jYnAw':_0x839060[_0x280502(0xbf4)],'UfRFr':function(_0x321b94,_0x39415e){const _0x59fda4=_0x38d93a;return _0x839060[_0x59fda4(0x725)](_0x321b94,_0x39415e);},'LxPuU':_0x839060[_0x4454d0(0x311)],'vEtVY':function(_0x47f32c){const _0xfaee9c=_0x4454d0;return _0x839060[_0xfaee9c(0xb73)](_0x47f32c);},'UZEAm':_0x839060[_0x4454d0(0x8a4)],'FrMMi':function(_0x65c994,_0x26bdf1){const _0x6ac6e7=_0x5a2741;return _0x839060[_0x6ac6e7(0x7f9)](_0x65c994,_0x26bdf1);},'xiMFX':_0x839060[_0x38d93a(0x28c)],'opPDT':function(_0x4c0d96,_0x2e7877){const _0x7f663a=_0x280502;return _0x839060[_0x7f663a(0x8fc)](_0x4c0d96,_0x2e7877);},'XCjGv':_0x839060[_0x5a2741(0x4d4)],'jArVR':_0x839060[_0x5a2741(0x562)],'JqBPU':_0x839060[_0x280502(0x86f)],'quWOi':function(_0x200f81,_0x7031de){const _0x3b95bd=_0x486011;return _0x839060[_0x3b95bd(0x80d)](_0x200f81,_0x7031de);},'RqydL':function(_0x4bb16f,_0x4c8149,_0x3c4a17){const _0x4cdd7f=_0x486011;return _0x839060[_0x4cdd7f(0x327)](_0x4bb16f,_0x4c8149,_0x3c4a17);}},_0x2d50d4=_0x339429[_0x280502(0x61f)][_0x38d93a(0x516)+_0x5a2741(0x69d)]();let _0x1916aa='',_0x55c1b1='';_0x2d50d4[_0x4454d0(0x6e5)]()[_0x280502(0x91b)](function _0x1f8074({done:_0x3c494b,value:_0x4cb44e}){const _0x1d5216=_0x38d93a,_0x2e1577=_0x486011,_0x3b5afd=_0x486011,_0x57aa55=_0x38d93a,_0x421f01=_0x38d93a,_0xa69fd3={};_0xa69fd3[_0x1d5216(0x8bc)]=_0x1bdb82[_0x1d5216(0x2b4)];const _0x36dd8e=_0xa69fd3;if(_0x3c494b)return;const _0x4e014b=new TextDecoder(_0x1bdb82[_0x3b5afd(0x5cc)])[_0x3b5afd(0x55a)+'e'](_0x4cb44e);return _0x4e014b[_0x2e1577(0xbcb)]()[_0x3b5afd(0x74a)]('\x0a')[_0x421f01(0xcba)+'ch'](function(_0x2ed867){const _0x13b2ba=_0x3b5afd,_0x38cf7f=_0x421f01,_0x377ea8=_0x2e1577,_0x4fafaf=_0x421f01,_0x4802a2=_0x3b5afd,_0x320b4a={'jYyEU':_0x27e82a[_0x13b2ba(0xa4f)],'agQUc':function(_0x241e88,_0x192fc1){const _0x4bcb03=_0x13b2ba;return _0x27e82a[_0x4bcb03(0xa02)](_0x241e88,_0x192fc1);},'uKJNF':_0x27e82a[_0x13b2ba(0xbf1)],'KNZCd':_0x27e82a[_0x377ea8(0x212)],'GwVPv':_0x27e82a[_0x13b2ba(0x476)],'MMpQa':_0x27e82a[_0x4fafaf(0xa9d)],'owyxz':_0x27e82a[_0x4fafaf(0xbab)],'oqhOs':function(_0x59dac4,_0x2ae07c){const _0x448e63=_0x377ea8;return _0x27e82a[_0x448e63(0x520)](_0x59dac4,_0x2ae07c);},'fqwHw':_0x27e82a[_0x377ea8(0xcac)],'NYQEJ':function(_0x3b4e9e,_0x3f47a2){const _0x23817a=_0x377ea8;return _0x27e82a[_0x23817a(0x76e)](_0x3b4e9e,_0x3f47a2);},'BqziS':_0x27e82a[_0x377ea8(0x3da)],'niNGo':function(_0x52e55a,_0x45feb8){const _0x547c6c=_0x377ea8;return _0x27e82a[_0x547c6c(0x88a)](_0x52e55a,_0x45feb8);},'iYpzu':function(_0x1a091c,_0xf2186){const _0x4cbdac=_0x4802a2;return _0x27e82a[_0x4cbdac(0x182)](_0x1a091c,_0xf2186);},'ldChR':_0x27e82a[_0x377ea8(0x5d6)],'dOHJr':function(_0x590b58,_0x300bdc){const _0x13dbd6=_0x4fafaf;return _0x27e82a[_0x13dbd6(0xc32)](_0x590b58,_0x300bdc);},'NNcsw':_0x27e82a[_0x38cf7f(0x2e5)],'rlpur':_0x27e82a[_0x4fafaf(0x564)],'gnREi':_0x27e82a[_0x377ea8(0x34a)],'kNJVv':function(_0x396fc3){const _0x17dd3b=_0x4802a2;return _0x27e82a[_0x17dd3b(0xb2f)](_0x396fc3);},'OpHNE':_0x27e82a[_0x4802a2(0xd01)],'afVNK':_0x27e82a[_0x4802a2(0xbe0)],'bDTso':_0x27e82a[_0x4802a2(0x7f0)],'BvFXH':_0x27e82a[_0x4802a2(0xa82)],'kWgXm':_0x27e82a[_0x377ea8(0xa27)],'MCyiY':_0x27e82a[_0x377ea8(0x843)],'hrHea':_0x27e82a[_0x38cf7f(0xb91)],'hhKYj':_0x27e82a[_0x38cf7f(0x426)],'PMbAD':_0x27e82a[_0x377ea8(0x452)],'qnYPp':function(_0xc4de63,_0x5e0184,_0x1ecd53){const _0x2d8e49=_0x4802a2;return _0x27e82a[_0x2d8e49(0x7bd)](_0xc4de63,_0x5e0184,_0x1ecd53);},'HInUp':_0x27e82a[_0x4802a2(0xbca)],'NatuL':_0x27e82a[_0x4fafaf(0x56c)],'qNIbG':_0x27e82a[_0x38cf7f(0x290)],'CwsTT':_0x27e82a[_0x377ea8(0x8ce)],'yEeTD':function(_0x111d2e,_0x2aa461){const _0x48a8c1=_0x4fafaf;return _0x27e82a[_0x48a8c1(0xc32)](_0x111d2e,_0x2aa461);},'poTBv':_0x27e82a[_0x13b2ba(0xa06)]};_0x1916aa='';if(_0x27e82a[_0x13b2ba(0x88a)](_0x2ed867[_0x4802a2(0x7c2)+'h'],-0xef2+0x2419+0x259*-0x9))_0x1916aa=_0x2ed867[_0x13b2ba(0x7fb)](-0xf*0x24e+0xa05*0x3+0x489);if(_0x27e82a[_0x377ea8(0x4af)](_0x1916aa,_0x27e82a[_0x38cf7f(0x5d6)])){document[_0x4fafaf(0x938)+_0x4fafaf(0x502)+_0x13b2ba(0x1dd)](_0x27e82a[_0x13b2ba(0x72b)])[_0x4802a2(0xabd)+_0x4fafaf(0x18e)]='',_0x27e82a[_0x4fafaf(0xbb0)](chatmore);const _0x5c2ce3={'method':_0x27e82a[_0x13b2ba(0x253)],'headers':headers,'body':_0x27e82a[_0x4fafaf(0xa66)](b64EncodeUnicode,JSON[_0x4fafaf(0x5e3)+_0x13b2ba(0x75a)]({'messages':[{'role':_0x27e82a[_0x4802a2(0xbab)],'content':_0x27e82a[_0x4802a2(0xa02)](document[_0x13b2ba(0x938)+_0x4802a2(0x502)+_0x13b2ba(0x1dd)](_0x27e82a[_0x38cf7f(0xa38)])[_0x4fafaf(0xabd)+_0x4802a2(0x18e)][_0x4fafaf(0x379)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x13b2ba(0x379)+'ce'](/<hr.*/gs,'')[_0x4802a2(0x379)+'ce'](/<[^>]+>/g,'')[_0x38cf7f(0x379)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x27e82a[_0x377ea8(0x476)],'content':_0x27e82a[_0x4802a2(0xa02)](_0x27e82a[_0x38cf7f(0x638)](_0x27e82a[_0x4fafaf(0x58b)],original_search_query),_0x27e82a[_0x13b2ba(0xb2e)])}][_0x4802a2(0x46c)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x27e82a[_0x13b2ba(0x7bd)](fetch,_0x27e82a[_0x38cf7f(0x98e)],_0x5c2ce3)[_0x377ea8(0x91b)](_0x46905f=>{const _0x31371c=_0x377ea8,_0x533afc=_0x377ea8,_0x23bfd6=_0x38cf7f,_0x3c2e10=_0x13b2ba,_0x4adb7d=_0x13b2ba,_0x50451e={'XvxMY':_0x320b4a[_0x31371c(0x973)],'LKcOi':function(_0xe4adf4,_0x2442eb){const _0xa81ffb=_0x31371c;return _0x320b4a[_0xa81ffb(0x542)](_0xe4adf4,_0x2442eb);},'EVhNR':_0x320b4a[_0x533afc(0x50d)],'Dsfii':_0x320b4a[_0x31371c(0x773)],'msMOZ':_0x320b4a[_0x3c2e10(0xb46)],'MvXvA':_0x320b4a[_0x31371c(0x9fa)],'YOSKh':_0x320b4a[_0x31371c(0xb71)],'hqXaX':function(_0x5cd6dc,_0x2ca2b9){const _0x22407e=_0x3c2e10;return _0x320b4a[_0x22407e(0x68f)](_0x5cd6dc,_0x2ca2b9);},'ENDRp':_0x320b4a[_0x4adb7d(0x818)],'KtdJS':function(_0xac640b,_0x59de5d){const _0x5817f6=_0x4adb7d;return _0x320b4a[_0x5817f6(0x542)](_0xac640b,_0x59de5d);},'OEbaE':function(_0x56d746,_0x4478cd){const _0xe94eb=_0x31371c;return _0x320b4a[_0xe94eb(0xaae)](_0x56d746,_0x4478cd);},'OonbI':_0x320b4a[_0x23bfd6(0x897)],'JCszR':function(_0x3be565,_0x58e3d9){const _0x25e91b=_0x31371c;return _0x320b4a[_0x25e91b(0x2d4)](_0x3be565,_0x58e3d9);},'FpaxU':function(_0x48862e,_0x4d2da3){const _0x464035=_0x533afc;return _0x320b4a[_0x464035(0x1ab)](_0x48862e,_0x4d2da3);},'Wocxu':_0x320b4a[_0x4adb7d(0x554)],'dXtnu':function(_0x5b465b,_0x4ccd60){const _0x5b5af6=_0x4adb7d;return _0x320b4a[_0x5b5af6(0xce8)](_0x5b465b,_0x4ccd60);},'uVwvR':_0x320b4a[_0x31371c(0x758)],'JnoRB':_0x320b4a[_0x23bfd6(0xa21)],'lXXid':_0x320b4a[_0x533afc(0x337)],'RSZyZ':function(_0x3634a9){const _0x300046=_0x23bfd6;return _0x320b4a[_0x300046(0xc29)](_0x3634a9);},'ULZGS':_0x320b4a[_0x533afc(0x315)],'XQIXf':_0x320b4a[_0x31371c(0x555)],'AVZcR':_0x320b4a[_0x23bfd6(0x364)],'QrXod':_0x320b4a[_0x31371c(0x7e6)],'faoWa':_0x320b4a[_0x533afc(0xa90)],'VRDnB':_0x320b4a[_0x4adb7d(0xa87)],'VzUwF':_0x320b4a[_0x23bfd6(0x50a)],'aOBhQ':_0x320b4a[_0x23bfd6(0x1c9)],'ESKsR':_0x320b4a[_0x533afc(0x424)],'reTBl':function(_0x1faed6,_0x251a8f,_0x8b282a){const _0x99b882=_0x3c2e10;return _0x320b4a[_0x99b882(0x1d8)](_0x1faed6,_0x251a8f,_0x8b282a);},'ErhBQ':_0x320b4a[_0x533afc(0x9d6)],'zRjqm':function(_0x144002,_0x2929f9){const _0x1d51fa=_0x31371c;return _0x320b4a[_0x1d51fa(0xaae)](_0x144002,_0x2929f9);},'KhIlM':_0x320b4a[_0x533afc(0x1ed)],'NAOJA':_0x320b4a[_0x3c2e10(0xa59)],'VbLhV':_0x320b4a[_0x533afc(0x707)]};if(_0x320b4a[_0x4adb7d(0x186)](_0x320b4a[_0x3c2e10(0x19e)],_0x320b4a[_0x23bfd6(0x19e)]))_0x246ca8[_0x23bfd6(0x938)+_0x3c2e10(0x502)+_0x533afc(0x1dd)](_0x50451e[_0x23bfd6(0xb0a)])[_0x23bfd6(0x68c)+_0x533afc(0x38a)]=_0x16b664[_0x4adb7d(0x938)+_0x3c2e10(0x502)+_0x23bfd6(0x1dd)](_0x50451e[_0x3c2e10(0xb0a)])[_0x3c2e10(0x68c)+_0x533afc(0x8d4)+'ht'];else{const _0x5b59ab=_0x46905f[_0x23bfd6(0x61f)][_0x31371c(0x516)+_0x3c2e10(0x69d)]();let _0x319cab='',_0x4bd06d='';_0x5b59ab[_0x23bfd6(0x6e5)]()[_0x4adb7d(0x91b)](function _0x277d1e({done:_0x484689,value:_0x44e665}){const _0x12bfae=_0x3c2e10,_0x26e24e=_0x31371c,_0x434b3b=_0x31371c,_0x4266e7=_0x31371c,_0x4e0e7d=_0x533afc,_0x2b8b88={'UygaJ':function(_0x42141a,_0x502298){const _0x19edfd=_0x2717;return _0x50451e[_0x19edfd(0x9cb)](_0x42141a,_0x502298);},'WEujR':_0x50451e[_0x12bfae(0xa11)],'CZlBK':_0x50451e[_0x26e24e(0x1fc)],'RxWVP':_0x50451e[_0x434b3b(0x85a)],'cvyJu':_0x50451e[_0x4266e7(0xb2d)],'jmYJA':_0x50451e[_0x4266e7(0xb5b)],'VrlZv':function(_0x5f0d88,_0x10094e){const _0x1b621f=_0x4e0e7d;return _0x50451e[_0x1b621f(0x652)](_0x5f0d88,_0x10094e);},'dczNn':_0x50451e[_0x12bfae(0x8ad)],'lcssA':_0x50451e[_0x4e0e7d(0xb0a)],'jNuOP':function(_0x43e995,_0x1c4cda){const _0x431071=_0x12bfae;return _0x50451e[_0x431071(0x230)](_0x43e995,_0x1c4cda);},'Zldpr':function(_0x1f993a,_0x2d567b){const _0x29d7db=_0x4266e7;return _0x50451e[_0x29d7db(0xa30)](_0x1f993a,_0x2d567b);},'kTxlg':_0x50451e[_0x12bfae(0xcf4)],'AiMMn':function(_0x263a15,_0x126419){const _0x1d7ea2=_0x434b3b;return _0x50451e[_0x1d7ea2(0x6b9)](_0x263a15,_0x126419);},'fLknD':function(_0x162a7b,_0x4f15a9){const _0x265ebd=_0x4e0e7d;return _0x50451e[_0x265ebd(0x268)](_0x162a7b,_0x4f15a9);},'WudGT':_0x50451e[_0x4266e7(0x207)],'hJYJe':function(_0x3491a6,_0x562df0){const _0x2296ae=_0x26e24e;return _0x50451e[_0x2296ae(0x534)](_0x3491a6,_0x562df0);},'jztJq':_0x50451e[_0x434b3b(0x37a)],'juFPM':_0x50451e[_0x4e0e7d(0xbef)],'RnKtU':_0x50451e[_0x4266e7(0xbd9)],'UUmOd':function(_0x44ee45){const _0x32f004=_0x434b3b;return _0x50451e[_0x32f004(0xb1f)](_0x44ee45);},'AfnaQ':_0x50451e[_0x4e0e7d(0xb6e)],'cUCxi':_0x50451e[_0x4266e7(0x5b2)],'KffCl':function(_0x1e9f65,_0x4c1513){const _0x54bb1d=_0x4e0e7d;return _0x50451e[_0x54bb1d(0xa30)](_0x1e9f65,_0x4c1513);},'ZARkX':_0x50451e[_0x4266e7(0x5e8)],'JKIUo':_0x50451e[_0x4e0e7d(0x401)],'seCtv':_0x50451e[_0x12bfae(0xb52)],'umjbX':_0x50451e[_0x4e0e7d(0x93b)],'HOuVy':function(_0x471673,_0x2cf483){const _0x321df2=_0x26e24e;return _0x50451e[_0x321df2(0xa30)](_0x471673,_0x2cf483);},'DgXkx':_0x50451e[_0x4266e7(0xc09)],'FIoDu':_0x50451e[_0x26e24e(0x273)],'MqpyF':function(_0x525da6,_0x5beaed){const _0x4d164d=_0x4266e7;return _0x50451e[_0x4d164d(0x6b9)](_0x525da6,_0x5beaed);},'yoiUC':_0x50451e[_0x434b3b(0x428)],'RYanY':function(_0x5086e8,_0x43f068,_0x9541c2){const _0x2c4a80=_0x4e0e7d;return _0x50451e[_0x2c4a80(0x185)](_0x5086e8,_0x43f068,_0x9541c2);},'XDwLV':_0x50451e[_0x4e0e7d(0x41b)]};if(_0x50451e[_0x4e0e7d(0x8a2)](_0x50451e[_0x434b3b(0xab2)],_0x50451e[_0x4266e7(0x99f)]))_0x4727c2=_0x25e6b1[_0x4266e7(0x245)](_0x2b8b88[_0x434b3b(0x634)](_0x1ddc12,_0x50c5eb))[_0x2b8b88[_0x4e0e7d(0x2af)]],_0x56cad0='';else{if(_0x484689)return;const _0xfa46d9=new TextDecoder(_0x50451e[_0x12bfae(0x27c)])[_0x4266e7(0x55a)+'e'](_0x44e665);return _0xfa46d9[_0x12bfae(0xbcb)]()[_0x4266e7(0x74a)]('\x0a')[_0x434b3b(0xcba)+'ch'](function(_0xc958c4){const _0x3f04aa=_0x12bfae,_0xba543d=_0x26e24e,_0x2cab5f=_0x4266e7,_0x40ce61=_0x4266e7,_0x116b5b=_0x26e24e;if(_0x2b8b88[_0x3f04aa(0xd14)](_0x2b8b88[_0x3f04aa(0xbd5)],_0x2b8b88[_0xba543d(0xbd5)])){_0x319cab='';if(_0x2b8b88[_0x40ce61(0xb78)](_0xc958c4[_0xba543d(0x7c2)+'h'],0x14e8+0x192*-0x7+-0x9e4))_0x319cab=_0xc958c4[_0x40ce61(0x7fb)](0x2184+-0x1*0x1105+-0x1079);if(_0x2b8b88[_0x2cab5f(0x1c0)](_0x319cab,_0x2b8b88[_0xba543d(0x62b)])){if(_0x2b8b88[_0x40ce61(0x44d)](_0x2b8b88[_0x2cab5f(0xa76)],_0x2b8b88[_0x2cab5f(0x1d3)])){const _0x83c823=_0x2b8b88[_0x2cab5f(0x575)][_0x3f04aa(0x74a)]('|');let _0x5d7e09=-0x17a4+0x2522+0x6bf*-0x2;while(!![]){switch(_0x83c823[_0x5d7e09++]){case'0':_0x2b8b88[_0x3f04aa(0xa79)](proxify);continue;case'1':document[_0x116b5b(0x8eb)+_0x40ce61(0x7de)+_0x3f04aa(0x192)](_0x2b8b88[_0xba543d(0x170)])[_0x40ce61(0x832)][_0x2cab5f(0x5de)+'ay']='';continue;case'2':document[_0xba543d(0x8eb)+_0x116b5b(0x7de)+_0x3f04aa(0x192)](_0x2b8b88[_0x2cab5f(0x629)])[_0x40ce61(0x832)][_0x40ce61(0x5de)+'ay']='';continue;case'3':lock_chat=0x1*-0x17f3+0x212*-0x5+0x224d;continue;case'4':return;}break;}}else{const _0x799c0=_0x2b8b88[_0xba543d(0xa04)][_0x2cab5f(0x74a)]('|');let _0x238599=0x12*0x1e7+0x10ad*0x1+-0x32eb;while(!![]){switch(_0x799c0[_0x238599++]){case'0':_0x5a22ae=-0x19*0x5d+-0xa79+0x1*0x138e;continue;case'1':const _0x1b8d20={};_0x1b8d20[_0x40ce61(0x3df)]=_0x2b8b88[_0x40ce61(0x592)],_0x1b8d20[_0x3f04aa(0x8bd)+'nt']=_0x1df6fb,_0x3b90ab[_0x2cab5f(0xb25)](_0x1b8d20);continue;case'2':return;case'3':_0x47eef2[_0x116b5b(0x938)+_0x3f04aa(0x502)+_0xba543d(0x1dd)](_0x2b8b88[_0x2cab5f(0xcfe)])[_0x3f04aa(0x7cc)]='';continue;case'4':const _0x5f2d09={};_0x5f2d09[_0x2cab5f(0x3df)]=_0x2b8b88[_0x116b5b(0x381)],_0x5f2d09[_0x2cab5f(0x8bd)+'nt']=_0x40965d,_0x4349de[_0xba543d(0xb25)](_0x5f2d09);continue;}break;}}}let _0x327cf0;try{if(_0x2b8b88[_0x116b5b(0x51f)](_0x2b8b88[_0x2cab5f(0x3d5)],_0x2b8b88[_0x2cab5f(0x522)])){const _0xe8c75b=/^[0-9,\s]+$/;return!_0xe8c75b[_0x2cab5f(0x654)](_0x2f2c75);}else try{if(_0x2b8b88[_0x2cab5f(0x44d)](_0x2b8b88[_0x116b5b(0x208)],_0x2b8b88[_0x40ce61(0x9a9)]))_0x327cf0=JSON[_0x3f04aa(0x245)](_0x2b8b88[_0x3f04aa(0x634)](_0x4bd06d,_0x319cab))[_0x2b8b88[_0x116b5b(0x2af)]],_0x4bd06d='';else try{_0x226c42=_0x2b8b88[_0x2cab5f(0xced)](_0x1e4152,_0x4c9359);const _0x4f4af6={};return _0x4f4af6[_0x2cab5f(0x263)]=_0x2b8b88[_0x116b5b(0x544)],_0x516a1c[_0x2cab5f(0x83f)+'e'][_0x40ce61(0x649)+'pt'](_0x4f4af6,_0x5ee33e,_0x4fa01a);}catch(_0x3836ae){}}catch(_0x2a13a4){_0x2b8b88[_0x116b5b(0x441)](_0x2b8b88[_0x3f04aa(0x684)],_0x2b8b88[_0x116b5b(0x684)])?(_0x327cf0=JSON[_0x40ce61(0x245)](_0x319cab)[_0x2b8b88[_0x40ce61(0x2af)]],_0x4bd06d=''):_0x3c923b[_0x2cab5f(0x938)+_0x116b5b(0x502)+_0x2cab5f(0x1dd)](_0x2b8b88[_0x2cab5f(0x780)])[_0x40ce61(0x68c)+_0x40ce61(0x38a)]=_0x1170f1[_0x40ce61(0x938)+_0xba543d(0x502)+_0x40ce61(0x1dd)](_0x2b8b88[_0xba543d(0x780)])[_0xba543d(0x68c)+_0x2cab5f(0x8d4)+'ht'];}}catch(_0x378020){_0x2b8b88[_0x3f04aa(0x51f)](_0x2b8b88[_0x40ce61(0x882)],_0x2b8b88[_0x40ce61(0x882)])?_0x4bd06d+=_0x319cab:(_0x122f76=_0x4ad837[_0xba543d(0x245)](_0x289620)[_0x2b8b88[_0x2cab5f(0x2af)]],_0x5dec76='');}_0x327cf0&&_0x2b8b88[_0x116b5b(0x769)](_0x327cf0[_0xba543d(0x7c2)+'h'],0x15e4+0x2*0x5f1+0xb42*-0x3)&&_0x327cf0[-0x1e5e+-0x2e3*0x9+-0x5*-0xb45][_0x116b5b(0x494)][_0x40ce61(0x8bd)+'nt']&&(_0x2b8b88[_0x40ce61(0xd14)](_0x2b8b88[_0x40ce61(0x8af)],_0x2b8b88[_0xba543d(0x8af)])?chatTextRawPlusComment+=_0x327cf0[-0x2139+0x25a2+0x469*-0x1][_0x116b5b(0x494)][_0x2cab5f(0x8bd)+'nt']:(_0x22e282=_0x21815e[_0x3f04aa(0x245)](_0x2b8b88[_0x116b5b(0xc46)](_0x3afba4,_0x297de3))[_0x2b8b88[_0x40ce61(0x2af)]],_0x25de7a='')),_0x2b8b88[_0x40ce61(0x199)](markdownToHtml,_0x2b8b88[_0x3f04aa(0xced)](beautify,chatTextRawPlusComment),document[_0x3f04aa(0x8eb)+_0x3f04aa(0x7de)+_0x3f04aa(0x192)](_0x2b8b88[_0x2cab5f(0xbfe)]));}else _0x2cbfbc+='';}),_0x5b59ab[_0x4266e7(0x6e5)]()[_0x4e0e7d(0x91b)](_0x277d1e);}});}})[_0x4802a2(0xb18)](_0x1e45c5=>{const _0x52c201=_0x4fafaf,_0x58d81d=_0x4802a2;console[_0x52c201(0x1e1)](_0x36dd8e[_0x52c201(0x8bc)],_0x1e45c5);});return;}let _0x3bb50f;try{try{_0x3bb50f=JSON[_0x13b2ba(0x245)](_0x27e82a[_0x377ea8(0xa02)](_0x55c1b1,_0x1916aa))[_0x27e82a[_0x4802a2(0xbf1)]],_0x55c1b1='';}catch(_0x50342f){_0x3bb50f=JSON[_0x38cf7f(0x245)](_0x1916aa)[_0x27e82a[_0x38cf7f(0xbf1)]],_0x55c1b1='';}}catch(_0x30a087){_0x55c1b1+=_0x1916aa;}_0x3bb50f&&_0x27e82a[_0x377ea8(0x741)](_0x3bb50f[_0x377ea8(0x7c2)+'h'],0x1*0x2559+-0x3e3*-0x1+-0x293c)&&_0x3bb50f[0x1*0x994+-0x3*0x34b+0x4d][_0x13b2ba(0x494)][_0x377ea8(0x8bd)+'nt']&&(chatTextRaw+=_0x3bb50f[-0xc9a+0x5d0+0x6ca][_0x4fafaf(0x494)][_0x13b2ba(0x8bd)+'nt']),_0x27e82a[_0x38cf7f(0x7e3)](markdownToHtml,_0x27e82a[_0x13b2ba(0xa66)](beautify,chatTextRaw),document[_0x13b2ba(0x8eb)+_0x4fafaf(0x7de)+_0x4802a2(0x192)](_0x27e82a[_0x4fafaf(0xbca)]));}),_0x2d50d4[_0x1d5216(0x6e5)]()[_0x1d5216(0x91b)](_0x1f8074);});})[_0x4146b1(0xb18)](_0x3eea5a=>{const _0x22246e=_0x68e2db,_0x1f3aa5=_0x19e88a;console[_0x22246e(0x1e1)](_0x839060[_0x22246e(0xbf0)],_0x3eea5a);});return;}let _0x49aaff;try{try{_0x49aaff=JSON[_0x68e2db(0x245)](_0x11fb0e[_0x4146b1(0x287)](_0x6b943c,_0x2e936e))[_0x11fb0e[_0x13a88b(0x99a)]],_0x6b943c='';}catch(_0x54d929){_0x49aaff=JSON[_0x13a88b(0x245)](_0x2e936e)[_0x11fb0e[_0x59055a(0x99a)]],_0x6b943c='';}}catch(_0x1e58d5){_0x6b943c+=_0x2e936e;}_0x49aaff&&_0x11fb0e[_0x68e2db(0xa17)](_0x49aaff[_0x13a88b(0x7c2)+'h'],-0x8ef+-0x260d+0x2efc)&&_0x49aaff[0x154c+-0x5*0x7ba+0x1156][_0x4146b1(0x494)][_0x13a88b(0x8bd)+'nt']&&(chatTextRawIntro+=_0x49aaff[0x2661+0xcb*0x15+-0xc*0x496][_0x4146b1(0x494)][_0x19e88a(0x8bd)+'nt']),_0x11fb0e[_0x59055a(0x5b0)](markdownToHtml,_0x11fb0e[_0x4146b1(0xc0d)](beautify,_0x11fb0e[_0x68e2db(0x4fe)](chatTextRawIntro,'\x0a')),document[_0x4146b1(0x8eb)+_0x59055a(0x7de)+_0x59055a(0x192)](_0x11fb0e[_0x13a88b(0x9d3)]));}),_0x27c88a[_0x276335(0x6e5)]()[_0x276335(0x91b)](_0x539078);});})[_0x122511(0xb18)](_0x4229b9=>{const _0x845951=_0x44cb5b,_0x2325f7=_0x44cb5b,_0x1d0443=_0x4e848e,_0x4b081e=_0x122511,_0x2d240b={};_0x2d240b[_0x845951(0x52e)]=_0x845951(0xaac)+':';const _0x37b993=_0x2d240b;console[_0x2325f7(0x1e1)](_0x37b993[_0x2325f7(0x52e)],_0x4229b9);});function _0x2619f7(_0x4eeef1){const _0x1ee721=_0xeae0e,_0x12b8fd=_0xeae0e,_0x5219d5=_0x4e848e,_0x30f056=_0x44cb5b,_0x22317d=_0xeae0e,_0x29e278={'lkDNZ':function(_0x2011cb,_0x3d7be7){return _0x2011cb===_0x3d7be7;},'szLFW':_0x1ee721(0x5e3)+'g','ZSNbO':_0x1ee721(0xbf9)+_0x5219d5(0x90c)+_0x12b8fd(0x791),'FRwaL':_0x5219d5(0xc54)+'er','YnvBU':function(_0x5a279f,_0x16d6d1){return _0x5a279f!==_0x16d6d1;},'UlJdy':function(_0x19fe4c,_0x8dd927){return _0x19fe4c+_0x8dd927;},'DOQOd':function(_0x189ff9,_0x850285){return _0x189ff9/_0x850285;},'ugzTL':_0x1ee721(0x7c2)+'h','PthAg':function(_0x36c83f,_0x516c83){return _0x36c83f===_0x516c83;},'BDdaD':function(_0x515433,_0x10d6e3){return _0x515433%_0x10d6e3;},'CSWjT':_0x1ee721(0x9a4),'Nlrbb':_0x12b8fd(0xac8),'gLrmA':_0x22317d(0x535)+'n','VxZqM':_0x30f056(0xa49)+_0x5219d5(0x84a)+'t','XNqLn':function(_0x3766e2,_0x20eb20){return _0x3766e2(_0x20eb20);}};function _0x3457e5(_0x47b51c){const _0x171e1d=_0x12b8fd,_0x3c2867=_0x22317d,_0x139732=_0x22317d,_0x28ed49=_0x12b8fd,_0x33527f=_0x1ee721;if(_0x29e278[_0x171e1d(0x4b2)](typeof _0x47b51c,_0x29e278[_0x3c2867(0x5ed)]))return function(_0x3cbf6b){}[_0x171e1d(0x2d9)+_0x3c2867(0x310)+'r'](_0x29e278[_0x28ed49(0x389)])[_0x33527f(0x6d2)](_0x29e278[_0x33527f(0x547)]);else _0x29e278[_0x171e1d(0x1eb)](_0x29e278[_0x3c2867(0x691)]('',_0x29e278[_0x28ed49(0xa16)](_0x47b51c,_0x47b51c))[_0x29e278[_0x171e1d(0x1b2)]],0x55*-0x6+0x13a2*0x1+0xf*-0x12d)||_0x29e278[_0x139732(0x84f)](_0x29e278[_0x33527f(0x87e)](_0x47b51c,-0x3b9*-0x1+-0x5f7+0x252*0x1),0x15ab+0xb02+-0x4ab*0x7)?function(){return!![];}[_0x28ed49(0x2d9)+_0x171e1d(0x310)+'r'](_0x29e278[_0x139732(0x691)](_0x29e278[_0x33527f(0xc99)],_0x29e278[_0x171e1d(0x5f2)]))[_0x139732(0xccf)](_0x29e278[_0x3c2867(0x5ba)]):function(){return![];}[_0x171e1d(0x2d9)+_0x33527f(0x310)+'r'](_0x29e278[_0x3c2867(0x691)](_0x29e278[_0x139732(0xc99)],_0x29e278[_0x171e1d(0x5f2)]))[_0x3c2867(0x6d2)](_0x29e278[_0x139732(0x802)]);_0x29e278[_0x33527f(0x3dd)](_0x3457e5,++_0x47b51c);}try{if(_0x4eeef1)return _0x3457e5;else _0x29e278[_0x30f056(0x3dd)](_0x3457e5,0x966+0xabb+-0x1421);}catch(_0x544212){}}
</script>
'''
# for i in range(1,16):
# gpt = gpt.replace("["+str(i)+"] http","[^"+str(i)+"]: http").replace("["+str(i)+"]http","[^"+str(i)+"]: http").replace("["+str(i)+"]","[^"+str(i)+"]")
# rgpt = gpt
# gpt = markdown.markdown( gpt , extensions=['footnotes'])
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("#fn:"+str(i),url_pair[i])
# gpt = gpt.replace("#fn:url"+str(i),url_pair[i])
# gpt = re.sub(r'<div class="footnote">(.*?)</div>', '', gpt, flags=re.DOTALL)
# gpt = gpt + '''<style>
# a.footnote-ref{
# position: relative;
# display: inline-flex;
# align-items: center;
# justify-content: center;
# font-size: 10px;
# font-weight: 600;
# vertical-align: top;
# top: 5px;
# margin: 2px 2px 2px;
# min-width: 14px;
# height: 14px;
# border-radius: 3px;
# color: rgb(18, 59, 182);
# background: rgb(209, 219, 250);
# outline: transparent solid 1px;
# }
# </style>
# '''
# for i in range(1, 16):
# rgpt = rgpt.replace(f"[{i}]", "")
# rgpt = rgpt.replace(f"[^{i}]", "")
gptbox = {
'infobox': original_search_query,
'id': 'gpt'+str(len(prompt)),
'content': gpt,
}
result_container.infoboxes.append(gptbox)
except Exception as ee:
logger.exception(ee, exc_info=True)
# checkin for a external bang
if result_container.redirect_url:
return redirect(result_container.redirect_url)
# Server-Timing header
request.timings = result_container.get_timings() # pylint: disable=assigning-non-slot
current_template = None
previous_result = None
# output
for result in results:
if output_format == 'html':
if 'content' in result and result['content']:
result['content'] = highlight_content(escape(result['content'][:1024]), search_query.query)
if 'title' in result and result['title']:
result['title'] = highlight_content(escape(result['title'] or ''), search_query.query)
else:
if result.get('content'):
result['content'] = html_to_text(result['content']).strip()
# removing html content and whitespace duplications
result['title'] = ' '.join(html_to_text(result['title']).strip().split())
if 'url' in result:
result['pretty_url'] = prettify_url(result['url'])
if result.get('publishedDate'): # do not try to get a date from an empty string or a None type
try: # test if publishedDate >= 1900 (datetime module bug)
result['pubdate'] = result['publishedDate'].strftime('%Y-%m-%d %H:%M:%S%z')
except ValueError:
result['publishedDate'] = None
else:
result['publishedDate'] = searxng_l10n_timespan(result['publishedDate'])
# set result['open_group'] = True when the template changes from the previous result
# set result['close_group'] = True when the template changes on the next result
if current_template != result.get('template'):
result['open_group'] = True
if previous_result:
previous_result['close_group'] = True # pylint: disable=unsupported-assignment-operation
current_template = result.get('template')
previous_result = result
if previous_result:
previous_result['close_group'] = True
if output_format == 'json':
x = {
# 'query': search_query.query,
# 'number_of_results': number_of_results,
# 'results': results,
# 'answers': list(result_container.answers),
# 'corrections': list(result_container.corrections),
'infoboxes': result_container.infoboxes,
# 'suggestions': list(result_container.suggestions),
# 'unresponsive_engines': __get_translated_errors(result_container.unresponsive_engines),
}
response = json.dumps(x, default=lambda item: list(item) if isinstance(item, set) else item)
return Response(response, mimetype='application/json')
if output_format == 'csv':
csv = UnicodeWriter(StringIO())
keys = ('title', 'url', 'content', 'host', 'engine', 'score', 'type')
csv.writerow(keys)
for row in results:
row['host'] = row['parsed_url'].netloc
row['type'] = 'result'
csv.writerow([row.get(key, '') for key in keys])
for a in result_container.answers:
row = {'title': a, 'type': 'answer'}
csv.writerow([row.get(key, '') for key in keys])
for a in result_container.suggestions:
row = {'title': a, 'type': 'suggestion'}
csv.writerow([row.get(key, '') for key in keys])
for a in result_container.corrections:
row = {'title': a, 'type': 'correction'}
csv.writerow([row.get(key, '') for key in keys])
csv.stream.seek(0)
response = Response(csv.stream.read(), mimetype='application/csv')
cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search_query.query)
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=results,
answers=result_container.answers,
corrections=result_container.corrections,
suggestions=result_container.suggestions,
q=request.form['q'],
number_of_results=number_of_results,
)
return Response(response_rss, mimetype='text/xml')
# HTML output format
# suggestions: use RawTextQuery to get the suggestion URLs with the same bang
suggestion_urls = list(
map(
lambda suggestion: {'url': raw_text_query.changeQuery(suggestion).getFullQuery(), 'title': suggestion},
result_container.suggestions,
)
)
correction_urls = list(
map(
lambda correction: {'url': raw_text_query.changeQuery(correction).getFullQuery(), 'title': correction},
result_container.corrections,
)
)
# search_query.lang contains the user choice (all, auto, en, ...)
# when the user choice is "auto", search.search_query.lang contains the detected language
# otherwise it is equals to search_query.lang
return render(
# fmt: off
'results.html',
results = results,
q=request.form['q'],
selected_categories = search_query.categories,
pageno = search_query.pageno,
time_range = search_query.time_range or '',
number_of_results = format_decimal(number_of_results),
suggestions = suggestion_urls,
answers = result_container.answers,
corrections = correction_urls,
infoboxes = result_container.infoboxes,
engine_data = result_container.engine_data,
paging = result_container.paging,
unresponsive_engines = __get_translated_errors(
result_container.unresponsive_engines
),
current_locale = request.preferences.get_value("locale"),
current_language = match_language(
search_query.lang,
settings['search']['languages'],
fallback=request.preferences.get_value("language")
),
search_language = match_language(
search.search_query.lang,
settings['search']['languages'],
fallback=request.preferences.get_value("language")
),
timeout_limit = request.form.get('timeout_limit', None)
# fmt: on
)
def __get_translated_errors(unresponsive_engines: Iterable[UnresponsiveEngine]):
translated_errors = []
# make a copy unresponsive_engines to avoid "RuntimeError: Set changed size
# during iteration" it happens when an engine modifies the ResultContainer
# after the search_multiple_requests method has stopped waiting
for unresponsive_engine in unresponsive_engines:
error_user_text = exception_classname_to_text.get(unresponsive_engine.error_type)
if not error_user_text:
error_user_text = exception_classname_to_text[None]
error_msg = gettext(error_user_text)
if unresponsive_engine.suspended:
error_msg = gettext('Suspended') + ': ' + error_msg
translated_errors.append((unresponsive_engine.engine, error_msg))
return sorted(translated_errors, key=lambda e: e[0])
@app.route('/about', methods=['GET'])
def about():
"""Redirect to about page"""
# custom_url_for is going to add the locale
return redirect(custom_url_for('info', pagename='about'))
@app.route('/info/<locale>/<pagename>', methods=['GET'])
def info(pagename, locale):
"""Render page of online user documentation"""
page = _INFO_PAGES.get_page(pagename, locale)
if page is None:
flask.abort(404)
user_locale = request.preferences.get_value('locale')
return render(
'info.html',
all_pages=_INFO_PAGES.iter_pages(user_locale, fallback_to_default=True),
active_page=page,
active_pagename=pagename,
)
@app.route('/autocompleter', methods=['GET', 'POST'])
def autocompleter():
"""Return autocompleter results"""
# run autocompleter
results = []
# set blocked engines
disabled_engines = request.preferences.engines.get_disabled()
# parse query
raw_text_query = RawTextQuery(request.form.get('q', ''), disabled_engines)
sug_prefix = raw_text_query.getQuery()
# normal autocompletion results only appear if no inner results returned
# and there is a query part
if len(raw_text_query.autocomplete_list) == 0 and len(sug_prefix) > 0:
# get language from cookie
language = request.preferences.get_value('language')
if not language or language == 'all':
language = 'en'
else:
language = language.split('-')[0]
# run autocompletion
raw_results = search_autocomplete(request.preferences.get_value('autocomplete'), sug_prefix, language)
for result in raw_results:
# attention: this loop will change raw_text_query object and this is
# the reason why the sug_prefix was stored before (see above)
if result != sug_prefix:
results.append(raw_text_query.changeQuery(result).getFullQuery())
if len(raw_text_query.autocomplete_list) > 0:
for autocomplete_text in raw_text_query.autocomplete_list:
results.append(raw_text_query.get_autocomplete_full_query(autocomplete_text))
for answers in ask(raw_text_query):
for answer in answers:
results.append(str(answer['answer']))
if request.headers.get('X-Requested-With') == 'XMLHttpRequest':
# the suggestion request comes from the searx search form
suggestions = json.dumps(results)
mimetype = 'application/json'
else:
# the suggestion request comes from browser's URL bar
suggestions = json.dumps([sug_prefix, results])
mimetype = 'application/x-suggestions+json'
suggestions = escape(suggestions, False)
return Response(suggestions, mimetype=mimetype)
@app.route('/preferences', methods=['GET', 'POST'])
def preferences():
"""Render preferences page && save user preferences"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# save preferences using the link the /preferences?preferences=...&save=1
if request.args.get('save') == '1':
resp = make_response(redirect(url_for('index', _external=True)))
return request.preferences.save(resp)
# save preferences
if request.method == 'POST':
resp = make_response(redirect(url_for('index', _external=True)))
try:
request.preferences.parse_form(request.form)
except ValidationException:
request.errors.append(gettext('Invalid settings, please edit your preferences'))
return resp
return request.preferences.save(resp)
# render preferences
image_proxy = request.preferences.get_value('image_proxy') # pylint: disable=redefined-outer-name
disabled_engines = request.preferences.engines.get_disabled()
allowed_plugins = request.preferences.plugins.get_enabled()
# stats for preferences page
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
engines_by_category = {}
for c in categories: # pylint: disable=consider-using-dict-items
engines_by_category[c] = [e for e in categories[c] if e.name in filtered_engines]
# sort the engines alphabetically since the order in settings.yml is meaningless.
list.sort(engines_by_category[c], key=lambda e: e.name)
# get first element [0], the engine time,
# and then the second element [1] : the time (the first one is the label)
stats = {} # pylint: disable=redefined-outer-name
max_rate95 = 0
for _, e in filtered_engines.items():
h = histogram('engine', e.name, 'time', 'total')
median = round(h.percentage(50), 1) if h.count > 0 else None
rate80 = round(h.percentage(80), 1) if h.count > 0 else None
rate95 = round(h.percentage(95), 1) if h.count > 0 else None
max_rate95 = max(max_rate95, rate95 or 0)
result_count_sum = histogram('engine', e.name, 'result', 'count').sum
successful_count = counter('engine', e.name, 'search', 'count', 'successful')
result_count = int(result_count_sum / float(successful_count)) if successful_count else 0
stats[e.name] = {
'time': median,
'rate80': rate80,
'rate95': rate95,
'warn_timeout': e.timeout > settings['outgoing']['request_timeout'],
'supports_selected_language': _is_selected_language_supported(e, request.preferences),
'result_count': result_count,
}
# end of stats
# reliabilities
reliabilities = {}
engine_errors = get_engine_errors(filtered_engines)
checker_results = checker_get_result()
checker_results = (
checker_results['engines'] if checker_results['status'] == 'ok' and 'engines' in checker_results else {}
)
for _, e in filtered_engines.items():
checker_result = checker_results.get(e.name, {})
checker_success = checker_result.get('success', True)
errors = engine_errors.get(e.name) or []
if counter('engine', e.name, 'search', 'count', 'sent') == 0:
# no request
reliablity = None
elif checker_success and not errors:
reliablity = 100
elif 'simple' in checker_result.get('errors', {}):
# the basic (simple) test doesn't work: the engine is broken accoding to the checker
# even if there is no exception
reliablity = 0
else:
# pylint: disable=consider-using-generator
reliablity = 100 - sum([error['percentage'] for error in errors if not error.get('secondary')])
reliabilities[e.name] = {
'reliablity': reliablity,
'errors': [],
'checker': checker_results.get(e.name, {}).get('errors', {}).keys(),
}
# keep the order of the list checker_results[e.name]['errors'] and deduplicate.
# the first element has the highest percentage rate.
reliabilities_errors = []
for error in errors:
error_user_text = None
if error.get('secondary') or 'exception_classname' not in error:
continue
error_user_text = exception_classname_to_text.get(error.get('exception_classname'))
if not error:
error_user_text = exception_classname_to_text[None]
if error_user_text not in reliabilities_errors:
reliabilities_errors.append(error_user_text)
reliabilities[e.name]['errors'] = reliabilities_errors
# supports
supports = {}
for _, e in filtered_engines.items():
supports_selected_language = _is_selected_language_supported(e, request.preferences)
safesearch = e.safesearch
time_range_support = e.time_range_support
for checker_test_name in checker_results.get(e.name, {}).get('errors', {}):
if supports_selected_language and checker_test_name.startswith('lang_'):
supports_selected_language = '?'
elif safesearch and checker_test_name == 'safesearch':
safesearch = '?'
elif time_range_support and checker_test_name == 'time_range':
time_range_support = '?'
supports[e.name] = {
'supports_selected_language': supports_selected_language,
'safesearch': safesearch,
'time_range_support': time_range_support,
}
return render(
# fmt: off
'preferences.html',
selected_categories = get_selected_categories(request.preferences, request.form),
locales = LOCALE_NAMES,
current_locale = request.preferences.get_value("locale"),
image_proxy = image_proxy,
engines_by_category = engines_by_category,
stats = stats,
max_rate95 = max_rate95,
reliabilities = reliabilities,
supports = supports,
answerers = [
{'info': a.self_info(), 'keywords': a.keywords}
for a in answerers
],
disabled_engines = disabled_engines,
autocomplete_backends = autocomplete_backends,
shortcuts = {y: x for x, y in engine_shortcuts.items()},
themes = themes,
plugins = plugins,
doi_resolvers = settings['doi_resolvers'],
current_doi_resolver = get_doi_resolver(request.preferences),
allowed_plugins = allowed_plugins,
preferences_url_params = request.preferences.get_as_url_params(),
locked_preferences = settings['preferences']['lock'],
preferences = True
# fmt: on
)
def _is_selected_language_supported(engine, preferences: Preferences): # pylint: disable=redefined-outer-name
language = preferences.get_value('language')
if language == 'all':
return True
x = match_language(
language, getattr(engine, 'supported_languages', []), getattr(engine, 'language_aliases', {}), None
)
return bool(x)
@app.route('/image_proxy', methods=['GET'])
def image_proxy():
# pylint: disable=too-many-return-statements, too-many-branches
url = request.args.get('url')
if not url:
return '', 400
if not is_hmac_of(settings['server']['secret_key'], url.encode(), request.args.get('h', '')):
return '', 400
maximum_size = 5 * 1024 * 1024
forward_resp = False
resp = None
try:
request_headers = {
'User-Agent': gen_useragent(),
'Accept': 'image/webp,*/*',
'Accept-Encoding': 'gzip, deflate',
'Sec-GPC': '1',
'DNT': '1',
}
set_context_network_name('image_proxy')
resp, stream = http_stream(method='GET', url=url, headers=request_headers, allow_redirects=True)
content_length = resp.headers.get('Content-Length')
if content_length and content_length.isdigit() and int(content_length) > maximum_size:
return 'Max size', 400
if resp.status_code != 200:
logger.debug('image-proxy: wrong response code: %i', resp.status_code)
if resp.status_code >= 400:
return '', resp.status_code
return '', 400
if not resp.headers.get('Content-Type', '').startswith('image/') and not resp.headers.get(
'Content-Type', ''
).startswith('binary/octet-stream'):
logger.debug('image-proxy: wrong content-type: %s', resp.headers.get('Content-Type', ''))
return '', 400
forward_resp = True
except httpx.HTTPError:
logger.exception('HTTP error')
return '', 400
finally:
if resp and not forward_resp:
# the code is about to return an HTTP 400 error to the browser
# we make sure to close the response between searxng and the HTTP server
try:
resp.close()
except httpx.HTTPError:
logger.exception('HTTP error on closing')
def close_stream():
nonlocal resp, stream
try:
if resp:
resp.close()
del resp
del stream
except httpx.HTTPError as e:
logger.debug('Exception while closing response', e)
try:
headers = dict_subset(resp.headers, {'Content-Type', 'Content-Encoding', 'Content-Length', 'Length'})
response = Response(stream, mimetype=resp.headers['Content-Type'], headers=headers, direct_passthrough=True)
response.call_on_close(close_stream)
return response
except httpx.HTTPError:
close_stream()
return '', 400
@app.route('/engine_descriptions.json', methods=['GET'])
def engine_descriptions():
locale = get_locale().split('_')[0]
result = ENGINE_DESCRIPTIONS['en'].copy()
if locale != 'en':
for engine, description in ENGINE_DESCRIPTIONS.get(locale, {}).items():
result[engine] = description
for engine, description in result.items():
if len(description) == 2 and description[1] == 'ref':
ref_engine, ref_lang = description[0].split(':')
description = ENGINE_DESCRIPTIONS[ref_lang][ref_engine]
if isinstance(description, str):
description = [description, 'wikipedia']
result[engine] = description
# overwrite by about:description (from settings)
for engine_name, engine_mod in engines.items():
descr = getattr(engine_mod, 'about', {}).get('description', None)
if descr is not None:
result[engine_name] = [descr, "SearXNG config"]
return jsonify(result)
@app.route('/stats', methods=['GET'])
def stats():
"""Render engine statistics page."""
sort_order = request.args.get('sort', default='name', type=str)
selected_engine_name = request.args.get('engine', default=None, type=str)
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
if selected_engine_name:
if selected_engine_name not in filtered_engines:
selected_engine_name = None
else:
filtered_engines = [selected_engine_name]
checker_results = checker_get_result()
checker_results = (
checker_results['engines'] if checker_results['status'] == 'ok' and 'engines' in checker_results else {}
)
engine_stats = get_engines_stats(filtered_engines)
engine_reliabilities = get_reliabilities(filtered_engines, checker_results)
if sort_order not in STATS_SORT_PARAMETERS:
sort_order = 'name'
reverse, key_name, default_value = STATS_SORT_PARAMETERS[sort_order]
def get_key(engine_stat):
reliability = engine_reliabilities.get(engine_stat['name'], {}).get('reliablity', 0)
reliability_order = 0 if reliability else 1
if key_name == 'reliability':
key = reliability
reliability_order = 0
else:
key = engine_stat.get(key_name) or default_value
if reverse:
reliability_order = 1 - reliability_order
return (reliability_order, key, engine_stat['name'])
engine_stats['time'] = sorted(engine_stats['time'], reverse=reverse, key=get_key)
return render(
# fmt: off
'stats.html',
sort_order = sort_order,
engine_stats = engine_stats,
engine_reliabilities = engine_reliabilities,
selected_engine_name = selected_engine_name,
searx_git_branch = GIT_BRANCH,
# fmt: on
)
@app.route('/stats/errors', methods=['GET'])
def stats_errors():
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
result = get_engine_errors(filtered_engines)
return jsonify(result)
@app.route('/stats/checker', methods=['GET'])
def stats_checker():
result = checker_get_result()
return jsonify(result)
@app.route('/robots.txt', methods=['GET'])
def robots():
return Response(
"""User-agent: *
Allow: /info/en/about
Disallow: /stats
Disallow: /image_proxy
Disallow: /preferences
Disallow: /*?*q=*
""",
mimetype='text/plain',
)
@app.route('/opensearch.xml', methods=['GET'])
def opensearch():
method = request.preferences.get_value('method')
autocomplete = request.preferences.get_value('autocomplete')
# chrome/chromium only supports HTTP GET....
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
method = 'GET'
if method not in ('POST', 'GET'):
method = 'POST'
ret = render('opensearch.xml', opensearch_method=method, autocomplete=autocomplete)
resp = Response(response=ret, status=200, mimetype="application/opensearchdescription+xml")
return resp
@app.route('/favicon.ico')
def favicon():
theme = request.preferences.get_value("theme")
return send_from_directory(
os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'), # pyright: ignore
'favicon.png',
mimetype='image/vnd.microsoft.icon',
)
@app.route('/clear_cookies')
def clear_cookies():
resp = make_response(redirect(url_for('index', _external=True)))
for cookie_name in request.cookies:
resp.delete_cookie(cookie_name)
return resp
@app.route('/config')
def config():
"""Return configuration in JSON format."""
_engines = []
for name, engine in engines.items():
if not request.preferences.validate_token(engine):
continue
supported_languages = engine.supported_languages
if isinstance(engine.supported_languages, dict):
supported_languages = list(engine.supported_languages.keys())
_engines.append(
{
'name': name,
'categories': engine.categories,
'shortcut': engine.shortcut,
'enabled': not engine.disabled,
'paging': engine.paging,
'language_support': engine.language_support,
'supported_languages': supported_languages,
'safesearch': engine.safesearch,
'time_range_support': engine.time_range_support,
'timeout': engine.timeout,
}
)
_plugins = []
for _ in plugins:
_plugins.append({'name': _.name, 'enabled': _.default_on})
return jsonify(
{
'categories': list(categories.keys()),
'engines': _engines,
'plugins': _plugins,
'instance_name': settings['general']['instance_name'],
'locales': LOCALE_NAMES,
'default_locale': settings['ui']['default_locale'],
'autocomplete': settings['search']['autocomplete'],
'safe_search': settings['search']['safe_search'],
'default_theme': settings['ui']['default_theme'],
'version': VERSION_STRING,
'brand': {
'PRIVACYPOLICY_URL': get_setting('general.privacypolicy_url'),
'CONTACT_URL': get_setting('general.contact_url'),
'GIT_URL': GIT_URL,
'GIT_BRANCH': GIT_BRANCH,
'DOCS_URL': get_setting('brand.docs_url'),
},
'doi_resolvers': list(settings['doi_resolvers'].keys()),
'default_doi_resolver': settings['default_doi_resolver'],
}
)
@app.errorhandler(404)
def page_not_found(_e):
return render('404.html'), 404
# see https://flask.palletsprojects.com/en/1.1.x/cli/
# True if "FLASK_APP=searx/webapp.py FLASK_ENV=development flask run"
flask_run_development = (
os.environ.get("FLASK_APP") is not None and os.environ.get("FLASK_ENV") == 'development' and is_flask_run_cmdline()
)
# True if reload feature is activated of werkzeug, False otherwise (including uwsgi, etc..)
# __name__ != "__main__" if searx.webapp is imported (make test, make docs, uwsgi...)
# see run() at the end of this file : searx_debug activates the reload feature.
werkzeug_reloader = flask_run_development or (searx_debug and __name__ == "__main__")
# initialize the engines except on the first run of the werkzeug server.
if not werkzeug_reloader or (werkzeug_reloader and os.environ.get("WERKZEUG_RUN_MAIN") == "true"):
locales_initialize()
_INFO_PAGES = infopage.InfoPageSet()
redis_initialize()
plugin_initialize(app)
search_initialize(enable_checker=True, check_network=True, enable_metrics=settings['general']['enable_metrics'])
class DFA:
def __init__(self, path: str = None):
self.ban_words_set = set()
self.ban_words_list = list()
self.ban_words_dict = dict()
if not path:
self.path = 'keywords'
else:
self.path = path
self.get_words()
# 获取敏感词列表
def get_words(self):
with open(self.path, 'r', encoding='utf-8-sig') as f:
for s in f:
if s.find('\\r'):
s = s.replace('\r', '')
s = s.replace('\n', '')
s = s.strip()
if len(s) == 0:
continue
if str(s) and s not in self.ban_words_set:
self.ban_words_set.add(s)
self.ban_words_list.append(str(s))
sentence = pycorrector.simplified2traditional(s)
if sentence != s:
self.ban_words_set.add(sentence)
self.ban_words_list.append(str(sentence))
self.add_hash_dict(self.ban_words_list)
def change_words(self, path):
self.ban_words_list.clear()
self.ban_words_dict.clear()
self.ban_words_set.clear()
self.path = path
self.get_words()
# 将敏感词列表转换为DFA字典序
def add_hash_dict(self, new_list):
for x in new_list:
self.add_new_word(x)
# 添加单个敏感词
def add_new_word(self, new_word):
new_word = str(new_word)
# print(new_word)
now_dict = self.ban_words_dict
i = 0
for x in new_word:
if x not in now_dict:
x = str(x)
new_dict = dict()
new_dict['is_end'] = False
now_dict[x] = new_dict
now_dict = new_dict
else:
now_dict = now_dict[x]
if i == len(new_word) - 1:
now_dict['is_end'] = True
i += 1
# 寻找第一次出现敏感词的位置
def find_illegal(self, _str):
now_dict = self.ban_words_dict
i = 0
start_word = -1
is_start = True # 判断是否是一个敏感词的开始
while i < len(_str):
if _str[i] not in now_dict:
if is_start is True:
i += 1
continue
i = start_word + 1
start_word = -1
is_start = True
now_dict = self.ban_words_dict
else:
if is_start is True:
start_word = i
is_start = False
now_dict = now_dict[_str[i]]
if now_dict['is_end'] is True:
return start_word
else:
i += 1
return -1
# 查找是否存在敏感词
def exists(self, sentence):
pos = self.find_illegal(sentence)
_sentence = re.sub('\W+', '', sentence).replace("_", '')
_pos = self.find_illegal(_sentence)
if pos == -1 and _pos == -1:
return False
else:
return True
# 将指定位置的敏感词替换为*
def filter_words(self, filter_str, pos):
now_dict = self.ban_words_dict
end_str = int()
for i in range(pos, len(filter_str)):
if now_dict[filter_str[i]]['is_end'] is True:
end_str = i
break
now_dict = now_dict[filter_str[i]]
num = end_str - pos + 1
filter_str = filter_str[:pos] + '' * num + filter_str[end_str + 1:]
return filter_str
def filter_all(self, s):
pos_list = list()
ss = DFA.draw_words(s, pos_list)
illegal_pos = self.find_illegal(ss)
while illegal_pos != -1:
ss = self.filter_words(ss, illegal_pos)
illegal_pos = self.find_illegal(ss)
i = 0
while i < len(ss):
if ss[i] == '':
start = pos_list[i]
while i < len(ss) and ss[i] == '':
i += 1
i -= 1
end = pos_list[i]
num = end - start + 1
s = s[:start] + '' * num + s[end + 1:]
i += 1
return s
@staticmethod
def draw_words(_str, pos_list):
ss = str()
for i in range(len(_str)):
if '\u4e00' <= _str[i] <= '\u9fa5' or '\u3400' <= _str[i] <= '\u4db5' or '\u0030' <= _str[i] <= '\u0039' \
or '\u0061' <= _str[i] <= '\u007a' or '\u0041' <= _str[i] <= '\u005a':
ss += _str[i]
pos_list.append(i)
return ss
gfw = DFA()
def run():
logger.debug('starting webserver on %s:%s', settings['server']['bind_address'], settings['server']['port'])
app.run(
debug=searx_debug,
use_debugger=searx_debug,
port=settings['server']['port'],
host=settings['server']['bind_address'],
threaded=True,
extra_files=[get_default_settings_path()],
)
application = app
patch_application(app)
if __name__ == "__main__":
run()