Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 20D2484D55 for ; Mon, 11 Sep 2023 13:47:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QER2kipV7OWr for ; Mon, 11 Sep 2023 13:47:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9972E84D32 for ; Mon, 11 Sep 2023 13:47:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91997FBDB; Mon, 11 Sep 2023 13:47:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1694440032127410" MIME-Version: 1.0 Date: Mon, 11 Sep 2023 13:47:12 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/intellij-ce-bin To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20230911134712.91997FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1694440032127410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Sep 11 13:47:12 UTC 2023 Modified Files: pkgsrc/devel/intellij-ce-bin: Makefile PLIST distinfo pkgsrc/devel/intellij-ce-bin/patches: patch-bin_idea.sh Log Message: intellij-ce-bin: Update to 2023.2.1 * Use PREFIX/PKGBASE instead of PKGNAME. Changelog: * New UI control. * GitLab integration. * Search text improvement. * Improved menu. * Enable sort by filename. and so on. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/intellij-ce-bin/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/intellij-ce-bin/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/intellij-ce-bin/distinfo cvs rdiff -u -r1.2 -r1.3 \ pkgsrc/devel/intellij-ce-bin/patches/patch-bin_idea.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1694440032127410 Content-Disposition: inline Content-Length: 186343 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/intellij-ce-bin/Makefile diff -u pkgsrc/devel/intellij-ce-bin/Makefile:1.11 pkgsrc/devel/intellij-ce-bin/Makefile:1.12 --- pkgsrc/devel/intellij-ce-bin/Makefile:1.11 Mon Aug 14 05:24:09 2023 +++ pkgsrc/devel/intellij-ce-bin/Makefile Mon Sep 11 13:47:12 2023 @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.11 2023/08/14 05:24:09 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2023/09/11 13:47:12 ryoon Exp $ # # TODO Import intellij-fsnotifier with inotify support from FreeBSD. -VERSION= 2021.3.2 -DISTNAME= ideaIC-${VERSION:S/.0.0//}-no-jbr +VERSION= 2023.2.1 +DISTNAME= ideaIC-${VERSION:S/.0.0//} PKGNAME= intellij-ce-bin-${VERSION} -PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= https://download.jetbrains.com/idea/ @@ -16,7 +15,7 @@ LICENSE= apache-2.0 DEPENDS+= intellij-fsnotifier-[0-9]*:../../sysutils/intellij-fsnotifier -WRKSRC= ${WRKDIR}/idea-IC-213.6777.52 +WRKSRC= ${WRKDIR}/idea-IC-232.9559.62 USE_JAVA2= 9 USE_TOOLS+= bash pax sed @@ -34,7 +33,7 @@ CHECK_SHLIBS_SKIP= * CHECK_RELRO_SUPPORTED= no CHECK_PIE_SUPPORTED= no -INSTALLATION_DIRS= ${PKGNAME_NOREV} \ +INSTALLATION_DIRS= ${PKGBASE} \ share/applications NO_BUILD= yes @@ -45,11 +44,28 @@ SUBST_FILES.jdk= bin/idea.sh SUBST_VARS.jdk= PKG_JAVA_HOME do-install: - ${SED} -e "s|@@IDEA_HOME@@|${PREFIX}/${PKGNAME_NOREV}|g" \ + ${SED} -e "s|@@IDEA_HOME@@|${PREFIX}/${PKGBASE}|g" \ < ${FILESDIR}/idea.desktop \ > ${DESTDIR}${PREFIX}/share/applications/idea.desktop + cd ${WRKSRC} && \ + ${RM} -r bin/*.orig \ + bin/fsnotifier \ + bin/libdbm.so \ + bin/repair \ + lib/jna/amd64/libjnidispatch.so \ + lib/native/linux-x86_64/libsqliteij.so \ + lib/pty4j/linux/x86-64/libpty.so \ + plugins/cwm-plugin/quiche-native/win32-x86-64/*.dll \ + plugins/cwm-plugin/quiche-native/*/*.so \ + plugins/cwm-plugin/quiche-native/*/*.dylib \ + plugins/webp/lib/libwebp/linux/*.so \ + plugins/android/resources/native/*/*.so \ + plugins/android/resources/native/*/*.dylib \ + plugins/android/resources/native/*/*.dll \ + plugins/maven/lib/maven3/lib/jansi-native/Windows/*/*.dll \ + jbr && \ cd ${WRKSRC} && pax -rw -pm -s ',.*\.orig,,' \ - * ${DESTDIR}${PREFIX}/${PKGNAME_NOREV} + * ${DESTDIR}${PREFIX}/${PKGBASE} .include "../../lang/python/application.mk" .include "../../mk/java-vm.mk" Index: pkgsrc/devel/intellij-ce-bin/PLIST diff -u pkgsrc/devel/intellij-ce-bin/PLIST:1.3 pkgsrc/devel/intellij-ce-bin/PLIST:1.4 --- pkgsrc/devel/intellij-ce-bin/PLIST:1.3 Tue Feb 15 21:21:24 2022 +++ pkgsrc/devel/intellij-ce-bin/PLIST Mon Sep 11 13:47:12 2023 @@ -1,1375 +1,1261 @@ -@comment $NetBSD: PLIST,v 1.3 2022/02/15 21:21:24 rillig Exp $ -${PKGNAME}/Install-Linux-tar.txt -${PKGNAME}/LICENSE.txt -${PKGNAME}/NOTICE.txt -${PKGNAME}/bin/appletviewer.policy -${PKGNAME}/bin/brokenPlugins.db -${PKGNAME}/bin/format.sh -${PKGNAME}/bin/fsnotifier -${PKGNAME}/bin/icons.db -${PKGNAME}/bin/idea.png -${PKGNAME}/bin/idea.properties -${PKGNAME}/bin/idea.sh -${PKGNAME}/bin/idea.svg -${PKGNAME}/bin/idea64.vmoptions -${PKGNAME}/bin/inspect.sh -${PKGNAME}/bin/libdbm64.so -${PKGNAME}/bin/log.xml -${PKGNAME}/bin/ltedit.sh -${PKGNAME}/bin/printenv.py -${PKGNAME}/bin/repair -${PKGNAME}/bin/restart.py -${PKGNAME}/build.txt -${PKGNAME}/lib/3rd-party-rt.jar -${PKGNAME}/lib/3rd-party.jar -${PKGNAME}/lib/annotations.jar -${PKGNAME}/lib/ant/CONTRIBUTORS -${PKGNAME}/lib/ant/INSTALL -${PKGNAME}/lib/ant/KEYS -${PKGNAME}/lib/ant/LICENSE -${PKGNAME}/lib/ant/NOTICE -${PKGNAME}/lib/ant/README -${PKGNAME}/lib/ant/WHATSNEW -${PKGNAME}/lib/ant/contributors.xml -${PKGNAME}/lib/ant/lib/README -${PKGNAME}/lib/ant/lib/ant-antlr.jar -${PKGNAME}/lib/ant/lib/ant-antlr.pom -${PKGNAME}/lib/ant/lib/ant-apache-bcel.jar -${PKGNAME}/lib/ant/lib/ant-apache-bcel.pom -${PKGNAME}/lib/ant/lib/ant-apache-bsf.jar -${PKGNAME}/lib/ant/lib/ant-apache-bsf.pom -${PKGNAME}/lib/ant/lib/ant-apache-log4j.jar -${PKGNAME}/lib/ant/lib/ant-apache-log4j.pom -${PKGNAME}/lib/ant/lib/ant-apache-oro.jar -${PKGNAME}/lib/ant/lib/ant-apache-oro.pom -${PKGNAME}/lib/ant/lib/ant-apache-regexp.jar -${PKGNAME}/lib/ant/lib/ant-apache-regexp.pom -${PKGNAME}/lib/ant/lib/ant-apache-resolver.jar -${PKGNAME}/lib/ant/lib/ant-apache-resolver.pom -${PKGNAME}/lib/ant/lib/ant-apache-xalan2.jar -${PKGNAME}/lib/ant/lib/ant-apache-xalan2.pom -${PKGNAME}/lib/ant/lib/ant-commons-logging.jar -${PKGNAME}/lib/ant/lib/ant-commons-logging.pom -${PKGNAME}/lib/ant/lib/ant-commons-net.jar -${PKGNAME}/lib/ant/lib/ant-commons-net.pom -${PKGNAME}/lib/ant/lib/ant-jai.jar -${PKGNAME}/lib/ant/lib/ant-jai.pom -${PKGNAME}/lib/ant/lib/ant-javamail.jar -${PKGNAME}/lib/ant/lib/ant-javamail.pom -${PKGNAME}/lib/ant/lib/ant-jdepend.jar -${PKGNAME}/lib/ant/lib/ant-jdepend.pom -${PKGNAME}/lib/ant/lib/ant-jmf.jar -${PKGNAME}/lib/ant/lib/ant-jmf.pom -${PKGNAME}/lib/ant/lib/ant-jsch.jar -${PKGNAME}/lib/ant/lib/ant-jsch.pom -${PKGNAME}/lib/ant/lib/ant-junit.jar -${PKGNAME}/lib/ant/lib/ant-junit.pom -${PKGNAME}/lib/ant/lib/ant-junit4.jar -${PKGNAME}/lib/ant/lib/ant-junit4.pom -${PKGNAME}/lib/ant/lib/ant-junitlauncher.jar -${PKGNAME}/lib/ant/lib/ant-junitlauncher.pom -${PKGNAME}/lib/ant/lib/ant-launcher.jar -${PKGNAME}/lib/ant/lib/ant-launcher.pom -${PKGNAME}/lib/ant/lib/ant-netrexx.jar -${PKGNAME}/lib/ant/lib/ant-netrexx.pom -${PKGNAME}/lib/ant/lib/ant-parent.pom -${PKGNAME}/lib/ant/lib/ant-swing.jar -${PKGNAME}/lib/ant/lib/ant-swing.pom -${PKGNAME}/lib/ant/lib/ant-testutil.jar -${PKGNAME}/lib/ant/lib/ant-testutil.pom -${PKGNAME}/lib/ant/lib/ant-xz.jar -${PKGNAME}/lib/ant/lib/ant-xz.pom -${PKGNAME}/lib/ant/lib/ant.jar -${PKGNAME}/lib/ant/lib/ant.pom -${PKGNAME}/lib/ant/lib/libraries.properties -${PKGNAME}/lib/ant/src.zip -${PKGNAME}/lib/asm-7.1.jar -${PKGNAME}/lib/asm-analysis-7.1.jar -${PKGNAME}/lib/asm-commons-7.1.jar -${PKGNAME}/lib/asm-tree-7.1.jar -${PKGNAME}/lib/asm-util-7.1.jar -${PKGNAME}/lib/async-profiler.jar -${PKGNAME}/lib/bootstrap.jar -${PKGNAME}/lib/build-marker-IC-213.6777.52 -${PKGNAME}/lib/byte-buddy-agent.jar -${PKGNAME}/lib/cds/classesLogAgent.jar -${PKGNAME}/lib/classpath.txt -${PKGNAME}/lib/commons-net-3.8.0.jar -${PKGNAME}/lib/dbus-java-3.2.1.jar -${PKGNAME}/lib/dom-impl.jar -${PKGNAME}/lib/dom-openapi.jar -${PKGNAME}/lib/duplicates-analysis.jar -${PKGNAME}/lib/error-prone-annotations.jar -${PKGNAME}/lib/external-system-rt.jar -${PKGNAME}/lib/forms_rt.jar -${PKGNAME}/lib/grpc-netty-shaded.jar -${PKGNAME}/lib/idea.jar -${PKGNAME}/lib/idea_rt.jar -${PKGNAME}/lib/intellij-coverage-agent-1.0.613.jar -${PKGNAME}/lib/intellij-test-discovery.jar -${PKGNAME}/lib/java-utils-1.0.6.jar -${PKGNAME}/lib/jdkAnnotations.jar -${PKGNAME}/lib/jffi-1.2.19-native.jar -${PKGNAME}/lib/jffi-1.2.19.jar -${PKGNAME}/lib/jna.jar -${PKGNAME}/lib/jnr-a64asm-1.0.0.jar -${PKGNAME}/lib/jnr-constants-0.9.12.jar -${PKGNAME}/lib/jnr-enxio-0.21.jar -${PKGNAME}/lib/jnr-ffi-2.1.10.jar -${PKGNAME}/lib/jnr-posix-3.0.50.jar -${PKGNAME}/lib/jnr-unixsocket-0.23.jar -${PKGNAME}/lib/jnr-x86asm-1.0.2.jar -${PKGNAME}/lib/jps-model.jar -${PKGNAME}/lib/jsp-base-openapi.jar -${PKGNAME}/lib/junit.jar -${PKGNAME}/lib/junit4.jar -${PKGNAME}/lib/kotlin-reflect.jar -${PKGNAME}/lib/kotlin-stdlib-jdk8.jar -${PKGNAME}/lib/kotlin-test.jar -${PKGNAME}/lib/kotlinx.jar -${PKGNAME}/lib/org_codehaus_groovy_groovy-json.jar -${PKGNAME}/lib/org_codehaus_groovy_groovy-jsr223.jar -${PKGNAME}/lib/org_codehaus_groovy_groovy-templates.jar -${PKGNAME}/lib/org_codehaus_groovy_groovy-xml.jar -${PKGNAME}/lib/org_codehaus_groovy_groovy.jar -${PKGNAME}/lib/platform-api.jar -${PKGNAME}/lib/platform-impl.jar -${PKGNAME}/lib/platform-objectSerializer-annotations.jar -${PKGNAME}/lib/platform-statistics-devkit.jar -${PKGNAME}/lib/protobuf.jar -${PKGNAME}/lib/pty4j-native/linux/aarch64/libpty.so -${PKGNAME}/lib/pty4j-native/linux/arm/libpty.so -${PKGNAME}/lib/pty4j-native/linux/mips64el/libpty.so -${PKGNAME}/lib/pty4j-native/linux/ppc64le/libpty.so -${PKGNAME}/lib/pty4j-native/linux/x86-64/libpty.so -${PKGNAME}/lib/pty4j-native/linux/x86/libpty.so -${PKGNAME}/lib/pty4j.jar -${PKGNAME}/lib/rd-core.jar -${PKGNAME}/lib/rd-framework.jar -${PKGNAME}/lib/rd-swing.jar -${PKGNAME}/lib/rd-text.jar -${PKGNAME}/lib/stats.jar -${PKGNAME}/lib/structuralsearch.jar -${PKGNAME}/lib/testFramework-java.jar -${PKGNAME}/lib/testFramework.core.jar -${PKGNAME}/lib/testFramework.jar -${PKGNAME}/lib/tests_bootstrap.jar -${PKGNAME}/lib/uast-tests.jar -${PKGNAME}/lib/util.jar -${PKGNAME}/lib/winp.jar -${PKGNAME}/license/XStream_license.txt -${PKGNAME}/license/ant_license.txt -${PKGNAME}/license/asm_license.txt -${PKGNAME}/license/eclipse_license.txt -${PKGNAME}/license/eclipse_license2.txt -${PKGNAME}/license/gson_license.txt -${PKGNAME}/license/imgscalr_license.txt -${PKGNAME}/license/javahelp_license.txt -${PKGNAME}/license/javolution_license.txt -${PKGNAME}/license/jaxb_license.txt -${PKGNAME}/license/jaxen_license.txt -${PKGNAME}/license/jdom_license.txt -${PKGNAME}/license/jgoodies_forms_license.txt -${PKGNAME}/license/junit_license.txt -${PKGNAME}/license/kryo-license.txt -${PKGNAME}/license/log4j_license.txt -${PKGNAME}/license/microba_license.txt -${PKGNAME}/license/miglayout_swing_license.txt -${PKGNAME}/license/nanoxml_license.txt -${PKGNAME}/license/oromatcher_license.txt -${PKGNAME}/license/picoContainer_license.txt -${PKGNAME}/license/saxon-conditions.html -${PKGNAME}/license/swingx_license.txt -${PKGNAME}/license/third-party-libraries.html -${PKGNAME}/license/trove4j_license.txt -${PKGNAME}/license/winp_license.txt -${PKGNAME}/license/xerces_license.txt -${PKGNAME}/license/xmlrpc_license.txt -${PKGNAME}/license/yourkit-license-redist.txt -${PKGNAME}/plugins/ByteCodeViewer/lib/byteCodeViewer.jar -${PKGNAME}/plugins/Groovy/lib/Groovy.jar -${PKGNAME}/plugins/Groovy/lib/agent/gragent.jar -${PKGNAME}/plugins/Groovy/lib/console.groovy -${PKGNAME}/plugins/Groovy/lib/groovy-constants-rt.jar -${PKGNAME}/plugins/Groovy/lib/groovy-jps.jar -${PKGNAME}/plugins/Groovy/lib/groovy-rt-class-loader.jar -${PKGNAME}/plugins/Groovy/lib/groovy-rt.jar -${PKGNAME}/plugins/Groovy/lib/standardDsls/categoryTransform.gdsl -${PKGNAME}/plugins/Groovy/lib/standardDsls/closuresInMethod.gdsl -${PKGNAME}/plugins/Groovy/lib/standardDsls/defaultMethods.gdsl -${PKGNAME}/plugins/Groovy/lib/standardDsls/gantScript.gdsl -${PKGNAME}/plugins/Groovy/lib/standardDsls/metaDsl.gdsl -${PKGNAME}/plugins/IntelliLang/lib/IntelliLang.jar -${PKGNAME}/plugins/IntelliLang/lib/java-langInjection-jps.jar -${PKGNAME}/plugins/Kotlin/bin/linux/LLDBFrontend -${PKGNAME}/plugins/Kotlin/bin/macos/LLDBFrontend -${PKGNAME}/plugins/Kotlin/bin/windows/LLDBFrontend.exe -${PKGNAME}/plugins/Kotlin/kotlinc/META-INF/MANIFEST.MF -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kapt -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kapt.bat -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlin -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlin-dce-js -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlin-dce-js.bat -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlin.bat -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlinc -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlinc-js -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlinc-js.bat -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlinc-jvm -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlinc-jvm.bat -${PKGNAME}/plugins/Kotlin/kotlinc/bin/kotlinc.bat -${PKGNAME}/plugins/Kotlin/kotlinc/build.txt -${PKGNAME}/plugins/Kotlin/kotlinc/lib/allopen-compiler-plugin.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/android-extensions-compiler.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/android-extensions-runtime.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/annotations-13.0.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/js.engines.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/jvm-abi-gen.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-cli.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-runtime.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-daemon.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-imports-dumper-compiler-plugin.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-main-kts.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-preloader.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-reflect-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-reflect.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-runner.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-scripting-common.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler-impl.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-scripting-js.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-scripting-jvm.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-stdlib.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-js-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-js.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-junit-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-junit.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-testng-sources.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test-testng.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlin-test.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlinx-coroutines-core.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/kotlinx-serialization-compiler-plugin.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/mutability-annotations-compat.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/noarg-compiler-plugin.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/parcelize-compiler.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/parcelize-runtime.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/sam-with-receiver-compiler-plugin.jar -${PKGNAME}/plugins/Kotlin/kotlinc/lib/trove4j.jar -${PKGNAME}/plugins/Kotlin/kotlinc/license/COPYRIGHT.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/COPYRIGHT_HEADER.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/NOTICE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/README.md -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/aosp_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/args4j_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/asm_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/asmble_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/boost_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/closure-compiler_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/dart_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/fastutil_licence -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/gradle_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/guava_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/gwt_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/jquery_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/jshashtable_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/karma-teamcity-reporter_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/karma_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/lodash_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/maven_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/mocha-teamcity-reporter_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/pcollections_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/prototype_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/qunit_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/rhino_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/scala_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/teamcity-service-messages_LICENSE.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/dagger_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_distribution_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/findbugs_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/lombok_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/rxjava_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/testdata/spring_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/trove_license.txt -${PKGNAME}/plugins/Kotlin/kotlinc/license/third_party/trove_readme_license.txt -${PKGNAME}/plugins/Kotlin/lib/completion-ranking-kotlin-0.3.3.jar -${PKGNAME}/plugins/Kotlin/lib/javaslang-2.0.6.jar -${PKGNAME}/plugins/Kotlin/lib/javaslang-match-2.0.6.jar -${PKGNAME}/plugins/Kotlin/lib/javax.inject-1.jar -${PKGNAME}/plugins/Kotlin/lib/jps/kotlin-jps-plugin.jar -${PKGNAME}/plugins/Kotlin/lib/kotlin-common.jar -${PKGNAME}/plugins/Kotlin/lib/kotlin-compiler-for-ide-1.5.10-release-949.jar -${PKGNAME}/plugins/Kotlin/lib/kotlin-jps-common.jar -${PKGNAME}/plugins/Kotlin/lib/kotlin-plugin.jar -${PKGNAME}/plugins/Kotlin/lib/kotlin-reflect.jar -${PKGNAME}/plugins/Kotlin/lib/kotlin-stdlib-jdk8.jar -${PKGNAME}/plugins/Kotlin/lib/kotlinx-collections-immutable-jvm-0.3.4.jar -${PKGNAME}/plugins/Kotlin/lib/kotlinx-coroutines-core-jvm-1.5.2.jar -${PKGNAME}/plugins/Kotlin/lib/kotlinx-coroutines-jdk8-1.5.2.jar -${PKGNAME}/plugins/Kotlin/scripts/konan_lldb.py -${PKGNAME}/plugins/PerforceIntegration/lib/PerforceIntegration.jar -${PKGNAME}/plugins/android-gradle-dsl/lib/android-gradle-dsl.jar -${PKGNAME}/plugins/android/lib/3rd-party.jar -${PKGNAME}/plugins/android/lib/HdrHistogram-2.1.4.jar -${PKGNAME}/plugins/android/lib/aapt2-proto-0.3.1.jar -${PKGNAME}/plugins/android/lib/adt-ui.jar -${PKGNAME}/plugins/android/lib/android-base-common.jar -${PKGNAME}/plugins/android/lib/android-common.jar -${PKGNAME}/plugins/android/lib/android-extensions-ide.jar -${PKGNAME}/plugins/android/lib/android-kotlin.jar -${PKGNAME}/plugins/android/lib/android-profilers.jar -${PKGNAME}/plugins/android/lib/android-test-plugin-result-listener-gradle-proto.jar -${PKGNAME}/plugins/android/lib/android.jar -${PKGNAME}/plugins/android/lib/antlr4-runtime.jar -${PKGNAME}/plugins/android/lib/asm-7.0.jar -${PKGNAME}/plugins/android/lib/asm-analysis-7.0.jar -${PKGNAME}/plugins/android/lib/asm-tree-7.0.jar -${PKGNAME}/plugins/android/lib/auto-common.jar -${PKGNAME}/plugins/android/lib/background-inspector-proto.jar -${PKGNAME}/plugins/android/lib/baksmali-2.2.4.jar -${PKGNAME}/plugins/android/lib/build-common.jar -${PKGNAME}/plugins/android/lib/commons-compress-1.21.jar -${PKGNAME}/plugins/android/lib/commons-lang.jar -${PKGNAME}/plugins/android/lib/core-3.4.0.jar -${PKGNAME}/plugins/android/lib/data-binding.jar -${PKGNAME}/plugins/android/lib/deploy_java_proto.jar -${PKGNAME}/plugins/android/lib/dexlib2-2.2.4.jar -${PKGNAME}/plugins/android/lib/eclipse-layout-kernel.jar -${PKGNAME}/plugins/android/lib/emulator_java_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/explainer.jar -${PKGNAME}/plugins/android/lib/flatbuffers-java.jar -${PKGNAME}/plugins/android/lib/generator.jar -${PKGNAME}/plugins/android/lib/inspectors-common.jar -${PKGNAME}/plugins/android/lib/instantapps-api.jar -${PKGNAME}/plugins/android/lib/javapoet.jar -${PKGNAME}/plugins/android/lib/javax.inject-1.jar -${PKGNAME}/plugins/android/lib/jb-layoutlib-native-jdk11-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/jb-r8.jar -${PKGNAME}/plugins/android/lib/jetifier-core.jar -${PKGNAME}/plugins/android/lib/juniversalchardet.jar -${PKGNAME}/plugins/android/lib/kotlin-gradle-plugin-model-1.4.32.jar -${PKGNAME}/plugins/android/lib/kotlinx-coroutines-guava-1.5.2.jar -${PKGNAME}/plugins/android/lib/kxml2-2.3.0.jar -${PKGNAME}/plugins/android/lib/layout_inspector_compose_java_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/layout_inspector_skia_java_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/layout_inspector_view_java_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/layoutlib-loader.jar -${PKGNAME}/plugins/android/lib/libam-instrumentation-data-proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/libandroid-core-proto.jar -${PKGNAME}/plugins/android/lib/libapp-processes-proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/libjava_sites.jar -${PKGNAME}/plugins/android/lib/libjava_version.jar -${PKGNAME}/plugins/android/lib/libstudio.android-test-plugin-host-device-info-proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/libstudio.proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/libstudio_android-test-plugin-host-retention-proto.jar -${PKGNAME}/plugins/android/lib/lint-ide.jar -${PKGNAME}/plugins/android/lib/manifest-merger.jar -${PKGNAME}/plugins/android/lib/moshi.jar -${PKGNAME}/plugins/android/lib/network_inspector_java_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/okio.jar -${PKGNAME}/plugins/android/lib/pepk.jar -${PKGNAME}/plugins/android/lib/perfetto-protos-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/pixelprobe.jar -${PKGNAME}/plugins/android/lib/precompiled-analytics-crash.jar -${PKGNAME}/plugins/android/lib/precompiled-analytics-shared.jar -${PKGNAME}/plugins/android/lib/precompiled-analytics-tracker.jar -${PKGNAME}/plugins/android/lib/proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/sdk-common.jar -${PKGNAME}/plugins/android/lib/sdk-tools.jar -${PKGNAME}/plugins/android/lib/sdklib.jar -${PKGNAME}/plugins/android/lib/shared.jar -${PKGNAME}/plugins/android/lib/spantable_jar.jar -${PKGNAME}/plugins/android/lib/sqlite-jdbc-3.34.0.jar -${PKGNAME}/plugins/android/lib/sqlite_inspector_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/studio-grpc-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/studio-proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/tensorflow-lite-metadata.jar -${PKGNAME}/plugins/android/lib/traceprocessor-proto.jar -${PKGNAME}/plugins/android/lib/transport_java_proto-27.3.0.0.jar -${PKGNAME}/plugins/android/lib/ui-animation-tooling-internal.jar -${PKGNAME}/plugins/android/lib/util-2.2.4.jar -${PKGNAME}/plugins/android/lib/utp-core-proto.jar -${PKGNAME}/plugins/android/lib/utp.jar -${PKGNAME}/plugins/android/lib/wizard-template.jar -${PKGNAME}/plugins/android/lib/workmanager-inspector-proto.jar -${PKGNAME}/plugins/android/resources/androidAnnotations.jar -${PKGNAME}/plugins/android/resources/device-art-resources/automotive_1024/back.png -${PKGNAME}/plugins/android/resources/device-art-resources/automotive_1024/fore.png -${PKGNAME}/plugins/android/resources/device-art-resources/automotive_1024/layout -${PKGNAME}/plugins/android/resources/device-art-resources/device-art.xml -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/layout -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/galaxy_nexus/thumb.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_10/thumb.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_4/thumb.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_5x/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_6p/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7/thumb.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_7_2013/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_9/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/button.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/power.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/power_land.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/thumb.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/volume_down.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/volume_down_land.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/volume_up.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_one/volume_up_land.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/button.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/layout -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/power.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/power_land.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/thumb.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/volume_down.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/volume_down_land.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/volume_up.png -${PKGNAME}/plugins/android/resources/device-art-resources/nexus_s/volume_up_land.png -${PKGNAME}/plugins/android/resources/device-art-resources/phone/phone_back_simple_land.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/phone/phone_back_simple_port.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/phone/phone_shadow_simple_land.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/phone/phone_shadow_simple_port.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_2_xl/round_corners.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3/round_corners.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3_xl/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3_xl/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3_xl/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3_xl/round_corners.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a/rounded_corners.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a_xl/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a_xl/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a_xl/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a_xl/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a_xl/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_3a_xl/rounded_corners.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4/back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4/mask.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4_xl/back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4_xl/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4_xl/mask.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4a/back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4a/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4a/mask.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4a_5g/back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4a_5g/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_4a_5g/mask.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_5/back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_5/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_5/mask.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_c/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_silver/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/layout -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/pixel_xl_silver/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/tablet/tablet_back_simple.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/tablet/tablet_shadow_simple_land.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/tablet/tablet_shadow_simple_port.9.png -${PKGNAME}/plugins/android/resources/device-art-resources/tv_1080p/back.png -${PKGNAME}/plugins/android/resources/device-art-resources/tv_1080p/fore.png -${PKGNAME}/plugins/android/resources/device-art-resources/tv_1080p/layout -${PKGNAME}/plugins/android/resources/device-art-resources/tv_1080p/shadow.png -${PKGNAME}/plugins/android/resources/device-art-resources/tv_720p/back.png -${PKGNAME}/plugins/android/resources/device-art-resources/tv_720p/fore.png -${PKGNAME}/plugins/android/resources/device-art-resources/tv_720p/layout -${PKGNAME}/plugins/android/resources/device-art-resources/tv_720p/shadow.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/arrow_down.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/arrow_left.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/arrow_right.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/arrow_up.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/back.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/button.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/circle_mask_320px.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/circle_mask_380px.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/circle_mask_380px_onion.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/controls.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/fore.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/hardware.ini -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/key.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/layout -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/mask.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/select.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round/shadow.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round_chin_320_290/device_bezel.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round_chin_320_290/hardware.ini -${PKGNAME}/plugins/android/resources/device-art-resources/wear_round_chin_320_290/layout -${PKGNAME}/plugins/android/resources/device-art-resources/wear_square/back.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_square/fore.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_square/hardware.ini -${PKGNAME}/plugins/android/resources/device-art-resources/wear_square/layout -${PKGNAME}/plugins/android/resources/device-art-resources/wear_square/mask.png -${PKGNAME}/plugins/android/resources/device-art-resources/wear_square/shadow.png -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/land_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/land_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/land_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/port_back.webp -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/port_fore.webp -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/port_shadow.webp -${PKGNAME}/plugins/android/resources/device-art-resources/xoom/thumb.png -${PKGNAME}/plugins/android/resources/images/asset_studio/ic_banner_image.xml -${PKGNAME}/plugins/android/resources/images/asset_studio/ic_launcher_background.xml -${PKGNAME}/plugins/android/resources/images/asset_studio/ic_launcher_foreground.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_1.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_10.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_11.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_12.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_13.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_14.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_15.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_16.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_2.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_3.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_4.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_5.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_6.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_7.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_8.xml -${PKGNAME}/plugins/android/resources/sampleData/avatars/avatar_9.xml -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/A_Photographer.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Apres_la_Pluie.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Caterpillar.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Colors_of_Autumn.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Countryside.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Death_Valley_-_Dunes.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Despair.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Eagle_Fall_Sunrise.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Green_Grass.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Hanging_Leaf.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Jelly_Fish_3.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Kauai.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Longue_Vue.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Lost_in_a_Field.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Monument_Valley_Overlook.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/One_Wheel.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Open_Sky.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Orange_Sunset.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Stream.webp -${PKGNAME}/plugins/android/resources/sampleData/backgrounds/scenic/Yosemite_Tree.webp -${PKGNAME}/plugins/ant/lib/ant-jps.jar -${PKGNAME}/plugins/ant/lib/antIntegration.jar -${PKGNAME}/plugins/completionMlRanking/lib/completionMlRanking.jar -${PKGNAME}/plugins/configurationScript/lib/configurationScript.jar -${PKGNAME}/plugins/copyright/lib/copyright.jar -${PKGNAME}/plugins/coverage/lib/3rd-party.jar -${PKGNAME}/plugins/coverage/lib/coverage.jar -${PKGNAME}/plugins/coverage/lib/coverage_rt.jar -${PKGNAME}/plugins/coverage/lib/jacoco.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/cwm-plugin-projector.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/Java-WebSocket-1.4.0.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/kotlinx-serialization-protobuf-jvm-1.3.0.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-awt-30f65afc.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-common-1731046c.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-common-jvm-1731046c.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-ij-common-1731046c.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-server-30f65afc.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-server-core-1731046c.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-util-agent-1731046c.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-util-loading-1731046c.jar -${PKGNAME}/plugins/cwm-plugin-projector/lib/projector/projector-util-logging-jvm-1731046c.jar -${PKGNAME}/plugins/cwm-plugin/jre-build.txt -${PKGNAME}/plugins/cwm-plugin/lib/bouncy-castle-pgp.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-common.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-host-unattended.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-host.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-lobby-common.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-plugin-terminal.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-plugin.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-unattended-common.jar -${PKGNAME}/plugins/cwm-plugin/lib/cwm-unattended-ssh.jar -${PKGNAME}/plugins/cwm-plugin/lib/java-websocket.jar -${PKGNAME}/plugins/cwm-plugin/lib/jnaerator-runtime.jar -${PKGNAME}/plugins/cwm-plugin/lib/jstun.jar -${PKGNAME}/plugins/cwm-plugin/lib/kotlinx-serialization-protobuf.jar -${PKGNAME}/plugins/cwm-plugin/lib/projector-client-common.jar -${PKGNAME}/plugins/cwm-plugin/lib/projector-client-swing.jar -${PKGNAME}/plugins/cwm-plugin/lib/quiche-jna-stubs.jar -${PKGNAME}/plugins/cwm-plugin/lib/rd-text-2021.3.5.jar -${PKGNAME}/plugins/cwm-plugin/lib/tls-channel.jar -${PKGNAME}/plugins/cwm-plugin/quiche-native/darwin-aarch64/libquiche.dylib -${PKGNAME}/plugins/cwm-plugin/quiche-native/darwin-x86-64/libquiche.dylib -${PKGNAME}/plugins/cwm-plugin/quiche-native/linux-x86-64/libquiche.so -${PKGNAME}/plugins/cwm-plugin/quiche-native/win32-x86-64/quiche.dll -${PKGNAME}/plugins/devkit/lib/3rd-party.jar -${PKGNAME}/plugins/devkit/lib/devkit-jps.jar -${PKGNAME}/plugins/devkit/lib/devkit.jar -${PKGNAME}/plugins/eclipse/lib/eclipse-common.jar -${PKGNAME}/plugins/eclipse/lib/eclipse-jps.jar -${PKGNAME}/plugins/eclipse/lib/eclipse.jar -${PKGNAME}/plugins/editorconfig/lib/editorconfig.jar -${PKGNAME}/plugins/emojipicker/lib/emojipicker.jar -${PKGNAME}/plugins/externalSystem-dependencyUpdater/lib/externalSystem-dependencyUpdater.jar -${PKGNAME}/plugins/featuresTrainer/lib/assertj-core-3.20.2.jar -${PKGNAME}/plugins/featuresTrainer/lib/assertj-swing-3.17.1.jar -${PKGNAME}/plugins/featuresTrainer/lib/featuresTrainer.jar -${PKGNAME}/plugins/git4idea/lib/git4idea-rt.jar -${PKGNAME}/plugins/git4idea/lib/git4idea.jar -${PKGNAME}/plugins/github/lib/github.jar -${PKGNAME}/plugins/gradle-dependencyUpdater/lib/gradle-dependencyUpdater.jar -${PKGNAME}/plugins/gradle-java-maven/lib/gradle-java-maven.jar -${PKGNAME}/plugins/gradle-java/lib/gradle-java.jar -${PKGNAME}/plugins/gradle-java/lib/gradle-jps.jar -${PKGNAME}/plugins/gradle/lib/gradle-api-7.1.jar -${PKGNAME}/plugins/gradle/lib/gradle-api-impldep-7.1.jar -${PKGNAME}/plugins/gradle/lib/gradle-launcher-7.1.jar -${PKGNAME}/plugins/gradle/lib/gradle-tooling-extension-api.jar -${PKGNAME}/plugins/gradle/lib/gradle-tooling-extension-impl.jar -${PKGNAME}/plugins/gradle/lib/gradle-wrapper-7.1.jar -${PKGNAME}/plugins/gradle/lib/gradle.jar -${PKGNAME}/plugins/grazie/lib/grazie.jar -${PKGNAME}/plugins/hg4idea/lib/hg4idea.jar -${PKGNAME}/plugins/indexing-shared/lib/indexing-shared.jar -${PKGNAME}/plugins/java-decompiler/lib/java-decompiler.jar -${PKGNAME}/plugins/java-i18n/lib/java-i18n.jar -${PKGNAME}/plugins/java-ide-customization/lib/java-ide-customization.jar -${PKGNAME}/plugins/java/lib/3rd-party.jar -${PKGNAME}/plugins/java/lib/aether-dependency-resolver.jar -${PKGNAME}/plugins/java/lib/debugger-memory-agent.jar -${PKGNAME}/plugins/java/lib/ecj/eclipse.jar -${PKGNAME}/plugins/java/lib/java-api.jar -${PKGNAME}/plugins/java/lib/java-impl.jar -${PKGNAME}/plugins/java/lib/javac2.jar -${PKGNAME}/plugins/java/lib/jb-jdi-2.16.jar -${PKGNAME}/plugins/java/lib/jdkAnnotations.jar -${PKGNAME}/plugins/java/lib/jgoodies-common-1.4.0.jar -${PKGNAME}/plugins/java/lib/jps-builders-6.jar -${PKGNAME}/plugins/java/lib/jps-builders.jar -${PKGNAME}/plugins/java/lib/jps-javac-extension-1.jar -${PKGNAME}/plugins/java/lib/jps-launcher.jar -${PKGNAME}/plugins/java/lib/jshell-frontend.jar -${PKGNAME}/plugins/java/lib/jshell-protocol.jar -${PKGNAME}/plugins/java/lib/qdox.jar -${PKGNAME}/plugins/java/lib/rt/debugger-agent.jar -${PKGNAME}/plugins/java/lib/rt/jps-javac-rt-rpc.jar -${PKGNAME}/plugins/java/lib/rt/protobuf-java6.jar -${PKGNAME}/plugins/java/lib/sa-jdwp.jar -${PKGNAME}/plugins/javaFX/lib/javaFX-common.jar -${PKGNAME}/plugins/javaFX/lib/javaFX-jps.jar -${PKGNAME}/plugins/javaFX/lib/javaFX.jar -${PKGNAME}/plugins/javaFX/lib/rt/sceneBuilderBridge.jar -${PKGNAME}/plugins/junit/lib/idea-junit.jar -${PKGNAME}/plugins/junit/lib/junit-rt.jar -${PKGNAME}/plugins/junit/lib/junit5-rt.jar -${PKGNAME}/plugins/lombok/lib/lombok.jar -${PKGNAME}/plugins/markdown/lib/markdown.jar -${PKGNAME}/plugins/marketplace/lib/boot/marketplace-bootstrap.jar -${PKGNAME}/plugins/marketplace/lib/boot/marketplace-impl.jar -${PKGNAME}/plugins/marketplace/lib/marketplace.jar -${PKGNAME}/plugins/marketplace/platform-build.txt -${PKGNAME}/plugins/maven-model/lib/maven-model.jar -${PKGNAME}/plugins/maven/lib/3rd-party.jar -${PKGNAME}/plugins/maven/lib/artifact-resolver-m2.jar -${PKGNAME}/plugins/maven/lib/artifact-resolver-m3.jar -${PKGNAME}/plugins/maven/lib/artifact-resolver-m31.jar -${PKGNAME}/plugins/maven/lib/maven-event-listener.jar -${PKGNAME}/plugins/maven/lib/maven-jps.jar -${PKGNAME}/plugins/maven/lib/maven-server-api.jar -${PKGNAME}/plugins/maven/lib/maven.jar -${PKGNAME}/plugins/maven/lib/maven2-server-lib/archetype-common-2.0-alpha-4-SNAPSHOT.jar -${PKGNAME}/plugins/maven/lib/maven2-server-lib/commons-beanutils.jar -${PKGNAME}/plugins/maven/lib/maven2-server-lib/maven-dependency-tree-1.2.jar -${PKGNAME}/plugins/maven/lib/maven2-server-lib/mercury-artifact-1.0-alpha-6.jar -${PKGNAME}/plugins/maven/lib/maven2-server-lib/nexus-indexer-1.2.3.jar -${PKGNAME}/plugins/maven/lib/maven2-server.jar -${PKGNAME}/plugins/maven/lib/maven3-server-common.jar -${PKGNAME}/plugins/maven/lib/maven3-server-lib/archetype-catalog-2.2.jar -${PKGNAME}/plugins/maven/lib/maven3-server-lib/archetype-common-2.2.jar -${PKGNAME}/plugins/maven/lib/maven3-server-lib/lucene-core-2.4.1.jar -${PKGNAME}/plugins/maven/lib/maven3-server-lib/maven-dependency-tree-1.2.jar -${PKGNAME}/plugins/maven/lib/maven3-server-lib/nexus-indexer-3.0.4.jar -${PKGNAME}/plugins/maven/lib/maven3-server-lib/nexus-indexer-artifact-1.0.1.jar -${PKGNAME}/plugins/maven/lib/maven3-server.jar -${PKGNAME}/plugins/maven/lib/maven3/LICENSE -${PKGNAME}/plugins/maven/lib/maven3/NOTICE -${PKGNAME}/plugins/maven/lib/maven3/README.txt -${PKGNAME}/plugins/maven/lib/maven3/bin/m2.conf -${PKGNAME}/plugins/maven/lib/maven3/bin/mvn -${PKGNAME}/plugins/maven/lib/maven3/bin/mvn.cmd -${PKGNAME}/plugins/maven/lib/maven3/bin/mvnDebug -${PKGNAME}/plugins/maven/lib/maven3/bin/mvnDebug.cmd -${PKGNAME}/plugins/maven/lib/maven3/bin/mvnyjp -${PKGNAME}/plugins/maven/lib/maven3/boot/plexus-classworlds-2.6.0.jar -${PKGNAME}/plugins/maven/lib/maven3/boot/plexus-classworlds.license -${PKGNAME}/plugins/maven/lib/maven3/conf/logging/simplelogger.properties -${PKGNAME}/plugins/maven/lib/maven3/conf/settings.xml -${PKGNAME}/plugins/maven/lib/maven3/conf/toolchains.xml -${PKGNAME}/plugins/maven/lib/maven3/lib/cdi-api-1.0.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/cdi-api.license -${PKGNAME}/plugins/maven/lib/maven3/lib/commons-cli-1.4.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/commons-cli.license -${PKGNAME}/plugins/maven/lib/maven3/lib/commons-io-2.5.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/commons-io.license -${PKGNAME}/plugins/maven/lib/maven3/lib/commons-lang3-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/commons-lang3.license -${PKGNAME}/plugins/maven/lib/maven3/lib/ext/README.txt -${PKGNAME}/plugins/maven/lib/maven3/lib/guava-25.1-android.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/guava.license -${PKGNAME}/plugins/maven/lib/maven3/lib/guice-4.2.1-no_aop.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/guice.license -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-1.17.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/README.txt -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/freebsd32/libjansi.so -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/freebsd64/libjansi.so -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/linux32/libjansi.so -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/linux64/libjansi.so -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/osx/libjansi.jnilib -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/windows32/jansi.dll -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi-native/windows64/jansi.dll -${PKGNAME}/plugins/maven/lib/maven3/lib/jansi.license -${PKGNAME}/plugins/maven/lib/maven3/lib/javax.inject-1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/javax.inject.license -${PKGNAME}/plugins/maven/lib/maven3/lib/jcl-over-slf4j-1.7.29.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/jcl-over-slf4j.license -${PKGNAME}/plugins/maven/lib/maven3/lib/jsoup-1.12.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/jsoup.license -${PKGNAME}/plugins/maven/lib/maven3/lib/jsr250-api-1.0.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/jsr250-api.license -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-artifact-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-builder-support-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-compat-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-core-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-embedder-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-model-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-model-builder-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-plugin-api-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-repository-metadata-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-api-1.6.2.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-connector-basic-1.6.2.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-impl-1.6.2.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-provider-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-spi-1.6.2.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-transport-wagon-1.6.2.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-resolver-util-1.6.2.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-settings-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-settings-builder-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-shared-utils-3.2.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/maven-slf4j-provider-3.8.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject-0.3.4.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject.license -${PKGNAME}/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus-0.3.4.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus.license -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-cipher-1.7.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-cipher.license -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-component-annotations-2.1.0.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-component-annotations.license -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-interpolation-1.25.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-interpolation.license -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher-1.4.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher.license -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-utils-3.2.1.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/plexus-utils.license -${PKGNAME}/plugins/maven/lib/maven3/lib/slf4j-api-1.7.29.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/slf4j-api.license -${PKGNAME}/plugins/maven/lib/maven3/lib/wagon-file-3.4.3.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/wagon-http-3.4.3-shaded.jar -${PKGNAME}/plugins/maven/lib/maven3/lib/wagon-provider-api-3.4.3.jar -${PKGNAME}/plugins/maven/lib/maven30-server.jar -${PKGNAME}/plugins/maven/lib/maven36-server.jar -${PKGNAME}/plugins/packageSearch/lib/packageSearch.jar -${PKGNAME}/plugins/platform-images/lib/platform-images.jar -${PKGNAME}/plugins/platform-tracing-ide/lib/platform-tracing-ide.jar -${PKGNAME}/plugins/properties/lib/properties.jar -${PKGNAME}/plugins/qodana/lib/qodana.jar -${PKGNAME}/plugins/repository-search/lib/repository-search.jar -${PKGNAME}/plugins/searchEverywhereMl/lib/searchEverywhereMl.jar -${PKGNAME}/plugins/settings-repository/lib/settings-repository.jar -${PKGNAME}/plugins/sh/lib/sh.jar -${PKGNAME}/plugins/smali/lib/smali.jar -${PKGNAME}/plugins/space/lib/3rd-party.jar -${PKGNAME}/plugins/space/lib/jackson-datatype-joda-2.13.0.jar -${PKGNAME}/plugins/space/lib/joda-time-2.10.8.jar -${PKGNAME}/plugins/space/lib/kotlinx-coroutines-slf4j-1.5.2.jar -${PKGNAME}/plugins/space/lib/space-idea-sdk-1.1.83546.jar -${PKGNAME}/plugins/space/lib/space-java-jps.jar -${PKGNAME}/plugins/space/lib/space.jar -${PKGNAME}/plugins/stream-debugger/lib/stream-debugger.jar -${PKGNAME}/plugins/svn4idea/lib/sqlite-jdbc-3.34.0.jar -${PKGNAME}/plugins/svn4idea/lib/svn4idea.jar -${PKGNAME}/plugins/tasks/lib/tasks-core.jar -${PKGNAME}/plugins/terminal/.zshenv -${PKGNAME}/plugins/terminal/fish/config.fish -${PKGNAME}/plugins/terminal/jediterm-bash.in -${PKGNAME}/plugins/terminal/lib/terminal.jar -${PKGNAME}/plugins/testng/lib/aopalliance-1.0.jar -${PKGNAME}/plugins/testng/lib/guice-4.1.0-no_aop.jar -${PKGNAME}/plugins/testng/lib/javax.inject-1.jar -${PKGNAME}/plugins/testng/lib/jcommander-1.72.jar -${PKGNAME}/plugins/testng/lib/testng-7.1.0.jar -${PKGNAME}/plugins/testng/lib/testng-plugin.jar -${PKGNAME}/plugins/testng/lib/testng-rt.jar -${PKGNAME}/plugins/textmate/lib/bundles/bat/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/bat/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/bat/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/bat/package.json -${PKGNAME}/plugins/textmate/lib/bundles/bat/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/bat/snippets/batchfile.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/bat/syntaxes/batchfile.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/clojure/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/clojure/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/clojure/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/clojure/package.json -${PKGNAME}/plugins/textmate/lib/bundles/clojure/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/package.json -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/snippets/coffeescript.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/coffeescript/syntaxes/coffeescript.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/cpp/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/package.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/snippets/c.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/cpp/snippets/cpp.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/cpp/syntaxes/c.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/syntaxes/cuda-cpp.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/cpp/syntaxes/platform.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/csharp/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/csharp/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/csharp/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/csharp/package.json -${PKGNAME}/plugins/textmate/lib/bundles/csharp/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/csharp/snippets/csharp.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/csharp/syntaxes/csharp.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/css/.vscode/launch.json -${PKGNAME}/plugins/textmate/lib/bundles/css/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/css/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/css/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/css/package.json -${PKGNAME}/plugins/textmate/lib/bundles/css/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/css/syntaxes/css.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/docker/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/docker/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/docker/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/docker/package.json -${PKGNAME}/plugins/textmate/lib/bundles/docker/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/docker/syntaxes/docker.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/package.json -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/snippets/fsharp.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/fsharp/syntaxes/fsharp.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/git/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/git/README.md -${PKGNAME}/plugins/textmate/lib/bundles/git/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/git/extension.webpack.config.js -${PKGNAME}/plugins/textmate/lib/bundles/git/languages/diff.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/git/languages/git-commit.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/git/languages/git-rebase.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/git/languages/ignore.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/git/package.json -${PKGNAME}/plugins/textmate/lib/bundles/git/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/git/src/api/api1.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/api/extension.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/api/git.d.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/askpass-empty.sh -${PKGNAME}/plugins/textmate/lib/bundles/git/src/askpass-main.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/askpass.sh -${PKGNAME}/plugins/textmate/lib/bundles/git/src/askpass.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/autofetch.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/commands.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/contentProvider.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/decorationProvider.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/decorators.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/emoji.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/encoding.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/fileSystemProvider.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/git.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/ipc/ipcClient.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/ipc/ipcServer.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/log.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/main.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/model.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/protocolHandler.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/pushError.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/remoteProvider.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/remoteSource.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/repository.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/staging.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/statusbar.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/terminal.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/test/git.test.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/test/index.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/test/smoke.test.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/timelineProvider.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/typings/refs.d.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/uri.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/util.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/src/watch.ts -${PKGNAME}/plugins/textmate/lib/bundles/git/syntaxes/diff.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/git/syntaxes/git-commit.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/git/syntaxes/git-rebase.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/git/syntaxes/ignore.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/git/tsconfig.json -${PKGNAME}/plugins/textmate/lib/bundles/git/yarn.lock -${PKGNAME}/plugins/textmate/lib/bundles/go/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/go/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/go/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/go/package.json -${PKGNAME}/plugins/textmate/lib/bundles/go/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/go/syntaxes/go.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/groovy/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/groovy/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/groovy/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/groovy/package.json -${PKGNAME}/plugins/textmate/lib/bundles/groovy/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/groovy/snippets/groovy.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/groovy/syntaxes/groovy.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/handlebars/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/handlebars/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/handlebars/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/handlebars/package.json -${PKGNAME}/plugins/textmate/lib/bundles/handlebars/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/handlebars/syntaxes/Handlebars.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/hlsl/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/hlsl/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/hlsl/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/hlsl/package.json -${PKGNAME}/plugins/textmate/lib/bundles/hlsl/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/hlsl/syntaxes/hlsl.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/html/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/html/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/html/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/html/package.json -${PKGNAME}/plugins/textmate/lib/bundles/html/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/ini/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/ini/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/ini/ini.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/ini/package.json -${PKGNAME}/plugins/textmate/lib/bundles/ini/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/ini/properties.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/ini/syntaxes/ini.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/java/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/java/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/java/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/java/package.json -${PKGNAME}/plugins/textmate/lib/bundles/java/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/java/snippets/java.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/java/syntaxes/java.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/javascript/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/javascript-language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/package.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/snippets/javascript.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScript.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScriptReact.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/javascript/syntaxes/Readme.md -${PKGNAME}/plugins/textmate/lib/bundles/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage -${PKGNAME}/plugins/textmate/lib/bundles/javascript/tags-language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/json/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/json/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/json/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/json/package.json -${PKGNAME}/plugins/textmate/lib/bundles/json/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/json/syntaxes/JSON.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/json/syntaxes/JSONC.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/jsp/LICENSE -${PKGNAME}/plugins/textmate/lib/bundles/jsp/README.md -${PKGNAME}/plugins/textmate/lib/bundles/jsp/jsp-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/jsp/package.json -${PKGNAME}/plugins/textmate/lib/bundles/jsp/syntaxes/jsp.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/julia/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/julia/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/julia/package.json -${PKGNAME}/plugins/textmate/lib/bundles/julia/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/julia/syntaxes/julia.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/kotlin/info.plist -${PKGNAME}/plugins/textmate/lib/bundles/kotlin/snippets/class.tmSnippet -${PKGNAME}/plugins/textmate/lib/bundles/kotlin/snippets/println.tmSnippet -${PKGNAME}/plugins/textmate/lib/bundles/kotlin/syntaxes/Kotlin.tmLanguage -${PKGNAME}/plugins/textmate/lib/bundles/less/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/less/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/less/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/less/package.json -${PKGNAME}/plugins/textmate/lib/bundles/less/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/less/syntaxes/less.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/log/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/log/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/log/package.json -${PKGNAME}/plugins/textmate/lib/bundles/log/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/log/syntaxes/log.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/lua/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/lua/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/lua/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/lua/package.json -${PKGNAME}/plugins/textmate/lib/bundles/lua/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/lua/syntaxes/lua.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/make/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/make/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/make/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/make/package.json -${PKGNAME}/plugins/textmate/lib/bundles/make/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/make/syntaxes/make.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/package.json -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/snippets/markdown.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/markdown-basics/syntaxes/markdown.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/mdx/license -${PKGNAME}/plugins/textmate/lib/bundles/mdx/package.json -${PKGNAME}/plugins/textmate/lib/bundles/mdx/syntaxes/mdx.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/package.json -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c++.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/perl/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/package.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/perl.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/perl6.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/syntaxes/perl.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/perl/syntaxes/perl6.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/php/.vscode/launch.json -${PKGNAME}/plugins/textmate/lib/bundles/php/.vscode/tasks.json -${PKGNAME}/plugins/textmate/lib/bundles/php/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/php/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/php/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/php/package.json -${PKGNAME}/plugins/textmate/lib/bundles/php/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/php/snippets/php.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/php/syntaxes/html.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/php/syntaxes/php.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/powershell/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/powershell/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/powershell/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/powershell/package.json -${PKGNAME}/plugins/textmate/lib/bundles/powershell/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/powershell/snippets/powershell.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/powershell/syntaxes/powershell.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/pug/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/pug/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/pug/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/pug/package.json -${PKGNAME}/plugins/textmate/lib/bundles/pug/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/pug/syntaxes/pug.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/python/.vscode/launch.json -${PKGNAME}/plugins/textmate/lib/bundles/python/.vscode/tasks.json -${PKGNAME}/plugins/textmate/lib/bundles/python/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/python/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/python/extension-browser.webpack.config.js -${PKGNAME}/plugins/textmate/lib/bundles/python/extension.webpack.config.js -${PKGNAME}/plugins/textmate/lib/bundles/python/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/python/package.json -${PKGNAME}/plugins/textmate/lib/bundles/python/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/python/src/pythonMain.ts -${PKGNAME}/plugins/textmate/lib/bundles/python/src/typings/ref.d.ts -${PKGNAME}/plugins/textmate/lib/bundles/python/syntaxes/MagicPython.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/python/syntaxes/MagicRegExp.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/python/tsconfig.json -${PKGNAME}/plugins/textmate/lib/bundles/r/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/r/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/r/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/r/package.json -${PKGNAME}/plugins/textmate/lib/bundles/r/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/r/syntaxes/r.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/razor/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/razor/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/razor/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/razor/package.json -${PKGNAME}/plugins/textmate/lib/bundles/razor/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/razor/syntaxes/cshtml.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/ruby/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/ruby/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/ruby/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/ruby/package.json -${PKGNAME}/plugins/textmate/lib/bundles/ruby/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/ruby/syntaxes/ruby.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/rust/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/rust/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/rust/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/rust/package.json -${PKGNAME}/plugins/textmate/lib/bundles/rust/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/rust/syntaxes/rust.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/scss/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/scss/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/scss/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/scss/package.json -${PKGNAME}/plugins/textmate/lib/bundles/scss/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/scss/syntaxes/sassdoc.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/scss/syntaxes/scss.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/search-result/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/search-result/README.md -${PKGNAME}/plugins/textmate/lib/bundles/search-result/extension-browser.webpack.config.js -${PKGNAME}/plugins/textmate/lib/bundles/search-result/extension.webpack.config.js -${PKGNAME}/plugins/textmate/lib/bundles/search-result/package.json -${PKGNAME}/plugins/textmate/lib/bundles/search-result/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/search-result/src/extension.ts -${PKGNAME}/plugins/textmate/lib/bundles/search-result/src/media/refresh-dark.svg -${PKGNAME}/plugins/textmate/lib/bundles/search-result/src/media/refresh-light.svg -${PKGNAME}/plugins/textmate/lib/bundles/search-result/src/typings/refs.d.ts -${PKGNAME}/plugins/textmate/lib/bundles/search-result/syntaxes/generateTMLanguage.js -${PKGNAME}/plugins/textmate/lib/bundles/search-result/syntaxes/searchResult.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/search-result/tsconfig.json -${PKGNAME}/plugins/textmate/lib/bundles/search-result/yarn.lock -${PKGNAME}/plugins/textmate/lib/bundles/shaderlab/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/shaderlab/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/shaderlab/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/shaderlab/package.json -${PKGNAME}/plugins/textmate/lib/bundles/shaderlab/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/shaderlab/syntaxes/shaderlab.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/shellscript/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/shellscript/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/shellscript/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/shellscript/package.json -${PKGNAME}/plugins/textmate/lib/bundles/shellscript/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/shellscript/syntaxes/shell-unix-bash.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/sql/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/sql/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/sql/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/sql/package.json -${PKGNAME}/plugins/textmate/lib/bundles/sql/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/sql/syntaxes/sql.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/swift/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/swift/LICENSE.md -${PKGNAME}/plugins/textmate/lib/bundles/swift/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/swift/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/swift/package.json -${PKGNAME}/plugins/textmate/lib/bundles/swift/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/swift/snippets/swift.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/toml/Preferences/Comments.tmPreferences -${PKGNAME}/plugins/textmate/lib/bundles/toml/Preferences/Folding.tmPreferences -${PKGNAME}/plugins/textmate/lib/bundles/toml/Preferences/Indent.tmPreferences -${PKGNAME}/plugins/textmate/lib/bundles/toml/Preferences/Symbol List.tmPreferences -${PKGNAME}/plugins/textmate/lib/bundles/toml/Preferences/Typing Pairs.tmPreferences -${PKGNAME}/plugins/textmate/lib/bundles/toml/README.mdown -${PKGNAME}/plugins/textmate/lib/bundles/toml/Syntaxes/TOML.tmLanguage -${PKGNAME}/plugins/textmate/lib/bundles/toml/info.plist -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/package.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/snippets/typescript.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/syntaxes/Readme.md -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScript.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.js.injection.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.ts.injection.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/vb/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/vb/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/vb/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/vb/package.json -${PKGNAME}/plugins/textmate/lib/bundles/vb/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/vb/snippets/vb.code-snippets -${PKGNAME}/plugins/textmate/lib/bundles/vb/syntaxes/asp-vb-net.tmlanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/viml/LICENSE.txt -${PKGNAME}/plugins/textmate/lib/bundles/viml/grammars/viml.json -${PKGNAME}/plugins/textmate/lib/bundles/viml/package.json -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/basic.vim -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/example-help.txt -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/flavours.of.snippet -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/modeline.md -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/neo.snippets -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/solarized.vim -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/syntax.vim -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/textobj-rubyblock.vmb -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/tpope-characterize.vim -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/tpope-fugitive.vim -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/ulti.snip -${PKGNAME}/plugins/textmate/lib/bundles/viml/tests/vim-syntax.vim -${PKGNAME}/plugins/textmate/lib/bundles/xml/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/xml/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/xml/package.json -${PKGNAME}/plugins/textmate/lib/bundles/xml/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/xml/syntaxes/xml.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/xml/syntaxes/xsl.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/bundles/xml/xml.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/xml/xsl.language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/yaml/.vscodeignore -${PKGNAME}/plugins/textmate/lib/bundles/yaml/cgmanifest.json -${PKGNAME}/plugins/textmate/lib/bundles/yaml/language-configuration.json -${PKGNAME}/plugins/textmate/lib/bundles/yaml/package.json -${PKGNAME}/plugins/textmate/lib/bundles/yaml/package.nls.json -${PKGNAME}/plugins/textmate/lib/bundles/yaml/syntaxes/yaml.tmLanguage.json -${PKGNAME}/plugins/textmate/lib/textmate.jar -${PKGNAME}/plugins/uiDesigner/lib/jps/java-guiForms-jps.jar -${PKGNAME}/plugins/uiDesigner/lib/uiDesigner.jar -${PKGNAME}/plugins/vcs-changeReminder/lib/vcs-changeReminder.jar -${PKGNAME}/plugins/vcs-git-featuresTrainer/lib/git-learning-project-212.0.2.jar -${PKGNAME}/plugins/vcs-git-featuresTrainer/lib/vcs-git-featuresTrainer.jar -${PKGNAME}/plugins/webp/lib/libwebp/linux/libwebp_jni.so -${PKGNAME}/plugins/webp/lib/libwebp/linux/libwebp_jni64.so -${PKGNAME}/plugins/webp/lib/libwebp/mac/libwebp_jni64.dylib -${PKGNAME}/plugins/webp/lib/libwebp/win/webp_jni.dll -${PKGNAME}/plugins/webp/lib/libwebp/win/webp_jni64.dll -${PKGNAME}/plugins/webp/lib/webp.jar -${PKGNAME}/plugins/wsl-fs-helper/bin/server -${PKGNAME}/plugins/wsl-fs-helper/lib/bifurcan-0.2.0-alpha6.jar -${PKGNAME}/plugins/wsl-fs-helper/lib/java-diff-utils-4.9.jar -${PKGNAME}/plugins/wsl-fs-helper/lib/kotlinx-coroutines-debug-1.5.1.jar -${PKGNAME}/plugins/wsl-fs-helper/lib/kotlinx-coroutines-slf4j-1.5.2.jar -${PKGNAME}/plugins/wsl-fs-helper/lib/okhttp-4.9.2.jar -${PKGNAME}/plugins/wsl-fs-helper/lib/okio-2.8.0.jar -${PKGNAME}/plugins/wsl-fs-helper/lib/wsl-fs-helper.jar -${PKGNAME}/plugins/xpath/lib/rt/xslt-rt.jar -${PKGNAME}/plugins/xpath/lib/xpath.jar -${PKGNAME}/plugins/xslt-debugger/lib/3rd-party.jar -${PKGNAME}/plugins/xslt-debugger/lib/rt/saxon-6_5_5.jar -${PKGNAME}/plugins/xslt-debugger/lib/rt/saxon-9he.jar -${PKGNAME}/plugins/xslt-debugger/lib/rt/xalan-2_7_2.jar -${PKGNAME}/plugins/xslt-debugger/lib/rt/xslt-debugger-impl-rt.jar -${PKGNAME}/plugins/xslt-debugger/lib/xslt-debugger-rt.jar -${PKGNAME}/plugins/xslt-debugger/lib/xslt-debugger.jar -${PKGNAME}/plugins/yaml/lib/yaml.jar -${PKGNAME}/product-info.json -${PKGNAME}/redist/annotations-java8.jar +@comment $NetBSD: PLIST,v 1.4 2023/09/11 13:47:12 ryoon Exp $ +intellij-ce-bin/Install-Linux-tar.txt +intellij-ce-bin/LICENSE.txt +intellij-ce-bin/NOTICE.txt +intellij-ce-bin/bin/appletviewer.policy +intellij-ce-bin/bin/brokenPlugins.db +intellij-ce-bin/bin/format.sh +intellij-ce-bin/bin/idea.png +intellij-ce-bin/bin/idea.properties +intellij-ce-bin/bin/idea.sh +intellij-ce-bin/bin/idea.svg +intellij-ce-bin/bin/idea64.vmoptions +intellij-ce-bin/bin/inspect.sh +intellij-ce-bin/bin/ltedit.sh +intellij-ce-bin/bin/restart.py +intellij-ce-bin/build.txt +intellij-ce-bin/lib/annotations.jar +intellij-ce-bin/lib/ant/CONTRIBUTORS +intellij-ce-bin/lib/ant/INSTALL +intellij-ce-bin/lib/ant/KEYS +intellij-ce-bin/lib/ant/LICENSE +intellij-ce-bin/lib/ant/NOTICE +intellij-ce-bin/lib/ant/README +intellij-ce-bin/lib/ant/WHATSNEW +intellij-ce-bin/lib/ant/contributors.xml +intellij-ce-bin/lib/ant/lib/README +intellij-ce-bin/lib/ant/lib/ant-antlr.pom +intellij-ce-bin/lib/ant/lib/ant-apache-bcel.pom +intellij-ce-bin/lib/ant/lib/ant-apache-bsf.pom +intellij-ce-bin/lib/ant/lib/ant-apache-log4j.pom +intellij-ce-bin/lib/ant/lib/ant-apache-oro.pom +intellij-ce-bin/lib/ant/lib/ant-apache-regexp.pom +intellij-ce-bin/lib/ant/lib/ant-apache-resolver.pom +intellij-ce-bin/lib/ant/lib/ant-apache-xalan2.pom +intellij-ce-bin/lib/ant/lib/ant-commons-logging.pom +intellij-ce-bin/lib/ant/lib/ant-commons-net.pom +intellij-ce-bin/lib/ant/lib/ant-imageio.pom +intellij-ce-bin/lib/ant/lib/ant-jai.pom +intellij-ce-bin/lib/ant/lib/ant-javamail.pom +intellij-ce-bin/lib/ant/lib/ant-jdepend.pom +intellij-ce-bin/lib/ant/lib/ant-jmf.pom +intellij-ce-bin/lib/ant/lib/ant-jsch.pom +intellij-ce-bin/lib/ant/lib/ant-junit.pom +intellij-ce-bin/lib/ant/lib/ant-junit4.pom +intellij-ce-bin/lib/ant/lib/ant-junitlauncher.pom +intellij-ce-bin/lib/ant/lib/ant-launcher.pom +intellij-ce-bin/lib/ant/lib/ant-netrexx.pom +intellij-ce-bin/lib/ant/lib/ant-parent.pom +intellij-ce-bin/lib/ant/lib/ant-swing.pom +intellij-ce-bin/lib/ant/lib/ant-testutil.pom +intellij-ce-bin/lib/ant/lib/ant-xz.pom +intellij-ce-bin/lib/ant/lib/ant.jar +intellij-ce-bin/lib/ant/lib/ant.pom +intellij-ce-bin/lib/ant/lib/classpath.index +intellij-ce-bin/lib/ant/lib/libraries.properties +intellij-ce-bin/lib/ant/src.zip +intellij-ce-bin/lib/app-client.jar +intellij-ce-bin/lib/app.jar +intellij-ce-bin/lib/bouncy-castle.jar +intellij-ce-bin/lib/build-marker-IC-232.9559.62 +intellij-ce-bin/lib/byte-buddy-agent.jar +intellij-ce-bin/lib/cds/classesLogAgent.jar +intellij-ce-bin/lib/error-prone-annotations.jar +intellij-ce-bin/lib/external-system-rt.jar +intellij-ce-bin/lib/externalProcess-rt.jar +intellij-ce-bin/lib/forms_rt.jar +intellij-ce-bin/lib/groovy.jar +intellij-ce-bin/lib/grpc.jar +intellij-ce-bin/lib/idea_rt.jar +intellij-ce-bin/lib/intellij-coverage-agent-1.0.723.jar +intellij-ce-bin/lib/intellij-test-discovery.jar +intellij-ce-bin/lib/jps-model.jar +intellij-ce-bin/lib/jsch-agent.jar +intellij-ce-bin/lib/junit.jar +intellij-ce-bin/lib/junit4.jar +intellij-ce-bin/lib/lib-client.jar +intellij-ce-bin/lib/lib.jar +intellij-ce-bin/lib/modules.jar +intellij-ce-bin/lib/platform-loader.jar +intellij-ce-bin/lib/product-client.jar +intellij-ce-bin/lib/protobuf.jar +intellij-ce-bin/lib/rd.jar +intellij-ce-bin/lib/stats.jar +intellij-ce-bin/lib/testFramework.jar +intellij-ce-bin/lib/util-8.jar +intellij-ce-bin/lib/util.jar +intellij-ce-bin/lib/util_rt.jar +intellij-ce-bin/license/javahelp_license.txt +intellij-ce-bin/license/javolution_license.txt +intellij-ce-bin/license/saxon-conditions.html +intellij-ce-bin/license/third-party-libraries.html +intellij-ce-bin/license/third-party-libraries.json +intellij-ce-bin/license/yourkit-license-redist.txt +intellij-ce-bin/plugins/Groovy/lib/Groovy.jar +intellij-ce-bin/plugins/Groovy/lib/agent/gragent.jar +intellij-ce-bin/plugins/Groovy/lib/console.groovy +intellij-ce-bin/plugins/Groovy/lib/groovy-constants-rt.jar +intellij-ce-bin/plugins/Groovy/lib/groovy-jps.jar +intellij-ce-bin/plugins/Groovy/lib/groovy-rt-class-loader.jar +intellij-ce-bin/plugins/Groovy/lib/groovy-rt.jar +intellij-ce-bin/plugins/Groovy/lib/groovy-spock-rt.jar +intellij-ce-bin/plugins/Groovy/lib/standardDsls/categoryTransform.gdsl +intellij-ce-bin/plugins/Groovy/lib/standardDsls/closuresInMethod.gdsl +intellij-ce-bin/plugins/Groovy/lib/standardDsls/defaultMethods.gdsl +intellij-ce-bin/plugins/Groovy/lib/standardDsls/gantScript.gdsl +intellij-ce-bin/plugins/Groovy/lib/standardDsls/metaDsl.gdsl +intellij-ce-bin/plugins/Kotlin/kotlinc/META-INF/MANIFEST.MF +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kapt +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kapt.bat +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlin +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlin-dce-js +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlin-dce-js.bat +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlin.bat +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlinc +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlinc-js +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlinc-js.bat +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlinc-jvm +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlinc-jvm.bat +intellij-ce-bin/plugins/Kotlin/kotlinc/bin/kotlinc.bat +intellij-ce-bin/plugins/Kotlin/kotlinc/build.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/allopen-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/android-extensions-compiler.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/android-extensions-runtime.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/annotations-13.0.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/assignment-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/js.engines.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/jvm-abi-gen.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-cli.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing-runtime.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-annotation-processing.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-annotations-jvm.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-daemon.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-imports-dumper-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-main-kts.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-preloader.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-reflect-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-reflect.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-runner.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-script-runtime.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-scripting-common.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler-impl.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-scripting-compiler.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-scripting-jvm.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-serialization-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk7.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-jdk8.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-js.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-stdlib.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-js-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-js.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-junit-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-junit.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-junit5.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-testng-sources.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test-testng.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlin-test.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlinx-coroutines-core-jvm.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/kotlinx-serialization-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/lombok-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/mutability-annotations-compat.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/noarg-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/parcelize-compiler.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/parcelize-runtime.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/sam-with-receiver-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/lib/trove4j.jar +intellij-ce-bin/plugins/Kotlin/kotlinc/license/COPYRIGHT.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/COPYRIGHT_HEADER.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/NOTICE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/README.md +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/aalto_xml_licence.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/aether_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/aosp_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/args4j_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/asm_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/asmble_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/assemblyscript_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/boost_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/caffeine_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/closure-compiler_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/dart_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/fastutil_licence +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/gradle-node-plugin_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/gradle_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/guava_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/gwt_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/jgit_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/jquery_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/jshashtable_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/karma-teamcity-reporter_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/karma_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/lodash_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/lombok_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/maven_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/mocha-teamcity-reporter_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/okhttp_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/prototype_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/qunit_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/rhino_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/scala_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/sl4f_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/stax2-api.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/sun_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/teamcity-service-messages_LICENSE.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/dagger_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_distribution_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/eclipse_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/findbugs_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/jspecify_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/lombok_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/rxjava_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/testdata/spring_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/trove_license.txt +intellij-ce-bin/plugins/Kotlin/kotlinc/license/third_party/trove_readme_license.txt +intellij-ce-bin/plugins/Kotlin/lib/javaslang.jar +intellij-ce-bin/plugins/Kotlin/lib/javax-inject.jar +intellij-ce-bin/plugins/Kotlin/lib/jps/kotlin-jps-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlin-base-jps.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlin-gradle-tooling.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlin-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc-lib.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.allopen-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.android-extensions-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.assignment-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.kotlin-compiler-common.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.kotlin-compiler-fe10.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.kotlin-compiler-ir.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.kotlin-jps-common.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.kotlinx-serialization-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.lombok-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.noarg-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.parcelize-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.sam-with-receiver-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinc.scripting-compiler-plugin.jar +intellij-ce-bin/plugins/Kotlin/lib/kotlinx-collections-immutable.jar +intellij-ce-bin/plugins/android-gradle-dsl/lib/android-gradle-dsl.jar +intellij-ce-bin/plugins/android/lib/adt-ui.jar +intellij-ce-bin/plugins/android/lib/android-base-common.jar +intellij-ce-bin/plugins/android/lib/android-common.jar +intellij-ce-bin/plugins/android/lib/android-extensions-ide.jar +intellij-ce-bin/plugins/android/lib/android-gradle-tooling.jar +intellij-ce-bin/plugins/android/lib/android-kotlin-extensions-tooling.jar +intellij-ce-bin/plugins/android/lib/android-kotlin.jar +intellij-ce-bin/plugins/android/lib/android-libversion.jar +intellij-ce-bin/plugins/android/lib/android-profilers.jar +intellij-ce-bin/plugins/android/lib/android.jar +intellij-ce-bin/plugins/android/lib/artwork.jar +intellij-ce-bin/plugins/android/lib/auto-common.jar +intellij-ce-bin/plugins/android/lib/background-inspector-proto.jar +intellij-ce-bin/plugins/android/lib/build-analysis-results-proto.jar +intellij-ce-bin/plugins/android/lib/build-common.jar +intellij-ce-bin/plugins/android/lib/compilercommon.antlr.shaded.jar +intellij-ce-bin/plugins/android/lib/compilercommon.antlr_runtime.shaded.jar +intellij-ce-bin/plugins/android/lib/data-binding.jar +intellij-ce-bin/plugins/android/lib/deploy_java_proto.jar +intellij-ce-bin/plugins/android/lib/explainer.jar +intellij-ce-bin/plugins/android/lib/flatbuffers-java.jar +intellij-ce-bin/plugins/android/lib/generator.jar +intellij-ce-bin/plugins/android/lib/google-analytics-library.jar +intellij-ce-bin/plugins/android/lib/inspectors-common.jar +intellij-ce-bin/plugins/android/lib/instantapps-api.jar +intellij-ce-bin/plugins/android/lib/javapoet.jar +intellij-ce-bin/plugins/android/lib/jb-r8.jar +intellij-ce-bin/plugins/android/lib/jetifier-core.jar +intellij-ce-bin/plugins/android/lib/juniversalchardet.jar +intellij-ce-bin/plugins/android/lib/layoutlib-api.jar +intellij-ce-bin/plugins/android/lib/layoutlib-loader.jar +intellij-ce-bin/plugins/android/lib/libandroid-core-proto.jar +intellij-ce-bin/plugins/android/lib/libjava_sites.jar +intellij-ce-bin/plugins/android/lib/libjava_version.jar +intellij-ce-bin/plugins/android/lib/liblint-checks-proto.jar +intellij-ce-bin/plugins/android/lib/libstudio.android-test-plugin-host-retention-proto.jar +intellij-ce-bin/plugins/android/lib/libstudio.android-test-plugin-result-listener-gradle-proto.jar +intellij-ce-bin/plugins/android/lib/lint-ide.jar +intellij-ce-bin/plugins/android/lib/manifest-merger.jar +intellij-ce-bin/plugins/android/lib/memory-usage.jar +intellij-ce-bin/plugins/android/lib/pepk.jar +intellij-ce-bin/plugins/android/lib/pixelprobe.jar +intellij-ce-bin/plugins/android/lib/repository.jar +intellij-ce-bin/plugins/android/lib/sdk-common.jar +intellij-ce-bin/plugins/android/lib/sdk-tools.jar +intellij-ce-bin/plugins/android/lib/sdklib.jar +intellij-ce-bin/plugins/android/lib/shared.jar +intellij-ce-bin/plugins/android/lib/spantable.jar +intellij-ce-bin/plugins/android/lib/tensorflow-lite-metadata.jar +intellij-ce-bin/plugins/android/lib/trace-perfetto-library.jar +intellij-ce-bin/plugins/android/lib/traceprocessor-proto.jar +intellij-ce-bin/plugins/android/lib/utp.jar +intellij-ce-bin/plugins/android/lib/wizard-template.jar +intellij-ce-bin/plugins/android/lib/workmanager-inspector-proto.jar +intellij-ce-bin/plugins/android/resources/androidAnnotations.jar +intellij-ce-bin/plugins/android/resources/apks/ComplicationWatchFace.apk +intellij-ce-bin/plugins/android/resources/apks/README.md +intellij-ce-bin/plugins/android/resources/device-art-resources/automotive_1024/back.png +intellij-ce-bin/plugins/android/resources/device-art-resources/automotive_1024/fore.png +intellij-ce-bin/plugins/android/resources/device-art-resources/automotive_1024/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/device-art.xml +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/galaxy_nexus/thumb.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_10/thumb.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_4/thumb.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_5x/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_6p/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7/thumb.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_7_2013/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_9/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/button.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/power.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/power_land.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/thumb.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/volume_down.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/volume_down_land.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/volume_up.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_one/volume_up_land.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/button.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/power.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/power_land.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/thumb.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/volume_down.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/volume_down_land.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/volume_up.png +intellij-ce-bin/plugins/android/resources/device-art-resources/nexus_s/volume_up_land.png +intellij-ce-bin/plugins/android/resources/device-art-resources/phone/phone_back_simple_land.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/phone/phone_back_simple_port.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/phone/phone_shadow_simple_land.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/phone/phone_shadow_simple_port.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_2_xl/round_corners.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3/round_corners.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3_xl/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3_xl/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3_xl/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3_xl/round_corners.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a/rounded_corners.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a_xl/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a_xl/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a_xl/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a_xl/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a_xl/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_3a_xl/rounded_corners.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4_xl/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4_xl/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4_xl/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4a/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4a/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4a/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4a_5g/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4a_5g/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_4a_5g/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_5/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_5/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_5/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6_pro/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6_pro/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6_pro/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6a/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6a/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_6a/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_7/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_7/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_7/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_7_pro/back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_7_pro/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_7_pro/mask.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_c/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_silver/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/pixel_xl_silver/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/tablet/tablet_back_simple.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tablet/tablet_shadow_simple_land.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tablet/tablet_shadow_simple_port.9.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_1080p/back.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_1080p/fore.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_1080p/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_1080p/shadow.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_4k/back.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_4k/fore.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_4k/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_4k/shadow.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_720p/back.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_720p/fore.png +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_720p/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/tv_720p/shadow.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_round/back.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_round/fore.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_round/mask.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_round/shadow.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_square/back.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_square/fore.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_square/mask.png +intellij-ce-bin/plugins/android/resources/device-art-resources/watch_square/shadow.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_large_round/device_bezel.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_large_round/device_mask.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_large_round/hardware.ini +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_large_round/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_rect/device_bezel.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_rect/hardware.ini +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_rect/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_small_round/device_bezel.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_small_round/device_mask.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_small_round/hardware.ini +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_small_round/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_square/device_bezel.png +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_square/hardware.ini +intellij-ce-bin/plugins/android/resources/device-art-resources/wearos_square/layout +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/land_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/land_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/land_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/port_back.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/port_fore.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/port_shadow.webp +intellij-ce-bin/plugins/android/resources/device-art-resources/xoom/thumb.png +intellij-ce-bin/plugins/android/resources/images/asset_studio/ic_banner_image.xml +intellij-ce-bin/plugins/android/resources/images/asset_studio/ic_launcher_background.xml +intellij-ce-bin/plugins/android/resources/images/asset_studio/ic_launcher_foreground.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_1.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_10.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_11.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_12.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_13.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_14.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_15.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_16.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_2.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_3.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_4.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_5.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_6.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_7.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_8.xml +intellij-ce-bin/plugins/android/resources/sampleData/avatars/avatar_9.xml +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/A_Photographer.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Apres_la_Pluie.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Caterpillar.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Colors_of_Autumn.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Countryside.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Death_Valley_-_Dunes.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Despair.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Eagle_Fall_Sunrise.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Green_Grass.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Hanging_Leaf.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Jelly_Fish_3.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Kauai.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Longue_Vue.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Lost_in_a_Field.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Monument_Valley_Overlook.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/One_Wheel.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Open_Sky.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Orange_Sunset.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Stream.webp +intellij-ce-bin/plugins/android/resources/sampleData/backgrounds/scenic/Yosemite_Tree.webp +intellij-ce-bin/plugins/ant/lib/ant-jps.jar +intellij-ce-bin/plugins/ant/lib/antIntegration.jar +intellij-ce-bin/plugins/completionMlRanking/lib/completionMlRanking.jar +intellij-ce-bin/plugins/configurationScript/lib/configurationScript.jar +intellij-ce-bin/plugins/copyright/lib/copyright.jar +intellij-ce-bin/plugins/cwm-plugin-projector/lib/cwm-plugin-projector.jar +intellij-ce-bin/plugins/cwm-plugin-projector/lib/projector/projector.jar +intellij-ce-bin/plugins/cwm-plugin/jre-build.txt +intellij-ce-bin/plugins/cwm-plugin/lib/bouncy-castle-pgp.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-common.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-host-unattended.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-host.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-lobby-common.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-plugin-terminal.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-plugin.jar +intellij-ce-bin/plugins/cwm-plugin/lib/cwm-unattended-common.jar +intellij-ce-bin/plugins/cwm-plugin/lib/ice4j.jar +intellij-ce-bin/plugins/cwm-plugin/lib/java-websocket.jar +intellij-ce-bin/plugins/cwm-plugin/lib/jitsi-utils.jar +intellij-ce-bin/plugins/cwm-plugin/lib/jnaerator-runtime.jar +intellij-ce-bin/plugins/cwm-plugin/lib/jstun.jar +intellij-ce-bin/plugins/cwm-plugin/lib/kotlinx-serialization-protobuf.jar +intellij-ce-bin/plugins/cwm-plugin/lib/projector-client-common.jar +intellij-ce-bin/plugins/cwm-plugin/lib/projector-client-swing.jar +intellij-ce-bin/plugins/cwm-plugin/lib/quiche-jna-stubs.jar +intellij-ce-bin/plugins/cwm-plugin/lib/tls-channel.jar +intellij-ce-bin/plugins/design-tools/lib/design-tools.jar +intellij-ce-bin/plugins/dev/lib/dev.jar +intellij-ce-bin/plugins/devkit/lib/devkit-jps.jar +intellij-ce-bin/plugins/devkit/lib/devkit-runtimeModuleRepository-jps.jar +intellij-ce-bin/plugins/devkit/lib/devkit.jar +intellij-ce-bin/plugins/eclipse/lib/eclipse-common.jar +intellij-ce-bin/plugins/eclipse/lib/eclipse-jps.jar +intellij-ce-bin/plugins/eclipse/lib/eclipse.jar +intellij-ce-bin/plugins/editorconfig/lib/editorconfig.jar +intellij-ce-bin/plugins/emojipicker/lib/emojipicker.jar +intellij-ce-bin/plugins/featuresTrainer/lib/featuresTrainer.jar +intellij-ce-bin/plugins/gradle-analysis/lib/gradle-analysis.jar +intellij-ce-bin/plugins/gradle-dependencyUpdater/lib/gradle-dependencyUpdater.jar +intellij-ce-bin/plugins/gradle-java-maven/lib/gradle-java-maven.jar +intellij-ce-bin/plugins/gradle-java/lib/gradle-java.jar +intellij-ce-bin/plugins/gradle-java/lib/gradle-jps.jar +intellij-ce-bin/plugins/gradle/lib/gradle-api-8.2.jar +intellij-ce-bin/plugins/gradle/lib/gradle-api-impldep-8.2.jar +intellij-ce-bin/plugins/gradle/lib/gradle-launcher-8.2.jar +intellij-ce-bin/plugins/gradle/lib/gradle-tooling-extension-api.jar +intellij-ce-bin/plugins/gradle/lib/gradle-tooling-extension-impl.jar +intellij-ce-bin/plugins/gradle/lib/gradle-wrapper-8.2.jar +intellij-ce-bin/plugins/gradle/lib/gradle.jar +intellij-ce-bin/plugins/grazie/lib/grazie.jar +intellij-ce-bin/plugins/html-tools/lib/html-tools.jar +intellij-ce-bin/plugins/indexing-shared/lib/indexing-shared.jar +intellij-ce-bin/plugins/java-byteCodeViewer/lib/byteCodeViewer.jar +intellij-ce-bin/plugins/java-coverage/lib/jacoco.jar +intellij-ce-bin/plugins/java-coverage/lib/java-coverage-rt.jar +intellij-ce-bin/plugins/java-coverage/lib/java-coverage.jar +intellij-ce-bin/plugins/java-debugger-streams/lib/java-debugger-streams.jar +intellij-ce-bin/plugins/java-decompiler/lib/java-decompiler.jar +intellij-ce-bin/plugins/java-i18n/lib/java-i18n.jar +intellij-ce-bin/plugins/java-ide-customization/lib/java-ide-customization.jar +intellij-ce-bin/plugins/java/lib/aether-dependency-resolver.jar +intellij-ce-bin/plugins/java/lib/debugger-memory-agent.jar +intellij-ce-bin/plugins/java/lib/ecj/eclipse.jar +intellij-ce-bin/plugins/java/lib/java-impl.jar +intellij-ce-bin/plugins/java/lib/javac2.jar +intellij-ce-bin/plugins/java/lib/jb-jdi.jar +intellij-ce-bin/plugins/java/lib/jgoodies-common.jar +intellij-ce-bin/plugins/java/lib/jps-builders-6.jar +intellij-ce-bin/plugins/java/lib/jps-builders.jar +intellij-ce-bin/plugins/java/lib/jps-javac-extension.jar +intellij-ce-bin/plugins/java/lib/jps-launcher.jar +intellij-ce-bin/plugins/java/lib/jshell-frontend.jar +intellij-ce-bin/plugins/java/lib/jshell-protocol.jar +intellij-ce-bin/plugins/java/lib/maven-resolver-connector-basic.jar +intellij-ce-bin/plugins/java/lib/maven-resolver-transport-file.jar +intellij-ce-bin/plugins/java/lib/maven-resolver-transport-http.jar +intellij-ce-bin/plugins/java/lib/resources/jdkAnnotations.jar +intellij-ce-bin/plugins/java/lib/rt/debugger-agent.jar +intellij-ce-bin/plugins/java/lib/sa-jdwp.jar +intellij-ce-bin/plugins/javaFX/lib/javaFX-common.jar +intellij-ce-bin/plugins/javaFX/lib/javaFX-jps.jar +intellij-ce-bin/plugins/javaFX/lib/javaFX.jar +intellij-ce-bin/plugins/javaFX/lib/rt/sceneBuilderBridge.jar +intellij-ce-bin/plugins/junit/lib/idea-junit.jar +intellij-ce-bin/plugins/junit/lib/junit-rt.jar +intellij-ce-bin/plugins/junit/lib/junit5-rt.jar +intellij-ce-bin/plugins/keymap-eclipse/lib/keymap-eclipse.jar +intellij-ce-bin/plugins/keymap-netbeans/lib/keymap-netbeans.jar +intellij-ce-bin/plugins/keymap-visualStudio/lib/keymap-visualStudio.jar +intellij-ce-bin/plugins/markdown/lib/markdown.jar +intellij-ce-bin/plugins/marketplace/lib/boot/marketplace-bootstrap.jar +intellij-ce-bin/plugins/marketplace/lib/boot/marketplace-impl.jar +intellij-ce-bin/plugins/marketplace/lib/marketplace.jar +intellij-ce-bin/plugins/marketplace/platform-build.txt +intellij-ce-bin/plugins/maven-model/lib/maven-model.jar +intellij-ce-bin/plugins/maven-server/lib/maven-server.jar +intellij-ce-bin/plugins/maven/lib/artifact-resolver-m3.jar +intellij-ce-bin/plugins/maven/lib/artifact-resolver-m31.jar +intellij-ce-bin/plugins/maven/lib/intellij.maven.server.indexer/lib/apache.maven.archetype.common-3.2.1.jar +intellij-ce-bin/plugins/maven/lib/intellij.maven.server.indexer/lib/apache.maven.core-3.8.3.jar +intellij-ce-bin/plugins/maven/lib/intellij.maven.server.indexer/lib/apache.maven.wagon.provider.api-3.5.2.jar +intellij-ce-bin/plugins/maven/lib/maven-event-listener.jar +intellij-ce-bin/plugins/maven/lib/maven-jps.jar +intellij-ce-bin/plugins/maven/lib/maven-server-indexer.jar +intellij-ce-bin/plugins/maven/lib/maven.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-common.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/archetype-catalog-2.2.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/archetype-common-2.2.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/archetype-descriptor-2.2.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/lucene-core-2.4.1.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/maven-dependency-tree-1.2.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/nexus-indexer-3.0.4.jar +intellij-ce-bin/plugins/maven/lib/maven3-server-lib/nexus-indexer-artifact-1.0.1.jar +intellij-ce-bin/plugins/maven/lib/maven3-server.jar +intellij-ce-bin/plugins/maven/lib/maven3/LICENSE +intellij-ce-bin/plugins/maven/lib/maven3/NOTICE +intellij-ce-bin/plugins/maven/lib/maven3/README.txt +intellij-ce-bin/plugins/maven/lib/maven3/bin/m2.conf +intellij-ce-bin/plugins/maven/lib/maven3/bin/mvn +intellij-ce-bin/plugins/maven/lib/maven3/bin/mvn.cmd +intellij-ce-bin/plugins/maven/lib/maven3/bin/mvnDebug +intellij-ce-bin/plugins/maven/lib/maven3/bin/mvnDebug.cmd +intellij-ce-bin/plugins/maven/lib/maven3/bin/mvnyjp +intellij-ce-bin/plugins/maven/lib/maven3/boot/plexus-classworlds-2.7.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/boot/plexus-classworlds.license +intellij-ce-bin/plugins/maven/lib/maven3/conf/logging/simplelogger.properties +intellij-ce-bin/plugins/maven/lib/maven3/conf/settings.xml +intellij-ce-bin/plugins/maven/lib/maven3/conf/toolchains.xml +intellij-ce-bin/plugins/maven/lib/maven3/lib/aopalliance-1.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/aopalliance.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/commons-cli-1.5.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/commons-cli.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/commons-codec-1.11.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/commons-codec.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/commons-lang3-3.12.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/commons-lang3.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/ext/README.txt +intellij-ce-bin/plugins/maven/lib/maven3/lib/ext/hazelcast/README.txt +intellij-ce-bin/plugins/maven/lib/maven3/lib/ext/redisson/README.txt +intellij-ce-bin/plugins/maven/lib/maven3/lib/failureaccess-1.0.1.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/failureaccess.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/guava-31.1-jre.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/guava.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/guice-5.1.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/guice.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/httpclient-4.5.14.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/httpclient.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/httpcore-4.4.16.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/httpcore.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/jansi-2.4.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/jansi-native/README.txt +intellij-ce-bin/plugins/maven/lib/maven3/lib/jansi.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/javax.annotation-api-1.3.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/javax.annotation-api.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/javax.inject-1.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/javax.inject.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/jcl-over-slf4j-1.7.36.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/jcl-over-slf4j.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-artifact-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-builder-support-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-compat-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-core-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-embedder-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-model-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-model-builder-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-plugin-api-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-repository-metadata-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-api-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-connector-basic-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-impl-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-named-locks-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-provider-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-spi-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-transport-file-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-transport-http-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-transport-wagon-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-resolver-util-1.9.10.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-settings-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-settings-builder-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-shared-utils-3.3.4.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/maven-slf4j-provider-3.9.2.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject-0.3.5.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/org.eclipse.sisu.inject.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus-0.3.5.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/org.eclipse.sisu.plexus.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-cipher-2.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-cipher.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-component-annotations-2.1.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-component-annotations.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-interpolation-1.26.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-interpolation.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher-2.0.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-utils-3.5.1.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/plexus-utils.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/slf4j-api-1.7.36.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/slf4j-api.license +intellij-ce-bin/plugins/maven/lib/maven3/lib/wagon-file-3.5.3.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/wagon-http-3.5.3.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/wagon-http-shared-3.5.3.jar +intellij-ce-bin/plugins/maven/lib/maven3/lib/wagon-provider-api-3.5.3.jar +intellij-ce-bin/plugins/maven/lib/maven30-server.jar +intellij-ce-bin/plugins/maven/lib/maven36-server.jar +intellij-ce-bin/plugins/maven/lib/maven40-server.jar +intellij-ce-bin/plugins/packageChecker/lib/packageChecker.jar +intellij-ce-bin/plugins/performanceTesting-async/lib/async-profiler.jar +intellij-ce-bin/plugins/performanceTesting-async/lib/performanceTesting-async.jar +intellij-ce-bin/plugins/performanceTesting/lib/performanceTesting.jar +intellij-ce-bin/plugins/platform-images/lib/platform-images.jar +intellij-ce-bin/plugins/platform-langInjection/lib/IntelliLang.jar +intellij-ce-bin/plugins/platform-langInjection/lib/java-langInjection-jps.jar +intellij-ce-bin/plugins/platform-langInjection/lib/platform-langInjection.jar +intellij-ce-bin/plugins/platform-tracing-ide/lib/platform-tracing-ide.jar +intellij-ce-bin/plugins/properties/lib/properties.jar +intellij-ce-bin/plugins/qodana/lib/qodana.jar +intellij-ce-bin/plugins/repository-search/lib/repository-search.jar +intellij-ce-bin/plugins/searchEverywhereMl/lib/searchEverywhereMl.jar +intellij-ce-bin/plugins/settingsSync/lib/settingsSync.jar +intellij-ce-bin/plugins/sh/lib/sh.jar +intellij-ce-bin/plugins/space/lib/space-java-jps.jar +intellij-ce-bin/plugins/space/lib/space.jar +intellij-ce-bin/plugins/tasks/lib/tasks-core.jar +intellij-ce-bin/plugins/terminal/lib/terminal.jar +intellij-ce-bin/plugins/terminal/pwsh/pwsh.ps1 +intellij-ce-bin/plugins/terminal/shell-integrations/bash/bash-integration.bash +intellij-ce-bin/plugins/terminal/shell-integrations/bash/command-block-support.bash +intellij-ce-bin/plugins/terminal/shell-integrations/fish/command-block-support.fish +intellij-ce-bin/plugins/terminal/shell-integrations/fish/fish-integration.fish +intellij-ce-bin/plugins/terminal/shell-integrations/powershell/command-block-support.ps1 +intellij-ce-bin/plugins/terminal/shell-integrations/powershell/powershell-integration.ps1 +intellij-ce-bin/plugins/terminal/zsh/.zshenv +intellij-ce-bin/plugins/terminal/zsh/hooks.zsh +intellij-ce-bin/plugins/testng/lib/testng-plugin.jar +intellij-ce-bin/plugins/testng/lib/testng-rt.jar +intellij-ce-bin/plugins/textmate/lib/bundles/bat/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/bat/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/bat/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/bat/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/bat/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/bat/snippets/batchfile.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/bat/syntaxes/batchfile.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/clojure/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/clojure/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/clojure/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/clojure/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/clojure/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/cmake/LICENSE +intellij-ce-bin/plugins/textmate/lib/bundles/cmake/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/cmake/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/cmake/syntaxes/CMake.tmLanguage +intellij-ce-bin/plugins/textmate/lib/bundles/cmake/syntaxes/CMakeCache.tmLanguage +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/snippets/coffeescript.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/coffeescript/syntaxes/coffeescript.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/snippets/c.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/snippets/cpp.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/syntaxes/c.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/syntaxes/cuda-cpp.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/cpp/syntaxes/platform.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/snippets/csharp.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/csharp/syntaxes/csharp.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/css/.vscode/launch.json +intellij-ce-bin/plugins/textmate/lib/bundles/css/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/css/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/css/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/css/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/css/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/css/syntaxes/css.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/dart/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/dart/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/dart/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/dart/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/dart/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/dart/syntaxes/dart.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/diff/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/diff/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/diff/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/diff/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/diff/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/diff/syntaxes/diff.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/docker/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/docker/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/docker/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/docker/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/docker/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/docker/syntaxes/docker.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/erlang/grammar/Erlang.plist +intellij-ce-bin/plugins/textmate/lib/bundles/erlang/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/erlang/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/snippets/fsharp.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/fsharp/syntaxes/fsharp.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/languages/git-commit.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/languages/git-rebase.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/languages/ignore.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/syntaxes/git-commit.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/syntaxes/git-rebase.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/syntaxes/ignore.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/git-base/tsconfig.json +intellij-ce-bin/plugins/textmate/lib/bundles/go/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/go/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/go/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/go/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/go/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/go/syntaxes/go.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/snippets/groovy.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/groovy/syntaxes/groovy.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/handlebars/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/handlebars/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/handlebars/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/handlebars/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/handlebars/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/handlebars/syntaxes/Handlebars.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/hlsl/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/hlsl/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/hlsl/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/hlsl/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/hlsl/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/hlsl/syntaxes/hlsl.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/html/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/html/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/html/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/html/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/html/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/html/snippets/html.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/ini/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/ini/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/ini/ini.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/ini/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/ini/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/ini/properties.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/ini/syntaxes/ini.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/java/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/java/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/java/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/java/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/java/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/java/snippets/java.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/java/syntaxes/java.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/javascript-language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/snippets/javascript.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScript.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScriptReact.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/syntaxes/Readme.md +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage +intellij-ce-bin/plugins/textmate/lib/bundles/javascript/tags-language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/json/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/json/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/json/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/json/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/json/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/json/syntaxes/JSON.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/json/syntaxes/JSONC.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/jsp/LICENSE +intellij-ce-bin/plugins/textmate/lib/bundles/jsp/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/jsp/jsp-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/jsp/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/jsp/syntaxes/jsp.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/julia/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/julia/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/julia/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/julia/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/julia/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/julia/syntaxes/julia.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/kotlin/info.plist +intellij-ce-bin/plugins/textmate/lib/bundles/kotlin/snippets/class.tmSnippet +intellij-ce-bin/plugins/textmate/lib/bundles/kotlin/snippets/println.tmSnippet +intellij-ce-bin/plugins/textmate/lib/bundles/kotlin/syntaxes/Kotlin.tmLanguage +intellij-ce-bin/plugins/textmate/lib/bundles/latex/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/latex/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/cpp-bailout-license.txt +intellij-ce-bin/plugins/textmate/lib/bundles/latex/latex-cpp-embedded-language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/latex-language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/markdown-latex-combined-language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/markdown-latex-combined-license.txt +intellij-ce-bin/plugins/textmate/lib/bundles/latex/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/syntaxes/Bibtex.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/syntaxes/LaTeX.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/syntaxes/TeX.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/syntaxes/cpp-grammar-bailout.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/latex/syntaxes/markdown-latex-combined.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/less/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/less/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/less/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/less/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/less/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/less/syntaxes/less.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/log/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/log/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/log/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/log/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/log/syntaxes/log.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/lua/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/lua/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/lua/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/lua/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/lua/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/lua/syntaxes/lua.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/make/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/make/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/make/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/make/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/make/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/make/syntaxes/make.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/snippets/markdown.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-basics/syntaxes/markdown.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/.gitignore +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/notebook/tsconfig.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/preview-styles/index.css +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/syntaxes/md-math-block.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/syntaxes/md-math-inline.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/syntaxes/md-math.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/markdown-math/tsconfig.json +intellij-ce-bin/plugins/textmate/lib/bundles/mdx/license +intellij-ce-bin/plugins/textmate/lib/bundles/mdx/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/mdx/syntaxes/mdx.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c++.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/perl/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/perl.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/perl6.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/syntaxes/perl.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/perl/syntaxes/perl6.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/.vscode/launch.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/.vscode/tasks.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/php/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/snippets/php.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/php/syntaxes/html.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/php/syntaxes/php.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/snippets/powershell.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/powershell/syntaxes/powershell.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/pug/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/pug/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/pug/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/pug/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/pug/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/pug/syntaxes/pug.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/.vscode/launch.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/.vscode/tasks.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/python/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/syntaxes/MagicPython.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/python/syntaxes/MagicRegExp.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/r/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/r/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/r/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/r/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/r/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/r/syntaxes/r.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/razor/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/razor/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/razor/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/razor/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/razor/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/razor/syntaxes/cshtml.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/restructuredtext/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/restructuredtext/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/restructuredtext/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/restructuredtext/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/restructuredtext/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/restructuredtext/syntaxes/rst.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/ruby/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/ruby/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/ruby/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/ruby/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/ruby/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/ruby/syntaxes/ruby.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/rust/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/rust/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/rust/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/rust/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/rust/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/rust/syntaxes/rust.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/scss/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/scss/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/scss/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/scss/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/scss/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/scss/syntaxes/sassdoc.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/scss/syntaxes/scss.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/search-result/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/search-result/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/search-result/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/search-result/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/search-result/syntaxes/searchResult.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/search-result/tsconfig.json +intellij-ce-bin/plugins/textmate/lib/bundles/shaderlab/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/shaderlab/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/shaderlab/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/shaderlab/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/shaderlab/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/shaderlab/syntaxes/shaderlab.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/shellscript/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/shellscript/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/shellscript/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/shellscript/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/shellscript/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/shellscript/syntaxes/shell-unix-bash.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/sql/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/sql/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/sql/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/sql/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/sql/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/sql/syntaxes/sql.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/swift/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/swift/LICENSE.md +intellij-ce-bin/plugins/textmate/lib/bundles/swift/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/swift/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/swift/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/swift/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/swift/snippets/swift.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/terraform/LICENSE +intellij-ce-bin/plugins/textmate/lib/bundles/terraform/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/terraform/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/terraform/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/terraform/snippets/terraform.json +intellij-ce-bin/plugins/textmate/lib/bundles/terraform/syntaxes/terraform.tmGrammar.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/LICENSE.md +intellij-ce-bin/plugins/textmate/lib/bundles/twig/README.md +intellij-ce-bin/plugins/textmate/lib/bundles/twig/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/snippets/snippets.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/extension.js +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/hover/filters.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/hover/functions.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/hover/twig.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/languages/twig.configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/snippets/snippets.json +intellij-ce-bin/plugins/textmate/lib/bundles/twig/src/syntaxes/twig.tmLanguage +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/snippets/typescript.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/syntaxes/Readme.md +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScript.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.js.injection.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.ts.injection.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/vb/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/vb/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/vb/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/vb/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/vb/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/vb/snippets/vb.code-snippets +intellij-ce-bin/plugins/textmate/lib/bundles/vb/syntaxes/asp-vb-net.tmlanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/viml/LICENSE.txt +intellij-ce-bin/plugins/textmate/lib/bundles/viml/grammars/viml.json +intellij-ce-bin/plugins/textmate/lib/bundles/viml/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/xml/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/syntaxes/xml.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/syntaxes/xsl.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/xml.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/xml/xsl.language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/yaml/.vscodeignore +intellij-ce-bin/plugins/textmate/lib/bundles/yaml/cgmanifest.json +intellij-ce-bin/plugins/textmate/lib/bundles/yaml/language-configuration.json +intellij-ce-bin/plugins/textmate/lib/bundles/yaml/package.json +intellij-ce-bin/plugins/textmate/lib/bundles/yaml/package.nls.json +intellij-ce-bin/plugins/textmate/lib/bundles/yaml/syntaxes/yaml.tmLanguage.json +intellij-ce-bin/plugins/textmate/lib/textmate.jar +intellij-ce-bin/plugins/toml/lib/toml.jar +intellij-ce-bin/plugins/uiDesigner/lib/jps/java-guiForms-jps.jar +intellij-ce-bin/plugins/uiDesigner/lib/uiDesigner.jar +intellij-ce-bin/plugins/vcs-git/lib/git4idea-rt.jar +intellij-ce-bin/plugins/vcs-git/lib/vcs-git.jar +intellij-ce-bin/plugins/vcs-github/lib/vcs-github.jar +intellij-ce-bin/plugins/vcs-gitlab/lib/vcs-gitlab.jar +intellij-ce-bin/plugins/vcs-hg/lib/vcs-hg.jar +intellij-ce-bin/plugins/vcs-perforce/lib/vcs-perforce.jar +intellij-ce-bin/plugins/vcs-svn/lib/vcs-svn.jar +intellij-ce-bin/plugins/webp/lib/webp.jar +intellij-ce-bin/plugins/xpath/lib/rt/xslt-rt.jar +intellij-ce-bin/plugins/xpath/lib/xpath.jar +intellij-ce-bin/plugins/yaml/lib/yaml.jar +intellij-ce-bin/product-info.json share/applications/idea.desktop +@pkgdir intellij-ce-bin/plugins/webp/lib/libwebp/linux +@pkgdir intellij-ce-bin/plugins/maven/lib/maven4-server-lib +@pkgdir intellij-ce-bin/plugins/maven/lib/maven3/lib/jansi-native/Windows/x86_64 +@pkgdir intellij-ce-bin/plugins/maven/lib/maven3/lib/jansi-native/Windows/x86 +@pkgdir intellij-ce-bin/plugins/cwm-plugin/quiche-native/win32-x86-64 +@pkgdir intellij-ce-bin/plugins/cwm-plugin/quiche-native/linux-x86-64 +@pkgdir intellij-ce-bin/plugins/cwm-plugin/quiche-native/linux-aarch64 +@pkgdir intellij-ce-bin/plugins/cwm-plugin/quiche-native/darwin-x86-64 +@pkgdir intellij-ce-bin/plugins/cwm-plugin/quiche-native/darwin-aarch64 +@pkgdir intellij-ce-bin/plugins/android/resources/native/win +@pkgdir intellij-ce-bin/plugins/android/resources/native/mac_arm +@pkgdir intellij-ce-bin/plugins/android/resources/native/mac +@pkgdir intellij-ce-bin/plugins/android/resources/native/linux +@pkgdir intellij-ce-bin/lib/pty4j/linux/x86-64 +@pkgdir intellij-ce-bin/lib/native/linux-x86_64 +@pkgdir intellij-ce-bin/lib/jna/amd64 Index: pkgsrc/devel/intellij-ce-bin/distinfo diff -u pkgsrc/devel/intellij-ce-bin/distinfo:1.5 pkgsrc/devel/intellij-ce-bin/distinfo:1.6 --- pkgsrc/devel/intellij-ce-bin/distinfo:1.5 Tue Feb 15 21:21:24 2022 +++ pkgsrc/devel/intellij-ce-bin/distinfo Mon Sep 11 13:47:12 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2022/02/15 21:21:24 rillig Exp $ +$NetBSD: distinfo,v 1.6 2023/09/11 13:47:12 ryoon Exp $ -BLAKE2s (ideaIC-2021.3.2-no-jbr.tar.gz) = 6de3af49fff000c6ba2de1ec0da8af7b6dc03f0bd478c69ac5b688a65f161134 -SHA512 (ideaIC-2021.3.2-no-jbr.tar.gz) = 77f0816ca94b03b60ea414d4d645ba2f7bafe632f2add47eab28ff578718b173fb18cfdac6004741f921b4c2cee16c2dc0a6e4861320a38319ceb223c0d846d9 -Size (ideaIC-2021.3.2-no-jbr.tar.gz) = 636932173 bytes -SHA1 (patch-bin_idea.sh) = 060bfc1bfe100b4ade56e8c68ccc725fa98e7e04 +BLAKE2s (ideaIC-2023.2.1.tar.gz) = 3f8a7cf2ba8407609a265f526da0ca2567a3fb502f2dfab58457d336d4045dae +SHA512 (ideaIC-2023.2.1.tar.gz) = 20d442a4368b772336038b75194f0d5fbba7bc34cfaa5bb3bb5b69fe804ff6d677cd5d980b778220172b137dee6297e697b554a8833d040a1bd556de2f9da7f6 +Size (ideaIC-2023.2.1.tar.gz) = 973050563 bytes +SHA1 (patch-bin_idea.sh) = 27a02b294fa6b0def96039c99d95bda1290844b8 Index: pkgsrc/devel/intellij-ce-bin/patches/patch-bin_idea.sh diff -u pkgsrc/devel/intellij-ce-bin/patches/patch-bin_idea.sh:1.2 pkgsrc/devel/intellij-ce-bin/patches/patch-bin_idea.sh:1.3 --- pkgsrc/devel/intellij-ce-bin/patches/patch-bin_idea.sh:1.2 Tue Feb 15 21:21:24 2022 +++ pkgsrc/devel/intellij-ce-bin/patches/patch-bin_idea.sh Mon Sep 11 13:47:12 2023 @@ -1,8 +1,11 @@ -$NetBSD: patch-bin_idea.sh,v 1.2 2022/02/15 21:21:24 rillig Exp $ +$NetBSD: patch-bin_idea.sh,v 1.3 2023/09/11 13:47:12 ryoon Exp $ Add a few JVM options to make it work in a common case. ---- bin/idea.sh.orig 2022-01-28 04:01:00.000000000 +0000 +-Didea.ui.icons.svg.disk.cache=false part is obtained +from: https://youtrack.jetbrains.com/issue/IDEA-323750 . + +--- bin/idea.sh.orig 1970-01-20 13:32:27.000000000 +0000 +++ bin/idea.sh @@ -49,6 +49,7 @@ CONFIG_HOME="${XDG_CONFIG_HOME:-${HOME}/ # --------------------------------------------------------------------- @@ -12,13 +15,20 @@ Add a few JVM options to make it work in # shellcheck disable=SC2154 if [ -n "$IDEA_JDK" ] && [ -x "$IDEA_JDK/bin/java" ]; then JRE="$IDEA_JDK" -@@ -148,6 +149,9 @@ fi +@@ -173,12 +174,16 @@ CLASS_PATH="$CLASS_PATH:$IDE_HOME/lib/an IFS="$(printf '\n\t')" # shellcheck disable=SC2086 - "$JAVA_BIN" \ + exec "$JAVA_BIN" \ + -Xmx4096 -Xms4096 \ + -XX:-UseCompressedClassPointers \ + -XX:-UseCompressedOops \ - -classpath "$CLASSPATH" \ - ${VM_OPTIONS} \ + -classpath "$CLASS_PATH" \ "-XX:ErrorFile=$HOME/java_error_in_idea_%p.log" \ + "-XX:HeapDumpPath=$HOME/java_error_in_idea_.hprof" \ + ${VM_OPTIONS} \ + "-Djb.vmOptionsFile=${USER_VM_OPTIONS_FILE:-${VM_OPTIONS_FILE}}" \ + ${IDE_PROPERTIES_PROPERTY} \ ++ -Didea.ui.icons.svg.disk.cache=false \ + -Djava.system.class.loader=com.intellij.util.lang.PathClassLoader -Didea.vendor.name=JetBrains -Didea.paths.selector=IdeaIC2023.2 "-Djna.boot.library.path=$IDE_HOME/lib/jna/amd64" "-Dpty4j.preferred.native.folder=$IDE_HOME/lib/pty4j" -Djna.nosys=true -Djna.noclasspath=true -Didea.platform.prefix=Idea -Dsplash=true -Daether.connector.resumeDownloads=false --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.ref=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.base/java.time=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED --add-opens=jav a.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED --add-opens=java.base/sun.security.ssl=ALL-UNNAMED --add-opens=java.base/sun.security.util=ALL-UNNAMED --add-opens=java.base/sun.net.dns=ALL-UNNAMED --add-opens=java.desktop/com.sun.java.swing.plaf.gtk=ALL-UNNAMED --add-opens=java.desktop/java.awt=ALL-UNNAMED --add-opens=java.desktop/java.awt.dnd.peer=ALL-UNNAMED --add-opens=java.desktop/java.awt.event=ALL-UNNAMED --add-opens=java.desktop/java.awt.image=ALL-UNNAMED --add-opens=java.desktop/java.awt.peer=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED --add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED --add-opens=java.desktop/sun.awt.datatransfer=ALL-UNNAMED --add-opens=java.desktop/sun.awt.image=ALL-UNNAMED --add-opens=java.desktop/sun.awt=ALL-UNNAMED --add-opens=java.desktop/sun.f ont=ALL-UNNAMED --add-opens=java.desktop/sun.java2d=ALL-UNNAMED --add-opens=java.desktop/sun.swing=ALL-UNNAMED --add-opens=java.desktop/com.sun.java.swing=ALL-UNNAMED --add-opens=jdk.attach/sun.tools.attach=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED --add-opens=jdk.jdi/com.sun.tools.jdi=ALL-UNNAMED \ + com.intellij.idea.Main \ + "$@" --_----------=_1694440032127410--