Browse Source

Merge branch 'release/v1.2.07增加查询云端订单状态接口'

Zhenghj 1 year ago
parent
commit
dba451c28c

+ 2 - 2
app/build.gradle

@@ -21,8 +21,8 @@ android {
         applicationId "com.doverfuelingsolutions.issp"
         minSdkVersion 22
         targetSdkVersion 26
-        versionCode 18
-        versionName "1.2.05"
+        versionCode 20
+        versionName "1.2.07"
         archivesBaseName = versionName + "." + getTime()
 
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

+ 34 - 0
app/src/main/java/com/doverfuelingsolutions/issp/api/SystemApi.kt

@@ -37,6 +37,7 @@ object SystemApi {
     private var servicePay = makePayService()
     private var serviceConfig = makeConfigService()
     private var serviceAssets = makeAssetsService()
+    private var serviceCheck = makeCheckService()
 
     /**
      * 登录 + 获取油站信息
@@ -125,6 +126,32 @@ object SystemApi {
         })
     }
 
+    /**
+     * 查找云端当前订单状态
+     */
+    suspend fun getOrderStateForClound(dc: DeviceClass) = suspendCoroutine<DFSResult<CheckResponse>> {
+        val checkRequest =
+            CheckRequest(dc.transactionSeqNo, dc.pumpNo.toString(), GlobalData.serialNumber.get())
+
+        DFSLog.i("查找云端订单状态:${dc.transactionSeqNo}-${dc.pumpNo.toString()}-${GlobalData.serialNumber.get()}")
+        serviceCheck.checkOrderState(dc.transactionSeqNo, dc.pumpNo.toString(), GlobalData.serialNumber.get()).enqueue(object :Callback<CheckResponse>{
+            override fun onResponse(call: Call<CheckResponse>, response: Response<CheckResponse>) {
+                val code = response.code()
+                val body = response.body()
+                if (body is CheckResponse) {
+                    it.resume(DFSResult.success(body))
+                } else {
+                    it.resume(DFSResult.fail(R.string.fail_request))
+                }
+            }
+
+            override fun onFailure(call: Call<CheckResponse>, t: Throwable) {
+                DFSLog.e("SystemApi.getOrderStateForClound.onFailure", t)
+                it.resume(DFSResult.fail(t.message.toString()))
+            }
+        })
+    }
+
     /**
      * 向服务器备案即将进行支付的订单
      */
@@ -585,4 +612,11 @@ object SystemApi {
             .build()
             .create(ServiceAssets::class.java)
     }
+
+    private fun makeCheckService():ServiceCheck {
+        return RetrofitUtil.getAuthBuilder()
+            .baseUrl(WayneApiConfig.CHECK_ORDER_BASE)
+            .build()
+            .create(ServiceCheck::class.java)
+    }
 }

+ 5 - 0
app/src/main/java/com/doverfuelingsolutions/issp/api/WayneApiConfig.kt

@@ -32,6 +32,8 @@ class WayneApiConfig {
         const val CONFIG_DEVICE = "PosRemoteConfig"
         const val CONFIG_LOGO = "SiteLogo"
 
+        const val CHECK_ORDER_STATE = "api/TransactionStatus/GetTransactionStatus"
+
         // 默认值 - 云端
         const val DOMAIN_DEFAULT = "http://ipos.biz"
         const val DOMAIN_DEFAULT_RELEASE = "http://tkhs.net.cn"
@@ -79,5 +81,8 @@ class WayneApiConfig {
             val port = SPUtil.getString(SPKeys.SERVER_PORT_ASSETS)
             return if (domain.isEmpty() || port.isEmpty()) HOST_ASSETS_DEFAULT else "$domain:$port"
         }
+        val CHECK_ORDER_BASE:String get() {
+            return "http://tkhs.net.cn:8721"
+        }
     }
 }

+ 8 - 0
app/src/main/java/com/doverfuelingsolutions/issp/api/dto/CheckRequest.kt

@@ -0,0 +1,8 @@
+package com.doverfuelingsolutions.issp.api.dto
+
+data class CheckRequest(
+    val SeqNo:String,
+    val NozzleId:String,
+    val sn:String,
+    val token:String = "12345678"
+)

+ 8 - 0
app/src/main/java/com/doverfuelingsolutions/issp/api/dto/CheckResponse.kt

@@ -0,0 +1,8 @@
+package com.doverfuelingsolutions.issp.api.dto
+
+data class CheckResponse(
+    val result: String?,
+    val iListResult:List<IListResultItem>,
+    val isSuccess:Boolean,
+    val message:String
+)

+ 7 - 0
app/src/main/java/com/doverfuelingsolutions/issp/api/dto/IListResultItem.kt

@@ -0,0 +1,7 @@
+package com.doverfuelingsolutions.issp.api.dto
+
+data class IListResultItem(
+    val resultCode:String,
+    val resultMessage:String,
+    val fuelItemFdxTransactionSeqNo:String?
+)

+ 19 - 0
app/src/main/java/com/doverfuelingsolutions/issp/api/service/ServiceCheck.kt

@@ -0,0 +1,19 @@
+package com.doverfuelingsolutions.issp.api.service
+
+import com.doverfuelingsolutions.issp.api.WayneApiConfig
+import com.doverfuelingsolutions.issp.api.dto.CheckRequest
+import com.doverfuelingsolutions.issp.api.dto.CheckResponse
+import com.doverfuelingsolutions.issp.api.dto.ResultPayment
+import com.wayne.www.waynelib.webservice.entity.PosTrxMop
+import retrofit2.Call
+import retrofit2.http.*
+
+interface ServiceCheck {
+
+    @POST(WayneApiConfig.CHECK_ORDER_STATE)
+    fun checkOrderState(
+        @Query("SeqNo") seqNo:String,
+        @Query("NozzleId") nozzleId:String,
+        @Query("sn") sn: String,
+        @Query("token") token:String = "123456789"): Call<CheckResponse>
+}

+ 94 - 61
app/src/main/java/com/doverfuelingsolutions/issp/view/fragment/FragmentOrderList.kt

@@ -29,6 +29,9 @@ import com.scwang.smart.refresh.header.ClassicsHeader
 import com.wayne.www.waynelib.fdc.message.DeviceClass
 import com.wayne.www.waynelib.util.log.DFSLog
 import com.wayne.www.waynelib.webservice.entity.PosTrx
+import kotlinx.coroutines.Dispatchers
+import kotlinx.coroutines.GlobalScope
+import kotlinx.coroutines.launch
 import java.math.BigDecimal
 
 class FragmentOrderList private constructor() : FragmentBasic(),RefreshOrder {
@@ -147,75 +150,105 @@ class FragmentOrderList private constructor() : FragmentBasic(),RefreshOrder {
         (requireActivity() as MainActivity).fragmentRouter.stopFragmentToolbarTimer()
 
         lifecycleScope.launchWhenStarted {
-            // 累计数信息
-            val resultAccumulationInfo = if (SPUtil.getBoolean(SPKeys.USE_FCC2)) {
-                FuelInfoApi.accumulationInfoFromFCC2(dc)
-            } else {
-                FuelInfoApi.accumulationInfo(dc)
-            }
-            if (resultAccumulationInfo.success && resultAccumulationInfo.data != null) {
-                if (resultAccumulationInfo.data.State == "Paid" || resultAccumulationInfo.data.State == "Cleared") {
-                    dialog.dismiss()
-                    (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
-                    DFSToastUtil.info("此订单已支付,请勿重复支付")
-                    return@launchWhenStarted
-                }
 
-                //2022-10-8号,春洲 token:80322,出现在创建订单时枪号传成 1,这里将订单的枪号赋值为订单详情中的枪号
-                dc.nozzleNo = resultAccumulationInfo.data.SiteLevelNozzleId
-                dc.amountTotalizer = BigDecimal(resultAccumulationInfo.data.AmountTotalizer)
-                dc.volumeTotalizer = BigDecimal(resultAccumulationInfo.data.VolumeTotalizer)
-                dc.saleEndTime = resultAccumulationInfo.data.SaleEndTime
-            } else {
-                dialog.dismiss()
-                (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
-                DFSToastUtil.fail(R.string.fail_get_accumulation)
-                return@launchWhenStarted
-            }
+            //先查找当前订单是否已支付
+            val checkResult = SystemApi.getOrderStateForClound(dc)
+            if (checkResult.success) {
+                val results = checkResult.data?.iListResult
+                val find = results?.find { it.resultCode == "0" }
+                if (find != null) { //表示这边订单已经支付过,接下来直接消单即可
+
+                    // 支付成功后,移除本地云订单,清单
+                    GlobalScope.launch(Dispatchers.IO) {
+                        SPUtil.removeLockOrder(dc)
+                        val resultClear = FusionManager.clearOrder(dc)
+                        if (resultClear.success) {
+                            dc.state = "Cleared"
+                            SPUtil.removeUnclearedOrder(dc)
+                            SPUtil.removeWayneOrder(dc)
+                        } else {
+                            // 失败则记下来,后续再尝试消单
+                            SPUtil.addUnclearedOrder(dc)
+                        }
 
-            // 查询油品 posItemUniqueId
-            // 枪数据中有缓存 posItemUniqueId
-            val nozzle = FusionManager.nozzles.find { it.physicalId == dc.nozzleNo }
-            var posItemUniqueId = nozzle?.posItemUniqueId
-            if (posItemUniqueId.isNullOrEmpty()) {
-                val barcodeId = nozzle?.barcodeId ?: dc.productNo1.toInt()
-                val resultBarcodeInfo = SystemApi.barcodeName(barcodeId)
-                if (!resultBarcodeInfo.success || resultBarcodeInfo.data == null) {
-                    dialog.dismiss()
-                    // (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
-                    DFSToastUtil.fail("查询油品 posItemUniqueId 失败")
-                    return@launchWhenStarted
-                }
-                posItemUniqueId = resultBarcodeInfo.data.Id
-                DFSLog.w("barcodeId:$barcodeId")
-            }
+                    }
+                } else {            //表示这笔订单还没支付过,按正常流程走
+                    // 累计数信息
+                    val resultAccumulationInfo = if (SPUtil.getBoolean(SPKeys.USE_FCC2)) {
+                        FuelInfoApi.accumulationInfoFromFCC2(dc)
+                    } else {
+                        FuelInfoApi.accumulationInfo(dc)
+                    }
+                    if (resultAccumulationInfo.success && resultAccumulationInfo.data != null) {
+                        if (resultAccumulationInfo.data.State == "Paid" || resultAccumulationInfo.data.State == "Cleared") {
+                            dialog.dismiss()
+                            (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
+                            DFSToastUtil.info("此订单已支付,请勿重复支付")
+                            return@launchWhenStarted
+                        }
 
-            // 获取云订单(本地需要缓存,避免重复生成订单)
-            var posTrx: PosTrx? = SPUtil.findWayneOrder(dc)
-            if (posTrx == null) {
-                val resultReportPayment = SystemApi.generateOrder(dc, posItemUniqueId)
-                if (resultReportPayment.success && resultReportPayment.data != null && !resultReportPayment.data.id.isNullOrEmpty()) {
-                    posTrx = resultReportPayment.data
-                    SPUtil.addWayneOrder(dc, posTrx)
-                } else {
+                        //2022-10-8号,春洲 token:80322,出现在创建订单时枪号传成 1,这里将订单的枪号赋值为订单详情中的枪号
+                        dc.nozzleNo = resultAccumulationInfo.data.SiteLevelNozzleId
+                        dc.amountTotalizer = BigDecimal(resultAccumulationInfo.data.AmountTotalizer)
+                        dc.volumeTotalizer = BigDecimal(resultAccumulationInfo.data.VolumeTotalizer)
+                        dc.saleEndTime = resultAccumulationInfo.data.SaleEndTime
+                    } else {
+                        dialog.dismiss()
+                        (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
+                        DFSToastUtil.fail(R.string.fail_get_accumulation)
+                        return@launchWhenStarted
+                    }
+
+                    // 查询油品 posItemUniqueId
+                    // 枪数据中有缓存 posItemUniqueId
+                    val nozzle = FusionManager.nozzles.find { it.physicalId == dc.nozzleNo }
+                    var posItemUniqueId = nozzle?.posItemUniqueId
+                    if (posItemUniqueId.isNullOrEmpty()) {
+                        val barcodeId = nozzle?.barcodeId ?: dc.productNo1.toInt()
+                        val resultBarcodeInfo = SystemApi.barcodeName(barcodeId)
+                        if (!resultBarcodeInfo.success || resultBarcodeInfo.data == null) {
+                            dialog.dismiss()
+                            // (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
+                            DFSToastUtil.fail("查询油品 posItemUniqueId 失败")
+                            return@launchWhenStarted
+                        }
+                        posItemUniqueId = resultBarcodeInfo.data.Id
+                        DFSLog.w("barcodeId:$barcodeId")
+                    }
+
+                    // 获取云订单(本地需要缓存,避免重复生成订单)
+                    var posTrx: PosTrx? = SPUtil.findWayneOrder(dc)
+                    if (posTrx == null) {
+                        val resultReportPayment = SystemApi.generateOrder(dc, posItemUniqueId)
+                        if (resultReportPayment.success && resultReportPayment.data != null && !resultReportPayment.data.id.isNullOrEmpty()) {
+                            posTrx = resultReportPayment.data
+                            SPUtil.addWayneOrder(dc, posTrx)
+                        } else {
+                            dialog.dismiss()
+                            (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
+                            DFSToastUtil.fail(StringUtil.get(R.string.fail_behave_reason, StringUtil.get(R.string.make_cloud_order), resultReportPayment.message))
+                        }
+                    }
+
+                    // 锁定订单
+                    if (posTrx == null) return@launchWhenStarted
+                    val resultLock = FusionManager.lockOrder(dc, true)
                     dialog.dismiss()
                     (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
-                    DFSToastUtil.fail(StringUtil.get(R.string.fail_behave_reason, StringUtil.get(R.string.make_cloud_order), resultReportPayment.message))
+                    if (resultLock.success) {
+                        dc.state = "Locked"
+                        SPUtil.addLockOrder(dc)
+                        (activity as MainActivity).fragmentRouter.push(FragmentPayScanCode.build(dc, posTrx))
+                    } else {
+                        DFSToastUtil.fail(StringUtil.get(R.string.fail_behave_reason, StringUtil.get(R.string.lock_order), resultLock.message))
+                    }
                 }
-            }
-
-            // 锁定订单
-            if (posTrx == null) return@launchWhenStarted
-            val resultLock = FusionManager.lockOrder(dc, true)
-            dialog.dismiss()
-            (requireActivity() as MainActivity).fragmentRouter.resumeFragmentToolbarTimer()
-            if (resultLock.success) {
-                dc.state = "Locked"
-                SPUtil.addLockOrder(dc)
-                (activity as MainActivity).fragmentRouter.push(FragmentPayScanCode.build(dc, posTrx))
             } else {
-                DFSToastUtil.fail(StringUtil.get(R.string.fail_behave_reason, StringUtil.get(R.string.lock_order), resultLock.message))
+                DFSToastUtil.fail("查询云端订单状态失败 ${checkResult.message}")
             }
+
+
+
         }
     }
 

+ 403 - 0
hs_err_pid14808.log

@@ -0,0 +1,403 @@
+#
+# There is insufficient memory for the Java Runtime Environment to continue.
+# Native memory allocation (malloc) failed to allocate 1992336 bytes for Chunk::new
+# Possible reasons:
+#   The system is out of physical RAM or swap space
+#   The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
+# Possible solutions:
+#   Reduce memory load on the system
+#   Increase physical memory or swap space
+#   Check if swap backing store is full
+#   Decrease Java heap size (-Xmx/-Xms)
+#   Decrease number of Java threads
+#   Decrease Java thread stack sizes (-Xss)
+#   Set larger code cache with -XX:ReservedCodeCacheSize=
+#   JVM is running with Unscaled Compressed Oops mode in which the Java heap is
+#     placed in the first 4GB address space. The Java Heap base address is the
+#     maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
+#     to set the Java Heap base and to place the Java Heap above 4GB virtual address.
+# This output file may be truncated or incomplete.
+#
+#  Out of Memory Error (allocation.cpp:389), pid=14808, tid=0x0000000000000198
+#
+# JRE version: OpenJDK Runtime Environment (8.0_242-b01) (build 1.8.0_242-release-1644-b01)
+# Java VM: OpenJDK 64-Bit Server VM (25.242-b01 mixed mode windows-amd64 compressed oops)
+# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
+#
+
+---------------  T H R E A D  ---------------
+
+Current thread (0x0000000018d5b800):  JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=408, stack(0x0000000019450000,0x0000000019550000)]
+
+Stack: [0x0000000019450000,0x0000000019550000]
+[error occurred during error reporting (printing stack bounds), id 0xc0000005]
+
+Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
+
+
+Current CompileTask:
+C2:3690708 35558       4       com.sun.tools.javac.comp.Resolve::findType (467 bytes)
+
+
+---------------  P R O C E S S  ---------------
+
+Java Threads: ( => current thread )
+  0x000000001a617800 JavaThread "RMI TCP Connection(8)-127.0.0.1" daemon [_thread_in_native, id=22176, stack(0x0000000022160000,0x0000000022260000)]
+  0x000000001a61a000 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=5680, stack(0x0000000021390000,0x0000000021490000)]
+  0x000000001a615800 JavaThread "RMI RenewClean-[127.0.0.1:17780,org.jetbrains.kotlin.daemon.common.LoopbackNetworkInterface$ClientLoopbackSocketFactory@49caae60]" daemon [_thread_blocked, id=19696, stack(0x000000001cda0000,0x000000001cea0000)]
+  0x000000001f347000 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=16056, stack(0x00000000346d0000,0x00000000347d0000)]
+  0x000000001f346800 JavaThread "RMI Reaper" [_thread_blocked, id=20088, stack(0x00000000345d0000,0x00000000346d0000)]
+  0x000000001f345800 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=20756, stack(0x0000000032e40000,0x0000000032f40000)]
+  0x000000001f348800 JavaThread "GC Daemon" daemon [_thread_blocked, id=5720, stack(0x0000000032940000,0x0000000032a40000)]
+  0x000000001f344000 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=21900, stack(0x0000000031cd0000,0x0000000031dd0000)]
+  0x000000001f343800 JavaThread "Cache worker for Java compile cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\javaCompile)" [_thread_blocked, id=21580, stack(0x0000000032d40000,0x0000000032e40000)]
+  0x000000001f33c000 JavaThread "Cache worker for Java compile cache (C:\Users\10076532\.gradle\caches\6.5\javaCompile)" [_thread_blocked, id=18400, stack(0x0000000032c40000,0x0000000032d40000)]
+  0x000000001f33a800 JavaThread "stdout" [_thread_in_native, id=22160, stack(0x0000000032540000,0x0000000032640000)]
+  0x000000001f33f800 JavaThread "stderr" [_thread_in_native, id=4256, stack(0x0000000032440000,0x0000000032540000)]
+  0x000000001f341000 JavaThread "stdout" [_thread_in_native, id=14832, stack(0x0000000032340000,0x0000000032440000)]
+  0x000000001f33e000 JavaThread "stderr" [_thread_in_native, id=21172, stack(0x0000000032240000,0x0000000032340000)]
+  0x000000001f338000 JavaThread "stdout" [_thread_in_native, id=22284, stack(0x0000000032140000,0x0000000032240000)]
+  0x000000001f339800 JavaThread "stderr" [_thread_in_native, id=21544, stack(0x0000000032040000,0x0000000032140000)]
+  0x000000001f339000 JavaThread "stdout" [_thread_in_native, id=7988, stack(0x0000000031f40000,0x0000000032040000)]
+  0x000000001912d800 JavaThread "stderr" [_thread_in_native, id=19072, stack(0x0000000031e40000,0x0000000031f40000)]
+  0x0000000019126000 JavaThread "pool-15-thread-1" [_thread_blocked, id=14408, stack(0x0000000031bd0000,0x0000000031cd0000)]
+  0x000000001ea74000 JavaThread "MarlinRenderer Disposer" daemon [_thread_blocked, id=12128, stack(0x00000000318d0000,0x00000000319d0000)]
+  0x000000001ea73800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=19252, stack(0x0000000031520000,0x0000000031620000)]
+  0x000000001ea7a000 JavaThread "WorkerExecutor Queue Thread 4" [_thread_blocked, id=1588, stack(0x0000000031420000,0x0000000031520000)]
+  0x000000001ea72800 JavaThread "WorkerExecutor Queue Thread 3" [_thread_blocked, id=9052, stack(0x0000000031320000,0x0000000031420000)]
+  0x000000001ea76800 JavaThread "WorkerExecutor Queue Thread 2" [_thread_blocked, id=22024, stack(0x0000000031220000,0x0000000031320000)]
+  0x000000001ea79800 JavaThread "WorkerExecutor Queue" [_thread_blocked, id=16160, stack(0x0000000031010000,0x0000000031110000)]
+  0x000000001ea72000 JavaThread "Cache worker for execution history cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\executionHistory)" [_thread_blocked, id=14156, stack(0x0000000031120000,0x0000000031220000)]
+  0x000000001ba5b800 JavaThread "Execution worker for ':' Thread 3" [_thread_blocked, id=22352, stack(0x0000000030c10000,0x0000000030d10000)]
+  0x000000001ba5c800 JavaThread "Execution worker for ':' Thread 2" [_thread_blocked, id=4228, stack(0x0000000030b10000,0x0000000030c10000)]
+  0x000000001ba5b000 JavaThread "Execution worker for ':'" [_thread_blocked, id=10316, stack(0x0000000030a10000,0x0000000030b10000)]
+  0x000000001ba5a000 JavaThread "Cache worker for file content cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\fileContent)" [_thread_blocked, id=20888, stack(0x0000000030910000,0x0000000030a10000)]
+  0x000000001ba59800 JavaThread "Cache worker for Build Output Cleanup Cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\buildOutputCleanup)" [_thread_blocked, id=11596, stack(0x000000002cb80000,0x000000002cc80000)]
+  0x000000001ba57800 JavaThread "Build operations Thread 4" [_thread_blocked, id=21340, stack(0x000000002c680000,0x000000002c780000)]
+  0x000000001ba50000 JavaThread "Build operations Thread 3" [_thread_blocked, id=6344, stack(0x000000002b4a0000,0x000000002b5a0000)]
+  0x000000001ba54800 JavaThread "Build operations Thread 2" [_thread_blocked, id=9788, stack(0x000000001fe40000,0x000000001ff40000)]
+  0x000000001ba57000 JavaThread "Build operations" [_thread_blocked, id=13200, stack(0x000000001fb40000,0x000000001fc40000)]
+  0x000000001ba53000 JavaThread "Cache worker for cache directory md-rule (C:\Users\10076532\.gradle\caches\6.5\md-rule)" [_thread_blocked, id=17584, stack(0x000000001fa40000,0x000000001fb40000)]
+  0x000000001ba54000 JavaThread "Cache worker for cache directory md-supplier (C:\Users\10076532\.gradle\caches\6.5\md-supplier)" [_thread_blocked, id=21320, stack(0x000000001f940000,0x000000001fa40000)]
+  0x000000001ba4f800 JavaThread "Cache worker for checksums cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\checksums)" [_thread_blocked, id=18712, stack(0x000000001f840000,0x000000001f940000)]
+  0x000000001ba56000 JavaThread "Cache worker for file hash cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\fileHashes)" [_thread_blocked, id=16176, stack(0x000000001cfa0000,0x000000001d0a0000)]
+  0x000000001ba4e800 JavaThread "Thread-568" [_thread_blocked, id=12688, stack(0x000000001cea0000,0x000000001cfa0000)]
+  0x000000001ba51800 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:49270 to /127.0.0.1:55323" [_thread_blocked, id=8208, stack(0x000000001cca0000,0x000000001cda0000)]
+  0x000000001ba4e000 JavaThread "Cancel handler" [_thread_blocked, id=13000, stack(0x000000001cba0000,0x000000001cca0000)]
+  0x000000001ba4d000 JavaThread "Handler for socket connection from /127.0.0.1:49270 to /127.0.0.1:55323" [_thread_in_native, id=8160, stack(0x000000001caa0000,0x000000001cba0000)]
+  0x000000001ea78800 JavaThread "Daemon worker Thread 3" [_thread_in_native, id=20792, stack(0x000000001c9a0000,0x000000001caa0000)]
+  0x000000001ea75000 JavaThread "Daemon Thread 3" [_thread_blocked, id=11840, stack(0x0000000000e40000,0x0000000000f40000)]
+  0x0000000019124800 JavaThread "Memory manager" [_thread_blocked, id=11860, stack(0x000000002af40000,0x000000002b040000)]
+  0x000000001bbf9000 JavaThread "Cache worker for file content cache (C:\Users\10076532\.gradle\caches\6.5\fileContent)" [_thread_blocked, id=8108, stack(0x0000000022b60000,0x0000000022c60000)]
+  0x000000001bbfd000 JavaThread "Cache worker for execution history cache (C:\Users\10076532\.gradle\caches\6.5\executionHistory)" [_thread_blocked, id=10160, stack(0x0000000022660000,0x0000000022760000)]
+  0x000000001b156000 JavaThread "Cache worker for file hash cache (C:\Users\10076532\.gradle\caches\6.5\fileHashes)" [_thread_blocked, id=13884, stack(0x000000001e570000,0x000000001e670000)]
+  0x000000001b158000 JavaThread "File lock request listener" [_thread_in_native, id=19468, stack(0x000000001d4a0000,0x000000001d5a0000)]
+  0x00000000198c8000 JavaThread "Cache worker for journal cache (C:\Users\10076532\.gradle\caches\journal-1)" [_thread_blocked, id=15420, stack(0x000000001d2a0000,0x000000001d3a0000)]
+  0x000000001b1c3800 JavaThread "Daemon periodic checks" [_thread_blocked, id=12488, stack(0x000000001c6a0000,0x000000001c7a0000)]
+  0x000000001b1c2800 JavaThread "Incoming local TCP Connector on port 49270" [_thread_in_native, id=18124, stack(0x000000001c4f0000,0x000000001c5f0000)]
+  0x000000001b017800 JavaThread "Daemon health stats" [_thread_blocked, id=11308, stack(0x000000001c1f0000,0x000000001c2f0000)]
+  0x0000000018ddc000 JavaThread "Service Thread" daemon [_thread_blocked, id=8664, stack(0x0000000019650000,0x0000000019750000)]
+  0x0000000018d61800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=4116, stack(0x0000000019550000,0x0000000019650000)]
+=>0x0000000018d5b800 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=408, stack(0x0000000019450000,0x0000000019550000)]
+  0x00000000179fb800 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=10256, stack(0x0000000019350000,0x0000000019450000)]
+  0x00000000179af800 JavaThread "Attach Listener" daemon [_thread_blocked, id=14024, stack(0x0000000019250000,0x0000000019350000)]
+  0x0000000018d58800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4668, stack(0x0000000019150000,0x0000000019250000)]
+  0x0000000002d7c000 JavaThread "Finalizer" daemon [_thread_blocked, id=1112, stack(0x0000000018bf0000,0x0000000018cf0000)]
+  0x0000000002d73800 JavaThread "Reference Handler" daemon [_thread_blocked, id=17076, stack(0x0000000018af0000,0x0000000018bf0000)]
+  0x00000000028be000 JavaThread "main" [_thread_blocked, id=20300, stack(0x0000000002770000,0x0000000002870000)]
+
+Other Threads:
+  0x0000000017966000 VMThread [stack: 0x00000000189f0000,0x0000000018af0000] [id=8940]
+  0x0000000018ddd000 WatcherThread [stack: 0x0000000019750000,0x0000000019850000] [id=17500]
+
+VM state:not at safepoint (normal execution)
+
+VM Mutex/Monitor currently owned by a thread: None
+
+heap address: 0x0000000080000000, size: 2048 MB, Compressed Oops mode: 32-bit
+Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
+Compressed class space size: 1073741824 Address: 0x0000000100000000
+
+Heap:
+ PSYoungGen      total 580608K, used 154137K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 478720K, 28% used [0x00000000d5580000,0x00000000ddc93c90,0x00000000f2900000)
+  from space 101888K, 15% used [0x00000000f9c80000,0x00000000fabf28b8,0x0000000100000000)
+  to   space 110080K, 0% used [0x00000000f2900000,0x00000000f2900000,0x00000000f9480000)
+ ParOldGen       total 392704K, used 331650K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 84% used [0x0000000080000000,0x00000000943e0ae8,0x0000000097f80000)
+ Metaspace       used 146608K, capacity 154650K, committed 155796K, reserved 1185792K
+  class space    used 18132K, capacity 19674K, committed 19900K, reserved 1048576K
+
+Card table byte_map: [0x0000000012140000,0x0000000012550000] byte_map_base: 0x0000000011d40000
+
+Marking Bits: (ParMarkBitMap*) 0x0000000055b4f030
+ Begin Bits: [0x0000000012c00000, 0x0000000014c00000)
+ End Bits:   [0x0000000014c00000, 0x0000000016c00000)
+
+Polling page: 0x0000000000a60000
+
+CodeCache: size=245760Kb used=94111Kb max_used=95687Kb free=151648Kb
+ bounds [0x0000000002d80000, 0x0000000008b80000, 0x0000000011d80000]
+ total_blobs=27713 nmethods=26603 adapters=1017
+ compilation: enabled
+
+Compilation events (10 events):
+Event: 3690.110 Thread 0x00000000179fb800 35544       4       com.sun.tools.javac.jvm.ClassReader::readAnnotations (40 bytes)
+Event: 3690.116 Thread 0x0000000018d5b800 35545 %     4       com.sun.tools.javac.jvm.ClassReader::indexPool @ 24 (260 bytes)
+Event: 3690.123 Thread 0x0000000018d5b800 nmethod 35545% 0x000000000748df10 code [0x000000000748e1c0, 0x000000000748e4b8]
+Event: 3690.128 Thread 0x0000000018d5b800 35547       4       com.sun.tools.javac.file.JavacFileManager::inferBinaryName (53 bytes)
+Event: 3690.133 Thread 0x00000000179fb800 nmethod 35544 0x0000000007dc67d0 code [0x0000000007dc69c0, 0x0000000007dc7540]
+Event: 3690.138 Thread 0x00000000179fb800 35552       4       com.sun.tools.javac.jvm.ClassReader::includeClassFile (294 bytes)
+Event: 3690.365 Thread 0x0000000018d5b800 nmethod 35547 0x0000000007fdc290 code [0x0000000007fdc600, 0x0000000007fdead8]
+Event: 3690.365 Thread 0x0000000018d5b800 35558       4       com.sun.tools.javac.comp.Resolve::findType (467 bytes)
+Event: 3690.661 Thread 0x0000000018d61800 35571       2       com.sun.tools.javac.file.JavacFileManager::listDirectory (172 bytes)
+Event: 3690.663 Thread 0x0000000018d61800 nmethod 35571 0x0000000008988fd0 code [0x0000000008989240, 0x0000000008989af8]
+
+GC Heap History (10 events):
+Event: 3617.344 GC heap before
+{Heap before GC invocations=39 (full 5):
+ PSYoungGen      total 574976K, used 70634K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 504320K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f4200000)
+  from space 70656K, 99% used [0x00000000fbb00000,0x00000000ffffaac0,0x0000000100000000)
+  to   space 97280K, 0% used [0x00000000f4200000,0x00000000f4200000,0x00000000fa100000)
+ ParOldGen       total 260608K, used 260591K [0x0000000080000000, 0x000000008fe80000, 0x00000000d5580000)
+  object space 260608K, 99% used [0x0000000080000000,0x000000008fe7bea0,0x000000008fe80000)
+ Metaspace       used 142240K, capacity 150700K, committed 150932K, reserved 1181696K
+  class space    used 17805K, capacity 19525K, committed 19644K, reserved 1048576K
+Event: 3622.074 GC heap after
+Heap after GC invocations=39 (full 5):
+ PSYoungGen      total 574976K, used 0K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 504320K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f4200000)
+  from space 70656K, 0% used [0x00000000fbb00000,0x00000000fbb00000,0x0000000100000000)
+  to   space 97280K, 0% used [0x00000000f4200000,0x00000000f4200000,0x00000000fa100000)
+ ParOldGen       total 392704K, used 216940K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 55% used [0x0000000080000000,0x000000008d3db0d8,0x0000000097f80000)
+ Metaspace       used 141058K, capacity 148662K, committed 150932K, reserved 1181696K
+  class space    used 17581K, capacity 19084K, committed 19644K, reserved 1048576K
+}
+Event: 3631.178 GC heap before
+{Heap before GC invocations=40 (full 5):
+ PSYoungGen      total 574976K, used 504320K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 504320K, 100% used [0x00000000d5580000,0x00000000f4200000,0x00000000f4200000)
+  from space 70656K, 0% used [0x00000000fbb00000,0x00000000fbb00000,0x0000000100000000)
+  to   space 97280K, 0% used [0x00000000f4200000,0x00000000f4200000,0x00000000fa100000)
+ ParOldGen       total 392704K, used 216940K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 55% used [0x0000000080000000,0x000000008d3db0d8,0x0000000097f80000)
+ Metaspace       used 145508K, capacity 153280K, committed 154772K, reserved 1183744K
+  class space    used 18041K, capacity 19543K, committed 19900K, reserved 1048576K
+Event: 3631.354 GC heap after
+Heap after GC invocations=40 (full 5):
+ PSYoungGen      total 601600K, used 37182K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 504320K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f4200000)
+  from space 97280K, 38% used [0x00000000f4200000,0x00000000f664f9e8,0x00000000fa100000)
+  to   space 92160K, 0% used [0x00000000fa600000,0x00000000fa600000,0x0000000100000000)
+ ParOldGen       total 392704K, used 216948K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 55% used [0x0000000080000000,0x000000008d3dd0d8,0x0000000097f80000)
+ Metaspace       used 145508K, capacity 153280K, committed 154772K, reserved 1183744K
+  class space    used 18041K, capacity 19543K, committed 19900K, reserved 1048576K
+}
+Event: 3634.833 GC heap before
+{Heap before GC invocations=41 (full 5):
+ PSYoungGen      total 601600K, used 541502K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 504320K, 100% used [0x00000000d5580000,0x00000000f4200000,0x00000000f4200000)
+  from space 97280K, 38% used [0x00000000f4200000,0x00000000f664f9e8,0x00000000fa100000)
+  to   space 92160K, 0% used [0x00000000fa600000,0x00000000fa600000,0x0000000100000000)
+ ParOldGen       total 392704K, used 216948K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 55% used [0x0000000080000000,0x000000008d3dd0d8,0x0000000097f80000)
+ Metaspace       used 146185K, capacity 153960K, committed 155284K, reserved 1185792K
+  class space    used 18096K, capacity 19591K, committed 19900K, reserved 1048576K
+Event: 3634.971 GC heap after
+Heap after GC invocations=41 (full 5):
+ PSYoungGen      total 587264K, used 28483K [0x00000000d5580000, 0x00000000ff200000, 0x0000000100000000)
+  eden space 509440K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f4700000)
+  from space 77824K, 36% used [0x00000000fa600000,0x00000000fc1d0de0,0x00000000ff200000)
+  to   space 87552K, 0% used [0x00000000f4700000,0x00000000f4700000,0x00000000f9c80000)
+ ParOldGen       total 392704K, used 239804K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 61% used [0x0000000080000000,0x000000008ea2f3c8,0x0000000097f80000)
+ Metaspace       used 146185K, capacity 153960K, committed 155284K, reserved 1185792K
+  class space    used 18096K, capacity 19591K, committed 19900K, reserved 1048576K
+}
+Event: 3637.004 GC heap before
+{Heap before GC invocations=42 (full 5):
+ PSYoungGen      total 587264K, used 537923K [0x00000000d5580000, 0x00000000ff200000, 0x0000000100000000)
+  eden space 509440K, 100% used [0x00000000d5580000,0x00000000f4700000,0x00000000f4700000)
+  from space 77824K, 36% used [0x00000000fa600000,0x00000000fc1d0de0,0x00000000ff200000)
+  to   space 87552K, 0% used [0x00000000f4700000,0x00000000f4700000,0x00000000f9c80000)
+ ParOldGen       total 392704K, used 239804K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 61% used [0x0000000080000000,0x000000008ea2f3c8,0x0000000097f80000)
+ Metaspace       used 146272K, capacity 154154K, committed 155284K, reserved 1185792K
+  class space    used 18102K, capacity 19628K, committed 19900K, reserved 1048576K
+Event: 3637.272 GC heap after
+Heap after GC invocations=42 (full 5):
+ PSYoungGen      total 596992K, used 87524K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 509440K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f4700000)
+  from space 87552K, 99% used [0x00000000f4700000,0x00000000f9c791a8,0x00000000f9c80000)
+  to   space 101888K, 0% used [0x00000000f9c80000,0x00000000f9c80000,0x0000000100000000)
+ ParOldGen       total 392704K, used 269128K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 68% used [0x0000000080000000,0x00000000906d2028,0x0000000097f80000)
+ Metaspace       used 146272K, capacity 154154K, committed 155284K, reserved 1185792K
+  class space    used 18102K, capacity 19628K, committed 19900K, reserved 1048576K
+}
+Event: 3641.354 GC heap before
+{Heap before GC invocations=43 (full 5):
+ PSYoungGen      total 596992K, used 596964K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 509440K, 100% used [0x00000000d5580000,0x00000000f4700000,0x00000000f4700000)
+  from space 87552K, 99% used [0x00000000f4700000,0x00000000f9c791a8,0x00000000f9c80000)
+  to   space 101888K, 0% used [0x00000000f9c80000,0x00000000f9c80000,0x0000000100000000)
+ ParOldGen       total 392704K, used 269128K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 68% used [0x0000000080000000,0x00000000906d2028,0x0000000097f80000)
+ Metaspace       used 146457K, capacity 154404K, committed 155540K, reserved 1185792K
+  class space    used 18115K, capacity 19663K, committed 19900K, reserved 1048576K
+Event: 3641.797 GC heap after
+Heap after GC invocations=43 (full 5):
+ PSYoungGen      total 580608K, used 15818K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 478720K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f2900000)
+  from space 101888K, 15% used [0x00000000f9c80000,0x00000000fabf28b8,0x0000000100000000)
+  to   space 110080K, 0% used [0x00000000f2900000,0x00000000f2900000,0x00000000f9480000)
+ ParOldGen       total 392704K, used 331650K [0x0000000080000000, 0x0000000097f80000, 0x00000000d5580000)
+  object space 392704K, 84% used [0x0000000080000000,0x00000000943e0ae8,0x0000000097f80000)
+ Metaspace       used 146457K, capacity 154404K, committed 155540K, reserved 1185792K
+  class space    used 18115K, capacity 19663K, committed 19900K, reserved 1048576K
+}
+
+Deoptimization events (10 events):
+Event: 3649.246 Thread 0x000000001a617800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003d20900 method=java.lang.ThreadLocal.set(Ljava/lang/Object;)V @ 26
+Event: 3649.248 Thread 0x000000001a61a000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000083d51a0 method=java.lang.reflect.Array.newInstance(Ljava/lang/Class;I)Ljava/lang/Object; @ 2
+Event: 3649.253 Thread 0x000000001a617800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000083d51a0 method=java.lang.reflect.Array.newInstance(Ljava/lang/Class;I)Ljava/lang/Object; @ 2
+Event: 3688.838 Thread 0x000000001ea78800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003b330b4 method=org.objectweb.asm.ClassReader.readUtf(II[C)Ljava/lang/String; @ 41
+Event: 3688.845 Thread 0x000000001ea78800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000006fee400 method=org.objectweb.asm.MethodWriter.putMethodInfo(Lorg/objectweb/asm/ByteVector;)V @ 190
+Event: 3689.313 Thread 0x000000001ea78800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000334b284 method=java.lang.ref.SoftReference.get()Ljava/lang/Object; @ 6
+Event: 3689.344 Thread 0x000000001ea78800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000085e9670 method=com.google.common.cache.LocalCache.getIfPresent(Ljava/lang/Object;)Ljava/lang/Object; @ 29
+Event: 3689.370 Thread 0x000000001ea78800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000085e9670 method=com.google.common.cache.LocalCache.getIfPresent(Ljava/lang/Object;)Ljava/lang/Object; @ 29
+Event: 3689.370 Thread 0x000000001ea78800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000085e9670 method=com.google.common.cache.LocalCache.getIfPresent(Ljava/lang/Object;)Ljava/lang/Object; @ 29
+Event: 3689.371 Thread 0x000000001ea78800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000085e9670 method=com.google.common.cache.LocalCache.getIfPresent(Ljava/lang/Object;)Ljava/lang/Object; @ 29
+
+Classes redefined (0 events):
+No events
+
+Internal exceptions (10 events):
+Event: 3639.826 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000ee2c6028) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3639.826 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000ee2c78a8) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3642.705 Thread 0x000000001ba5b000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000d7c8d1e8) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.282 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000da14bf38) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.282 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000da14d7b0) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.283 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000da155070) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.283 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000da156930) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.287 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000da16cf28) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.287 Thread 0x000000001ea78800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000da16e7f8) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 3689.313 Thread 0x000000001ea78800 Implicit null exception at 0x0000000003349d1c to 0x000000000334b271
+
+Events (10 events):
+Event: 3690.137 Thread 0x00000000179fb800 flushing nmethod 0x0000000008988ed0
+Event: 3690.137 Thread 0x00000000179fb800 flushing nmethod 0x000000000898fb50
+Event: 3690.137 Thread 0x00000000179fb800 flushing nmethod 0x00000000089b0510
+Event: 3690.138 Thread 0x00000000179fb800 flushing nmethod 0x00000000089db810
+Event: 3690.413 Thread 0x000000001ea78800 DEOPT PACKING pc=0x000000000739d98f sp=0x000000001ca97220
+Event: 3690.413 Thread 0x000000001ea78800 DEOPT UNPACKING pc=0x0000000002dc75d0 sp=0x000000001ca97020 mode 0
+Event: 3690.556 Thread 0x000000001ea78800 DEOPT PACKING pc=0x000000000739d98f sp=0x000000001ca97220
+Event: 3690.556 Thread 0x000000001ea78800 DEOPT UNPACKING pc=0x0000000002dc75d0 sp=0x000000001ca97020 mode 0
+Event: 3690.653 Thread 0x000000001ea78800 DEOPT PACKING pc=0x000000000739d98f sp=0x000000001ca97220
+Event: 3690.653 Thread 0x000000001ea78800 DEOPT UNPACKING pc=0x0000000002dc75d0 sp=0x000000001ca97020 mode 0
+
+
+Dynamic libraries:
+0x00007ff7782b0000 - 0x00007ff7782e1000 	C:\Program Files\Android\Android Studio\jre\bin\java.exe
+0x00007ffe0bd60000 - 0x00007ffe0bf50000 	C:\WINDOWS\SYSTEM32\ntdll.dll
+0x00007ffe0abe0000 - 0x00007ffe0ac92000 	C:\WINDOWS\System32\KERNEL32.DLL
+0x00007ffe09920000 - 0x00007ffe09bc5000 	C:\WINDOWS\System32\KERNELBASE.dll
+0x00007ffe0ad40000 - 0x00007ffe0ade5000 	C:\WINDOWS\System32\ADVAPI32.dll
+0x00007ffe0aca0000 - 0x00007ffe0ad3e000 	C:\WINDOWS\System32\msvcrt.dll
+0x00007ffe0a620000 - 0x00007ffe0a6b8000 	C:\WINDOWS\System32\sechost.dll
+0x00007ffe0a1b0000 - 0x00007ffe0a2cb000 	C:\WINDOWS\System32\RPCRT4.dll
+0x00007ffe0aea0000 - 0x00007ffe0b034000 	C:\WINDOWS\System32\USER32.dll
+0x00007ffe08d80000 - 0x00007ffe08da1000 	C:\WINDOWS\System32\win32u.dll
+0x00007ffe0a400000 - 0x00007ffe0a426000 	C:\WINDOWS\System32\GDI32.dll
+0x00007ffe09000000 - 0x00007ffe09198000 	C:\WINDOWS\System32\gdi32full.dll
+0x00007ffe08f60000 - 0x00007ffe08ffe000 	C:\WINDOWS\System32\msvcp_win.dll
+0x00007ffe09c00000 - 0x00007ffe09cfa000 	C:\WINDOWS\System32\ucrtbase.dll
+0x00007ffdebdc0000 - 0x00007ffdec044000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.2274_none_9e8067a5e45c3d75\COMCTL32.dll
+0x00007ffe09e00000 - 0x00007ffe0a136000 	C:\WINDOWS\System32\combase.dll
+0x00007ffe08cd0000 - 0x00007ffe08d54000 	C:\WINDOWS\System32\bcryptPrimitives.dll
+0x00007ffe0ae70000 - 0x00007ffe0ae9e000 	C:\WINDOWS\System32\IMM32.DLL
+0x0000000000a10000 - 0x0000000000a24000 	C:\WINDOWS\System32\umppc17706.dll
+0x0000000054950000 - 0x0000000054a22000 	C:\Program Files\Android\Android Studio\jre\jre\bin\msvcr100.dll
+0x0000000055380000 - 0x0000000055bcb000 	C:\Program Files\Android\Android Studio\jre\jre\bin\server\jvm.dll
+0x00007ffe0b040000 - 0x00007ffe0b048000 	C:\WINDOWS\System32\PSAPI.DLL
+0x00007ffde13b0000 - 0x00007ffde13b9000 	C:\WINDOWS\SYSTEM32\WSOCK32.dll
+0x00007ffe0a960000 - 0x00007ffe0a9cf000 	C:\WINDOWS\System32\WS2_32.dll
+0x00007ffe02010000 - 0x00007ffe02034000 	C:\WINDOWS\SYSTEM32\WINMM.dll
+0x00007ffe030d0000 - 0x00007ffe030da000 	C:\WINDOWS\SYSTEM32\VERSION.dll
+0x00007ffe01fe0000 - 0x00007ffe0200d000 	C:\WINDOWS\SYSTEM32\WINMMBASE.dll
+0x00007ffe09db0000 - 0x00007ffe09dfa000 	C:\WINDOWS\System32\cfgmgr32.dll
+0x00007ffdfd740000 - 0x00007ffdfd74f000 	C:\Program Files\Android\Android Studio\jre\jre\bin\verify.dll
+0x00007ffdf0290000 - 0x00007ffdf02b9000 	C:\Program Files\Android\Android Studio\jre\jre\bin\java.dll
+0x00007ffdfcdd0000 - 0x00007ffdfcde6000 	C:\Program Files\Android\Android Studio\jre\jre\bin\zip.dll
+0x00007ffe0b550000 - 0x00007ffe0bc37000 	C:\WINDOWS\System32\SHELL32.dll
+0x00007ffe0a350000 - 0x00007ffe0a3f9000 	C:\WINDOWS\System32\shcore.dll
+0x00007ffe091a0000 - 0x00007ffe0991c000 	C:\WINDOWS\System32\windows.storage.dll
+0x00007ffe08c20000 - 0x00007ffe08c3e000 	C:\WINDOWS\System32\profapi.dll
+0x00007ffe08c80000 - 0x00007ffe08cca000 	C:\WINDOWS\System32\powrprof.dll
+0x00007ffe08c10000 - 0x00007ffe08c20000 	C:\WINDOWS\System32\UMPDC.dll
+0x00007ffe0a790000 - 0x00007ffe0a7e2000 	C:\WINDOWS\System32\shlwapi.dll
+0x00007ffe08c60000 - 0x00007ffe08c71000 	C:\WINDOWS\System32\kernel.appcore.dll
+0x00007ffe08d60000 - 0x00007ffe08d77000 	C:\WINDOWS\System32\cryptsp.dll
+0x00007ffdfcd60000 - 0x00007ffdfcd7a000 	C:\Program Files\Android\Android Studio\jre\jre\bin\net.dll
+0x00007ffe08450000 - 0x00007ffe084b7000 	C:\WINDOWS\system32\mswsock.dll
+0x00007ffdf5570000 - 0x00007ffdf5583000 	C:\Program Files\Android\Android Studio\jre\jre\bin\nio.dll
+0x00007ffde2310000 - 0x00007ffde2337000 	C:\Users\10076532\.gradle\native\f6784746aeab05261644944871eae4fe03e0ef1612fff0a4a95f87b438bc6780\windows-amd64\native-platform.dll
+0x00007ffdfce80000 - 0x00007ffdfce8d000 	C:\Program Files\Android\Android Studio\jre\jre\bin\management.dll
+0x00007ffe07d50000 - 0x00007ffe07d83000 	C:\WINDOWS\system32\rsaenh.dll
+0x00007ffe09bd0000 - 0x00007ffe09bf6000 	C:\WINDOWS\System32\bcrypt.dll
+0x00007ffe08b00000 - 0x00007ffe08b25000 	C:\WINDOWS\SYSTEM32\USERENV.dll
+0x00007ffe08620000 - 0x00007ffe0862c000 	C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
+0x00007ffe08160000 - 0x00007ffe0819a000 	C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
+0x00007ffe0bd10000 - 0x00007ffe0bd18000 	C:\WINDOWS\System32\NSI.dll
+0x00007ffdfee30000 - 0x00007ffdfee46000 	C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
+0x00007ffdfebf0000 - 0x00007ffdfec0c000 	C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
+0x00007ffe081a0000 - 0x00007ffe0826a000 	C:\WINDOWS\SYSTEM32\DNSAPI.dll
+0x00007ffe002e0000 - 0x00007ffe002eb000 	C:\WINDOWS\SYSTEM32\WINNSI.DLL
+0x00007ffe07910000 - 0x00007ffe07941000 	C:\WINDOWS\SYSTEM32\ntmarta.dll
+0x00007ffdeffe0000 - 0x00007ffdf0004000 	C:\Program Files\Android\Android Studio\jre\jre\bin\sunec.dll
+0x00007ffdf5c10000 - 0x00007ffdf5c1a000 	C:\Windows\System32\rasadhlp.dll
+0x00007ffdffff0000 - 0x00007ffe00067000 	C:\WINDOWS\System32\fwpuclnt.dll
+0x00007ffdfcc90000 - 0x00007ffdfcc9b000 	C:\Program Files\Android\Android Studio\jre\jre\bin\sunmscapi.dll
+0x00007ffe08db0000 - 0x00007ffe08efa000 	C:\WINDOWS\System32\CRYPT32.dll
+0x00007ffe08c40000 - 0x00007ffe08c52000 	C:\WINDOWS\System32\MSASN1.dll
+0x00007ffd9af30000 - 0x00007ffd9b0cc000 	C:\Program Files\Android\Android Studio\jre\jre\bin\awt.dll
+0x00007ffe0a6c0000 - 0x00007ffe0a785000 	C:\WINDOWS\System32\OLEAUT32.dll
+0x00007ffe031d0000 - 0x00007ffe031fd000 	C:\WINDOWS\SYSTEM32\dwmapi.dll
+0x00007ffe066c0000 - 0x00007ffe06c80000 	C:\WINDOWS\SYSTEM32\d2d1.dll
+0x00007ffe02110000 - 0x00007ffe0219f000 	C:\WINDOWS\SYSTEM32\apphelp.dll
+0x00007ffe027a0000 - 0x00007ffe02839000 	C:\WINDOWS\system32\uxtheme.dll
+0x00007ffdf0650000 - 0x00007ffdf066e000 	C:\Users\11037560\AppData\Local\Temp\native-platform1074249626328768209dir\native-platform.dll
+
+VM Arguments:
+jvm_args: -Xmx2048m -Dfile.encoding=UTF-8 -Duser.country=CN -Duser.language=zh -Duser.variant 
+java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 6.5
+java_class_path (initial): C:\Users\10076532\.gradle\wrapper\dists\gradle-6.5-all\2oz4ud9k3tuxjg84bbf55q0tn\gradle-6.5\lib\gradle-launcher-6.5.jar
+Launcher Type: SUN_STANDARD
+
+Environment Variables:
+JAVA_HOME=C:\Program Files\Java\jdk1.8.0_281
+CLASSPATH=.C:\Program Files\Java\jdk1.8.0_281\lib;C:\Program Files\Java\jdk1.8.0_281\lib\tools.jar
+PATH=C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Java\jdk1.8.0_281\bin;C:\Program Files\Java\jdk1.8.0_281\jre\bin;C:\Program Files\Git\cmd;C:\Program Files\dotnet\;C:\Program Files (x86)\Tencent\微信web开发者工具\dll;C:\Program Files\nodejs\;C:\MyFiles\savefile\swigwin-4.1.1;C:\Users\10076532\AppData\Local\Android\Sdk\ndk\21.4.7075529;C:\Users\10076532\AppData\Local\Android\android-sdk\platform-tools;C:\Users\11037560\AppData\Local\Microsoft\WindowsApps;C:\Users\11037560\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA 2022.2.1\bin;;C:\MyFiles\savefile\apache-maven-3.8.1\bin;C:\Users\11037560\AppData\Roaming\npm;C:\MyFiles\savefile\swigwin-4.1.1;C:\Users\10076532\AppData\Local\Android\Sdk\ndk\21.4.7075529;
+USERNAME=11037560
+OS=Windows_NT
+PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
+
+
+
+---------------  S Y S T E M  ---------------
+
+OS: Windows 10.0 , 64 bit Build 18362 (10.0.18362.2274)
+
+CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 78 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, rtm, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
+
+Memory: 4k page, physical 8266316k(407940k free), swap 16595860k(6612k free)
+
+vm_info: OpenJDK 64-Bit Server VM (25.242-b01) for windows-amd64 JRE (1.8.0_242-release-1644-b01), built by "builder" with MS VC++ 10.0 (VS2010)
+
+time: Mon Feb 05 14:16:28 2024
+timezone: 中国标准时间
+elapsed time: 3690 seconds (0d 1h 1m 30s)
+

+ 398 - 0
hs_err_pid540.log

@@ -0,0 +1,398 @@
+#
+# There is insufficient memory for the Java Runtime Environment to continue.
+# Native memory allocation (malloc) failed to allocate 1913616 bytes for Chunk::new
+# Possible reasons:
+#   The system is out of physical RAM or swap space
+#   The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
+# Possible solutions:
+#   Reduce memory load on the system
+#   Increase physical memory or swap space
+#   Check if swap backing store is full
+#   Decrease Java heap size (-Xmx/-Xms)
+#   Decrease number of Java threads
+#   Decrease Java thread stack sizes (-Xss)
+#   Set larger code cache with -XX:ReservedCodeCacheSize=
+#   JVM is running with Unscaled Compressed Oops mode in which the Java heap is
+#     placed in the first 4GB address space. The Java Heap base address is the
+#     maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
+#     to set the Java Heap base and to place the Java Heap above 4GB virtual address.
+# This output file may be truncated or incomplete.
+#
+#  Out of Memory Error (allocation.cpp:389), pid=540, tid=0x0000000000001c28
+#
+# JRE version: OpenJDK Runtime Environment (8.0_242-b01) (build 1.8.0_242-release-1644-b01)
+# Java VM: OpenJDK 64-Bit Server VM (25.242-b01 mixed mode windows-amd64 compressed oops)
+# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
+#
+
+---------------  T H R E A D  ---------------
+
+Current thread (0x000000001766c000):  JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=7208, stack(0x0000000018f90000,0x0000000019090000)]
+
+Stack: [0x0000000018f90000,0x0000000019090000]
+[error occurred during error reporting (printing stack bounds), id 0xc0000005]
+
+Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
+
+
+Current CompileTask:
+C2: 111067 26195 %     4       com.android.tools.r8.ir.regalloc.a::a @ 2118 (3992 bytes)
+
+
+---------------  P R O C E S S  ---------------
+
+Java Threads: ( => current thread )
+  0x0000000020d10000 JavaThread "RMI RenewClean-[127.0.0.1:17780,org.jetbrains.kotlin.daemon.common.LoopbackNetworkInterface$ClientLoopbackSocketFactory@7031c48e]" daemon [_thread_blocked, id=1604, stack(0x00000000009e0000,0x0000000000ae0000)]
+  0x0000000020622000 JavaThread "RMI TCP Connection(3)-127.0.0.1" daemon [_thread_in_native, id=11048, stack(0x000000002f490000,0x000000002f590000)]
+  0x0000000020628800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=14388, stack(0x0000000030d50000,0x0000000030e50000)]
+  0x0000000020627000 JavaThread "RMI Reaper" [_thread_blocked, id=18672, stack(0x0000000030c50000,0x0000000030d50000)]
+  0x0000000020625800 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=18028, stack(0x0000000030b50000,0x0000000030c50000)]
+  0x0000000020624000 JavaThread "GC Daemon" daemon [_thread_blocked, id=14412, stack(0x0000000030a50000,0x0000000030b50000)]
+  0x0000000020626800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=22164, stack(0x0000000030850000,0x0000000030950000)]
+  0x000000002061d800 JavaThread "Cache worker for Java compile cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\javaCompile)" [_thread_blocked, id=19972, stack(0x0000000030150000,0x0000000030250000)]
+  0x0000000020622800 JavaThread "Cache worker for Java compile cache (C:\Users\10076532\.gradle\caches\6.5\javaCompile)" [_thread_blocked, id=5588, stack(0x000000002f7c0000,0x000000002f8c0000)]
+  0x000000002bb60800 JavaThread "stdout" [_thread_in_native, id=9788, stack(0x000000002f390000,0x000000002f490000)]
+  0x000000002bb5f800 JavaThread "stderr" [_thread_in_native, id=1692, stack(0x000000002f290000,0x000000002f390000)]
+  0x000000002bb5c800 JavaThread "stdout" [_thread_in_native, id=4976, stack(0x000000002f190000,0x000000002f290000)]
+  0x000000002bb5d800 JavaThread "stderr" [_thread_in_native, id=14268, stack(0x000000002f090000,0x000000002f190000)]
+  0x000000002bb5f000 JavaThread "stdout" [_thread_in_native, id=13152, stack(0x000000002ef90000,0x000000002f090000)]
+  0x000000002bb5e000 JavaThread "stderr" [_thread_in_native, id=13748, stack(0x000000002ee90000,0x000000002ef90000)]
+  0x000000002bb51000 JavaThread "stdout" [_thread_in_native, id=13352, stack(0x000000002ed90000,0x000000002ee90000)]
+  0x000000002bb57000 JavaThread "stderr" [_thread_in_native, id=17132, stack(0x000000002ec90000,0x000000002ed90000)]
+  0x000000002bb56800 JavaThread "pool-3-thread-1" [_thread_blocked, id=18124, stack(0x000000002e930000,0x000000002ea30000)]
+  0x000000002bb55800 JavaThread "MarlinRenderer Disposer" daemon [_thread_blocked, id=2536, stack(0x000000002e630000,0x000000002e730000)]
+  0x000000002bb58000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=18980, stack(0x000000002e2f0000,0x000000002e3f0000)]
+  0x000000002bb5a800 JavaThread "WorkerExecutor Queue Thread 4" [_thread_blocked, id=8352, stack(0x000000002e530000,0x000000002e630000)]
+  0x000000002bb5c000 JavaThread "WorkerExecutor Queue Thread 3" [_thread_blocked, id=6504, stack(0x000000002e430000,0x000000002e530000)]
+  0x000000002bb53800 JavaThread "WorkerExecutor Queue Thread 2" [_thread_blocked, id=11900, stack(0x000000002d830000,0x000000002d930000)]
+  0x000000002bb52800 JavaThread "WorkerExecutor Queue" [_thread_blocked, id=11460, stack(0x000000002dd00000,0x000000002de00000)]
+  0x000000001d436800 JavaThread "Cache worker for execution history cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\executionHistory)" [_thread_blocked, id=15876, stack(0x000000002d2f0000,0x000000002d3f0000)]
+  0x000000001d43c800 JavaThread "Execution worker for ':' Thread 3" [_thread_blocked, id=21468, stack(0x000000002dc00000,0x000000002dd00000)]
+  0x000000001d43b800 JavaThread "Execution worker for ':' Thread 2" [_thread_in_native, id=21768, stack(0x000000002db00000,0x000000002dc00000)]
+  0x000000001d43a000 JavaThread "Execution worker for ':'" [_thread_blocked, id=13500, stack(0x000000002da00000,0x000000002db00000)]
+  0x000000001d437000 JavaThread "Cache worker for file content cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\fileContent)" [_thread_blocked, id=17640, stack(0x00000000007d0000,0x00000000008d0000)]
+  0x000000001d431000 JavaThread "Cache worker for Build Output Cleanup Cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\buildOutputCleanup)" [_thread_blocked, id=12488, stack(0x000000002cff0000,0x000000002d0f0000)]
+  0x000000001d42f000 JavaThread "Build operations Thread 4" [_thread_blocked, id=20216, stack(0x000000002cef0000,0x000000002cff0000)]
+  0x000000001d434000 JavaThread "Build operations Thread 3" [_thread_blocked, id=12016, stack(0x000000002cdf0000,0x000000002cef0000)]
+  0x000000001d433800 JavaThread "Build operations Thread 2" [_thread_blocked, id=19472, stack(0x000000002ccf0000,0x000000002cdf0000)]
+  0x0000000020d19000 JavaThread "Build operations" [_thread_blocked, id=16984, stack(0x000000002a680000,0x000000002a780000)]
+  0x0000000020d14800 JavaThread "Cache worker for cache directory md-rule (C:\Users\10076532\.gradle\caches\6.5\md-rule)" [_thread_blocked, id=12068, stack(0x0000000022f80000,0x0000000023080000)]
+  0x0000000020dd1800 JavaThread "Cache worker for cache directory md-supplier (C:\Users\10076532\.gradle\caches\6.5\md-supplier)" [_thread_blocked, id=12688, stack(0x0000000022e80000,0x0000000022f80000)]
+  0x0000000020dca000 JavaThread "Cache worker for checksums cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\checksums)" [_thread_blocked, id=17784, stack(0x000000001f9f0000,0x000000001faf0000)]
+  0x0000000020dd1000 JavaThread "Cache worker for file hash cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\fileHashes)" [_thread_blocked, id=16604, stack(0x000000001e2b0000,0x000000001e3b0000)]
+  0x0000000020dd0000 JavaThread "Thread-146" [_thread_blocked, id=21024, stack(0x000000001cbe0000,0x000000001cce0000)]
+  0x000000001afcb000 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:52288 to /127.0.0.1:52306" [_thread_blocked, id=14972, stack(0x000000001c9e0000,0x000000001cae0000)]
+  0x000000001afc6800 JavaThread "Cancel handler" [_thread_blocked, id=14408, stack(0x000000001c7e0000,0x000000001c8e0000)]
+  0x000000001afc9800 JavaThread "Handler for socket connection from /127.0.0.1:52288 to /127.0.0.1:52306" [_thread_in_native, id=4596, stack(0x000000001c6e0000,0x000000001c7e0000)]
+  0x0000000020d1a800 JavaThread "Memory manager" [_thread_blocked, id=7284, stack(0x000000002b380000,0x000000002b480000)]
+  0x000000001afca800 JavaThread "Cache worker for file content cache (C:\Users\10076532\.gradle\caches\6.5\fileContent)" [_thread_blocked, id=12232, stack(0x00000000215b0000,0x00000000216b0000)]
+  0x000000001afc7800 JavaThread "Cache worker for execution history cache (C:\Users\10076532\.gradle\caches\6.5\executionHistory)" [_thread_blocked, id=13856, stack(0x000000001faf0000,0x000000001fbf0000)]
+  0x000000001afcd800 JavaThread "Cache worker for file hash cache (C:\Users\10076532\.gradle\caches\6.5\fileHashes)" [_thread_blocked, id=10596, stack(0x000000001e1b0000,0x000000001e2b0000)]
+  0x000000001afc8000 JavaThread "File lock request listener" [_thread_in_native, id=13228, stack(0x000000001d0e0000,0x000000001d1e0000)]
+  0x000000001b021000 JavaThread "Cache worker for journal cache (C:\Users\10076532\.gradle\caches\journal-1)" [_thread_blocked, id=4064, stack(0x000000001cee0000,0x000000001cfe0000)]
+  0x000000001ae77000 JavaThread "Daemon worker" [_thread_in_Java, id=11824, stack(0x000000001c8e0000,0x000000001c9e0000)]
+  0x000000001ae47000 JavaThread "Daemon" [_thread_blocked, id=21456, stack(0x000000001c5e0000,0x000000001c6e0000)]
+  0x000000001ae42800 JavaThread "Daemon periodic checks" [_thread_blocked, id=2796, stack(0x000000001c2e0000,0x000000001c3e0000)]
+  0x000000001adc3800 JavaThread "Incoming local TCP Connector on port 52288" [_thread_in_native, id=19980, stack(0x000000001c130000,0x000000001c230000)]
+  0x0000000019501800 JavaThread "Daemon health stats" [_thread_blocked, id=13860, stack(0x000000001be30000,0x000000001bf30000)]
+  0x0000000018a15800 JavaThread "Service Thread" daemon [_thread_blocked, id=932, stack(0x0000000019290000,0x0000000019390000)]
+  0x00000000189f2000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=15640, stack(0x0000000019190000,0x0000000019290000)]
+  0x0000000018999000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=9940, stack(0x0000000019090000,0x0000000019190000)]
+=>0x000000001766c000 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=7208, stack(0x0000000018f90000,0x0000000019090000)]
+  0x000000001766a000 JavaThread "Attach Listener" daemon [_thread_blocked, id=3972, stack(0x0000000018e90000,0x0000000018f90000)]
+  0x0000000017620000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=21708, stack(0x0000000018d90000,0x0000000018e90000)]
+  0x00000000025a6000 JavaThread "Finalizer" daemon [_thread_blocked, id=4668, stack(0x0000000018890000,0x0000000018990000)]
+  0x00000000025a3800 JavaThread "Reference Handler" daemon [_thread_blocked, id=14024, stack(0x0000000018790000,0x0000000018890000)]
+  0x00000000022ee000 JavaThread "main" [_thread_blocked, id=18336, stack(0x0000000002310000,0x0000000002410000)]
+
+Other Threads:
+  0x00000000175d6000 VMThread [stack: 0x0000000018690000,0x0000000018790000] [id=10256]
+  0x0000000018a16800 WatcherThread [stack: 0x0000000019390000,0x0000000019490000] [id=14744]
+
+VM state:not at safepoint (normal execution)
+
+VM Mutex/Monitor currently owned by a thread: None
+
+OutOfMemory and StackOverflow Exception counts:
+OutOfMemoryError java_heap_errors=1
+
+heap address: 0x0000000080000000, size: 2048 MB, Compressed Oops mode: 32-bit
+Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
+Compressed class space size: 1073741824 Address: 0x0000000100000000
+
+Heap:
+ PSYoungGen      total 591872K, used 324892K [0x00000000d5580000, 0x00000000ffc00000, 0x0000000100000000)
+  eden space 495104K, 63% used [0x00000000d5580000,0x00000000e8a5a518,0x00000000f3900000)
+  from space 96768K, 8% used [0x00000000f9d80000,0x00000000fa5ecca0,0x00000000ffc00000)
+  to   space 99840K, 0% used [0x00000000f3900000,0x00000000f3900000,0x00000000f9a80000)
+ ParOldGen       total 407552K, used 305357K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 74% used [0x0000000080000000,0x0000000092a337f8,0x0000000098e00000)
+ Metaspace       used 122862K, capacity 128538K, committed 128600K, reserved 1161216K
+  class space    used 15328K, capacity 16481K, committed 16512K, reserved 1048576K
+
+Card table byte_map: [0x0000000011db0000,0x00000000121c0000] byte_map_base: 0x00000000119b0000
+
+Marking Bits: (ParMarkBitMap*) 0x0000000055b4f030
+ Begin Bits: [0x0000000012870000, 0x0000000014870000)
+ End Bits:   [0x0000000014870000, 0x0000000016870000)
+
+Polling page: 0x0000000002410000
+
+CodeCache: size=245760Kb used=73856Kb max_used=73891Kb free=171903Kb
+ bounds [0x00000000029f0000, 0x0000000007280000, 0x00000000119f0000]
+ total_blobs=22088 nmethods=21057 adapters=941
+ compilation: enabled
+
+Compilation events (10 events):
+Event: 110.628 Thread 0x00000000189f2000 26361       3       com.android.tools.r8.dex.r::a (62 bytes)
+Event: 110.628 Thread 0x00000000189f2000 nmethod 26361 0x000000000724ca10 code [0x000000000724cc60, 0x000000000724d7d8]
+Event: 110.635 Thread 0x00000000189f2000 26362 %     3       com.android.tools.r8.dex.r::a @ 35 (63 bytes)
+Event: 110.635 Thread 0x00000000189f2000 nmethod 26362% 0x000000000724ba50 code [0x000000000724bc00, 0x000000000724c258]
+Event: 110.635 Thread 0x00000000189f2000 26363       3       com.android.tools.r8.dex.r::a (63 bytes)
+Event: 110.636 Thread 0x00000000189f2000 nmethod 26363 0x000000000724b0d0 code [0x000000000724b280, 0x000000000724b878]
+Event: 110.834 Thread 0x00000000189f2000 26364       1       com.android.tools.r8.dex.h::a (1 bytes)
+Event: 110.835 Thread 0x00000000189f2000 nmethod 26364 0x000000000724ae10 code [0x000000000724af60, 0x000000000724b070]
+Event: 110.963 Thread 0x0000000018999000 nmethod 26040 0x0000000007265cd0 code [0x00000000072663a0, 0x000000000726c078]
+Event: 110.963 Thread 0x0000000018999000 26045       4       com.android.tools.r8.ir.regalloc.a::i (610 bytes)
+
+GC Heap History (10 events):
+Event: 98.786 GC heap before
+{Heap before GC invocations=31 (full 5):
+ PSYoungGen      total 493568K, used 416761K [0x00000000d5580000, 0x00000000fd680000, 0x0000000100000000)
+  eden space 386560K, 100% used [0x00000000d5580000,0x00000000ecf00000,0x00000000ecf00000)
+  from space 107008K, 28% used [0x00000000ecf00000,0x00000000eec7e4b0,0x00000000f3780000)
+  to   space 102912K, 0% used [0x00000000f7200000,0x00000000f7200000,0x00000000fd680000)
+ ParOldGen       total 407552K, used 226081K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 55% used [0x0000000080000000,0x000000008dcc8468,0x0000000098e00000)
+ Metaspace       used 121880K, capacity 127380K, committed 127576K, reserved 1161216K
+  class space    used 15257K, capacity 16396K, committed 16512K, reserved 1048576K
+Event: 98.871 GC heap after
+Heap after GC invocations=31 (full 5):
+ PSYoungGen      total 548352K, used 33709K [0x00000000d5580000, 0x00000000fcf00000, 0x0000000100000000)
+  eden space 453120K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f1000000)
+  from space 95232K, 35% used [0x00000000f7200000,0x00000000f92eb668,0x00000000fcf00000)
+  to   space 97792K, 0% used [0x00000000f1000000,0x00000000f1000000,0x00000000f6f80000)
+ ParOldGen       total 407552K, used 226089K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 55% used [0x0000000080000000,0x000000008dcca468,0x0000000098e00000)
+ Metaspace       used 121880K, capacity 127380K, committed 127576K, reserved 1161216K
+  class space    used 15257K, capacity 16396K, committed 16512K, reserved 1048576K
+}
+Event: 100.739 GC heap before
+{Heap before GC invocations=32 (full 5):
+ PSYoungGen      total 548352K, used 486829K [0x00000000d5580000, 0x00000000fcf00000, 0x0000000100000000)
+  eden space 453120K, 100% used [0x00000000d5580000,0x00000000f1000000,0x00000000f1000000)
+  from space 95232K, 35% used [0x00000000f7200000,0x00000000f92eb668,0x00000000fcf00000)
+  to   space 97792K, 0% used [0x00000000f1000000,0x00000000f1000000,0x00000000f6f80000)
+ ParOldGen       total 407552K, used 226089K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 55% used [0x0000000080000000,0x000000008dcca468,0x0000000098e00000)
+ Metaspace       used 122387K, capacity 128024K, committed 128344K, reserved 1161216K
+  class space    used 15296K, capacity 16434K, committed 16512K, reserved 1048576K
+Event: 100.817 GC heap after
+Heap after GC invocations=32 (full 5):
+ PSYoungGen      total 550912K, used 17652K [0x00000000d5580000, 0x00000000fff80000, 0x0000000100000000)
+  eden space 453120K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f1000000)
+  from space 97792K, 18% used [0x00000000f1000000,0x00000000f213d098,0x00000000f6f80000)
+  to   space 96256K, 0% used [0x00000000fa180000,0x00000000fa180000,0x00000000fff80000)
+ ParOldGen       total 407552K, used 254896K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 62% used [0x0000000080000000,0x000000008f8ec158,0x0000000098e00000)
+ Metaspace       used 122387K, capacity 128024K, committed 128344K, reserved 1161216K
+  class space    used 15296K, capacity 16434K, committed 16512K, reserved 1048576K
+}
+Event: 102.441 GC heap before
+{Heap before GC invocations=33 (full 5):
+ PSYoungGen      total 550912K, used 470772K [0x00000000d5580000, 0x00000000fff80000, 0x0000000100000000)
+  eden space 453120K, 100% used [0x00000000d5580000,0x00000000f1000000,0x00000000f1000000)
+  from space 97792K, 18% used [0x00000000f1000000,0x00000000f213d098,0x00000000f6f80000)
+  to   space 96256K, 0% used [0x00000000fa180000,0x00000000fa180000,0x00000000fff80000)
+ ParOldGen       total 407552K, used 254896K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 62% used [0x0000000080000000,0x000000008f8ec158,0x0000000098e00000)
+ Metaspace       used 122594K, capacity 128154K, committed 128344K, reserved 1161216K
+  class space    used 15298K, capacity 16435K, committed 16512K, reserved 1048576K
+Event: 102.575 GC heap after
+Heap after GC invocations=33 (full 5):
+ PSYoungGen      total 589312K, used 72276K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 493056K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3700000)
+  from space 96256K, 75% used [0x00000000fa180000,0x00000000fe815328,0x00000000fff80000)
+  to   space 102912K, 0% used [0x00000000f3700000,0x00000000f3700000,0x00000000f9b80000)
+ ParOldGen       total 407552K, used 269285K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 66% used [0x0000000080000000,0x00000000906f9488,0x0000000098e00000)
+ Metaspace       used 122594K, capacity 128154K, committed 128344K, reserved 1161216K
+  class space    used 15298K, capacity 16435K, committed 16512K, reserved 1048576K
+}
+Event: 104.362 GC heap before
+{Heap before GC invocations=34 (full 5):
+ PSYoungGen      total 589312K, used 565332K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 493056K, 100% used [0x00000000d5580000,0x00000000f3700000,0x00000000f3700000)
+  from space 96256K, 75% used [0x00000000fa180000,0x00000000fe815328,0x00000000fff80000)
+  to   space 102912K, 0% used [0x00000000f3700000,0x00000000f3700000,0x00000000f9b80000)
+ ParOldGen       total 407552K, used 269285K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 66% used [0x0000000080000000,0x00000000906f9488,0x0000000098e00000)
+ Metaspace       used 122740K, capacity 128422K, committed 128600K, reserved 1161216K
+  class space    used 15322K, capacity 16475K, committed 16512K, reserved 1048576K
+Event: 104.416 GC heap after
+Heap after GC invocations=34 (full 5):
+ PSYoungGen      total 595968K, used 17228K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 493056K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3700000)
+  from space 102912K, 16% used [0x00000000f3700000,0x00000000f47d32b8,0x00000000f9b80000)
+  to   space 100864K, 0% used [0x00000000f9d80000,0x00000000f9d80000,0x0000000100000000)
+ ParOldGen       total 407552K, used 289405K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 71% used [0x0000000080000000,0x0000000091a9f6f8,0x0000000098e00000)
+ Metaspace       used 122740K, capacity 128422K, committed 128600K, reserved 1161216K
+  class space    used 15322K, capacity 16475K, committed 16512K, reserved 1048576K
+}
+Event: 106.550 GC heap before
+{Heap before GC invocations=35 (full 5):
+ PSYoungGen      total 595968K, used 510284K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 493056K, 100% used [0x00000000d5580000,0x00000000f3700000,0x00000000f3700000)
+  from space 102912K, 16% used [0x00000000f3700000,0x00000000f47d32b8,0x00000000f9b80000)
+  to   space 100864K, 0% used [0x00000000f9d80000,0x00000000f9d80000,0x0000000100000000)
+ ParOldGen       total 407552K, used 289405K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 71% used [0x0000000080000000,0x0000000091a9f6f8,0x0000000098e00000)
+ Metaspace       used 122781K, capacity 128460K, committed 128600K, reserved 1161216K
+  class space    used 15326K, capacity 16480K, committed 16512K, reserved 1048576K
+Event: 106.628 GC heap after
+Heap after GC invocations=35 (full 5):
+ PSYoungGen      total 591872K, used 8627K [0x00000000d5580000, 0x00000000ffc00000, 0x0000000100000000)
+  eden space 495104K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3900000)
+  from space 96768K, 8% used [0x00000000f9d80000,0x00000000fa5ecca0,0x00000000ffc00000)
+  to   space 99840K, 0% used [0x00000000f3900000,0x00000000f3900000,0x00000000f9a80000)
+ ParOldGen       total 407552K, used 305357K [0x0000000080000000, 0x0000000098e00000, 0x00000000d5580000)
+  object space 407552K, 74% used [0x0000000080000000,0x0000000092a337f8,0x0000000098e00000)
+ Metaspace       used 122781K, capacity 128460K, committed 128600K, reserved 1161216K
+  class space    used 15326K, capacity 16480K, committed 16512K, reserved 1048576K
+}
+
+Deoptimization events (10 events):
+Event: 104.433 Thread 0x000000002bb5a800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000006c4643c method=com.sun.tools.javac.comp.Attr$TypeAnnotationsValidator.validateAnnotatedType(Lcom/sun/tools/javac/tree/JCTree;Lcom/sun/tools/javac/code/Type;)V @ 477
+Event: 104.433 Thread 0x000000002bb5a800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000006c4643c method=com.sun.tools.javac.comp.Attr$TypeAnnotationsValidator.validateAnnotatedType(Lcom/sun/tools/javac/tree/JCTree;Lcom/sun/tools/javac/code/Type;)V @ 477
+Event: 105.877 Thread 0x000000001d43a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000006daa328 method=com.android.tools.r8.ir.conversion.o.a(ILcom/android/tools/r8/ir/conversion/N;)I @ 148
+Event: 105.993 Thread 0x000000001d43b800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000000315f2b8 method=java.util.WeakHashMap.eq(Ljava/lang/Object;Ljava/lang/Object;)Z @ 7
+Event: 107.710 Thread 0x000000001d43a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000524a77c method=java.lang.Long.numberOfTrailingZeros(J)I @ 3
+Event: 107.711 Thread 0x000000001d43c800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000005355420 method=org.gradle.api.internal.changedetection.state.GlobalScopeFileTimeStampInspector.timestampCanBeUsedToDetectFileChange(Ljava/lang/String;J)Z @ 37
+Event: 108.312 Thread 0x000000001ae77000 Uncommon trap: reason=speculate_class_check action=maybe_recompile pc=0x00000000067464d8 method=com.android.tools.r8.ir.optimize.l.a(Lcom/android/tools/r8/s/b/X;Lcom/android/tools/r8/s/b/o;Ljava/util/function/Supplier;Ljava/util/Map;Ljava/util/function/Pr
+Event: 108.317 Thread 0x000000001ae77000 Uncommon trap: reason=speculate_class_check action=maybe_recompile pc=0x00000000067464d8 method=com.android.tools.r8.ir.optimize.l.a(Lcom/android/tools/r8/s/b/X;Lcom/android/tools/r8/s/b/o;Ljava/util/function/Supplier;Ljava/util/Map;Ljava/util/function/Pr
+Event: 108.325 Thread 0x000000001ae77000 Uncommon trap: reason=speculate_class_check action=maybe_recompile pc=0x00000000067464d8 method=com.android.tools.r8.ir.optimize.l.a(Lcom/android/tools/r8/s/b/X;Lcom/android/tools/r8/s/b/o;Ljava/util/function/Supplier;Ljava/util/Map;Ljava/util/function/Pr
+Event: 108.325 Thread 0x000000001ae77000 Uncommon trap: reason=speculate_class_check action=maybe_recompile pc=0x00000000067464d8 method=com.android.tools.r8.ir.optimize.l.a(Lcom/android/tools/r8/s/b/X;Lcom/android/tools/r8/s/b/o;Ljava/util/function/Supplier;Ljava/util/Map;Ljava/util/function/Pr
+
+Classes redefined (0 events):
+No events
+
+Internal exceptions (10 events):
+Event: 105.528 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a62bc0) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 105.529 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a64990) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 105.529 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a65698) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 105.529 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a67498) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 105.530 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a681a8) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 105.530 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a69fa8) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 105.530 Thread 0x000000001d43b800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e2a6acb8) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 107.583 Thread 0x000000001d43c800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000dd52eed0) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 107.810 Thread 0x000000001d43a000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000df2d9918) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 110.849 Thread 0x000000001ae77000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e867eb18) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+
+Events (10 events):
+Event: 110.355 Thread 0x000000001ae77000 DEOPT PACKING pc=0x0000000005799443 sp=0x000000001c9d78b0
+Event: 110.355 Thread 0x000000001ae77000 DEOPT UNPACKING pc=0x0000000002a375d0 sp=0x000000001c9d76b0 mode 0
+Event: 110.366 Thread 0x000000001ae77000 DEOPT PACKING pc=0x000000000598f053 sp=0x000000001c9d7840
+Event: 110.366 Thread 0x000000001ae77000 DEOPT UNPACKING pc=0x0000000002a375d0 sp=0x000000001c9d7638 mode 0
+Event: 110.369 Thread 0x000000001ae77000 DEOPT PACKING pc=0x0000000006975bda sp=0x000000001c9d78c0
+Event: 110.369 Thread 0x000000001ae77000 DEOPT UNPACKING pc=0x0000000002a375d0 sp=0x000000001c9d75f0 mode 0
+Event: 110.374 Thread 0x000000001ae77000 DEOPT PACKING pc=0x0000000005c4047d sp=0x000000001c9d7480
+Event: 110.374 Thread 0x000000001ae77000 DEOPT UNPACKING pc=0x0000000002a375d0 sp=0x000000001c9d7210 mode 0
+Event: 110.628 Thread 0x000000001ae77000 DEOPT PACKING pc=0x0000000005afd342 sp=0x000000001c9d7800
+Event: 110.628 Thread 0x000000001ae77000 DEOPT UNPACKING pc=0x0000000002a375d0 sp=0x000000001c9d7580 mode 0
+
+
+Dynamic libraries:
+0x00007ff7782b0000 - 0x00007ff7782e1000 	C:\Program Files\Android\Android Studio\jre\bin\java.exe
+0x00007ffe0bd60000 - 0x00007ffe0bf50000 	C:\WINDOWS\SYSTEM32\ntdll.dll
+0x00007ffe0abe0000 - 0x00007ffe0ac92000 	C:\WINDOWS\System32\KERNEL32.DLL
+0x00007ffe09920000 - 0x00007ffe09bc5000 	C:\WINDOWS\System32\KERNELBASE.dll
+0x00007ffe0ad40000 - 0x00007ffe0ade5000 	C:\WINDOWS\System32\ADVAPI32.dll
+0x00007ffe0aca0000 - 0x00007ffe0ad3e000 	C:\WINDOWS\System32\msvcrt.dll
+0x00007ffe0a620000 - 0x00007ffe0a6b8000 	C:\WINDOWS\System32\sechost.dll
+0x00007ffe0a1b0000 - 0x00007ffe0a2cb000 	C:\WINDOWS\System32\RPCRT4.dll
+0x00007ffe0aea0000 - 0x00007ffe0b034000 	C:\WINDOWS\System32\USER32.dll
+0x00007ffe08d80000 - 0x00007ffe08da1000 	C:\WINDOWS\System32\win32u.dll
+0x00007ffe0a400000 - 0x00007ffe0a426000 	C:\WINDOWS\System32\GDI32.dll
+0x00007ffe09000000 - 0x00007ffe09198000 	C:\WINDOWS\System32\gdi32full.dll
+0x00007ffe08f60000 - 0x00007ffe08ffe000 	C:\WINDOWS\System32\msvcp_win.dll
+0x00007ffe09c00000 - 0x00007ffe09cfa000 	C:\WINDOWS\System32\ucrtbase.dll
+0x00007ffdebdc0000 - 0x00007ffdec044000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.2274_none_9e8067a5e45c3d75\COMCTL32.dll
+0x00007ffe09e00000 - 0x00007ffe0a136000 	C:\WINDOWS\System32\combase.dll
+0x00007ffe08cd0000 - 0x00007ffe08d54000 	C:\WINDOWS\System32\bcryptPrimitives.dll
+0x00007ffe0ae70000 - 0x00007ffe0ae9e000 	C:\WINDOWS\System32\IMM32.DLL
+0x00000000022b0000 - 0x00000000022c4000 	C:\WINDOWS\System32\umppc17706.dll
+0x0000000054950000 - 0x0000000054a22000 	C:\Program Files\Android\Android Studio\jre\jre\bin\msvcr100.dll
+0x0000000055380000 - 0x0000000055bcb000 	C:\Program Files\Android\Android Studio\jre\jre\bin\server\jvm.dll
+0x00007ffe0b040000 - 0x00007ffe0b048000 	C:\WINDOWS\System32\PSAPI.DLL
+0x00007ffde13b0000 - 0x00007ffde13b9000 	C:\WINDOWS\SYSTEM32\WSOCK32.dll
+0x00007ffe0a960000 - 0x00007ffe0a9cf000 	C:\WINDOWS\System32\WS2_32.dll
+0x00007ffe02010000 - 0x00007ffe02034000 	C:\WINDOWS\SYSTEM32\WINMM.dll
+0x00007ffe030d0000 - 0x00007ffe030da000 	C:\WINDOWS\SYSTEM32\VERSION.dll
+0x00007ffe01fe0000 - 0x00007ffe0200d000 	C:\WINDOWS\SYSTEM32\WINMMBASE.dll
+0x00007ffe09db0000 - 0x00007ffe09dfa000 	C:\WINDOWS\System32\cfgmgr32.dll
+0x00007ffdfd740000 - 0x00007ffdfd74f000 	C:\Program Files\Android\Android Studio\jre\jre\bin\verify.dll
+0x00007ffdf0290000 - 0x00007ffdf02b9000 	C:\Program Files\Android\Android Studio\jre\jre\bin\java.dll
+0x00007ffdfcdd0000 - 0x00007ffdfcde6000 	C:\Program Files\Android\Android Studio\jre\jre\bin\zip.dll
+0x00007ffe0b550000 - 0x00007ffe0bc37000 	C:\WINDOWS\System32\SHELL32.dll
+0x00007ffe0a350000 - 0x00007ffe0a3f9000 	C:\WINDOWS\System32\shcore.dll
+0x00007ffe091a0000 - 0x00007ffe0991c000 	C:\WINDOWS\System32\windows.storage.dll
+0x00007ffe08c20000 - 0x00007ffe08c3e000 	C:\WINDOWS\System32\profapi.dll
+0x00007ffe08c80000 - 0x00007ffe08cca000 	C:\WINDOWS\System32\powrprof.dll
+0x00007ffe08c10000 - 0x00007ffe08c20000 	C:\WINDOWS\System32\UMPDC.dll
+0x00007ffe0a790000 - 0x00007ffe0a7e2000 	C:\WINDOWS\System32\shlwapi.dll
+0x00007ffe08c60000 - 0x00007ffe08c71000 	C:\WINDOWS\System32\kernel.appcore.dll
+0x00007ffe08d60000 - 0x00007ffe08d77000 	C:\WINDOWS\System32\cryptsp.dll
+0x00007ffdfcd60000 - 0x00007ffdfcd7a000 	C:\Program Files\Android\Android Studio\jre\jre\bin\net.dll
+0x00007ffe08450000 - 0x00007ffe084b7000 	C:\WINDOWS\system32\mswsock.dll
+0x00007ffdf5570000 - 0x00007ffdf5583000 	C:\Program Files\Android\Android Studio\jre\jre\bin\nio.dll
+0x00007ffde2310000 - 0x00007ffde2337000 	C:\Users\10076532\.gradle\native\f6784746aeab05261644944871eae4fe03e0ef1612fff0a4a95f87b438bc6780\windows-amd64\native-platform.dll
+0x00007ffdfce80000 - 0x00007ffdfce8d000 	C:\Program Files\Android\Android Studio\jre\jre\bin\management.dll
+0x00007ffe07d50000 - 0x00007ffe07d83000 	C:\WINDOWS\system32\rsaenh.dll
+0x00007ffe09bd0000 - 0x00007ffe09bf6000 	C:\WINDOWS\System32\bcrypt.dll
+0x00007ffe08b00000 - 0x00007ffe08b25000 	C:\WINDOWS\SYSTEM32\USERENV.dll
+0x00007ffe08620000 - 0x00007ffe0862c000 	C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
+0x00007ffe08160000 - 0x00007ffe0819a000 	C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
+0x00007ffe0bd10000 - 0x00007ffe0bd18000 	C:\WINDOWS\System32\NSI.dll
+0x00007ffdfee30000 - 0x00007ffdfee46000 	C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
+0x00007ffdfebf0000 - 0x00007ffdfec0c000 	C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
+0x00007ffe081a0000 - 0x00007ffe0826a000 	C:\WINDOWS\SYSTEM32\DNSAPI.dll
+0x00007ffe002e0000 - 0x00007ffe002eb000 	C:\WINDOWS\SYSTEM32\WINNSI.DLL
+0x00007ffe07910000 - 0x00007ffe07941000 	C:\WINDOWS\SYSTEM32\ntmarta.dll
+0x00007ffd9af30000 - 0x00007ffd9b0cc000 	C:\Program Files\Android\Android Studio\jre\jre\bin\awt.dll
+0x00007ffe0a6c0000 - 0x00007ffe0a785000 	C:\WINDOWS\System32\OLEAUT32.dll
+0x00007ffe031d0000 - 0x00007ffe031fd000 	C:\WINDOWS\SYSTEM32\dwmapi.dll
+0x00007ffe066c0000 - 0x00007ffe06c80000 	C:\WINDOWS\SYSTEM32\d2d1.dll
+0x00007ffe02110000 - 0x00007ffe0219f000 	C:\WINDOWS\SYSTEM32\apphelp.dll
+0x00007ffe027a0000 - 0x00007ffe02839000 	C:\WINDOWS\system32\uxtheme.dll
+
+VM Arguments:
+jvm_args: -Xmx2048m -Dfile.encoding=UTF-8 -Duser.country=CN -Duser.language=zh -Duser.variant 
+java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 6.5
+java_class_path (initial): C:\Users\10076532\.gradle\wrapper\dists\gradle-6.5-all\2oz4ud9k3tuxjg84bbf55q0tn\gradle-6.5\lib\gradle-launcher-6.5.jar
+Launcher Type: SUN_STANDARD
+
+Environment Variables:
+JAVA_HOME=C:\Program Files\Java\jdk1.8.0_281
+CLASSPATH=.C:\Program Files\Java\jdk1.8.0_281\lib;C:\Program Files\Java\jdk1.8.0_281\lib\tools.jar
+PATH=C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Java\jdk1.8.0_281\bin;C:\Program Files\Java\jdk1.8.0_281\jre\bin;C:\Program Files\Git\cmd;C:\Program Files\dotnet\;C:\Program Files (x86)\Tencent\微信web开发者工具\dll;C:\Program Files\nodejs\;C:\MyFiles\savefile\swigwin-4.1.1;C:\Users\10076532\AppData\Local\Android\Sdk\ndk\21.4.7075529;C:\Users\10076532\AppData\Local\Android\android-sdk\platform-tools;C:\Users\11037560\AppData\Local\Microsoft\WindowsApps;C:\Users\11037560\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA 2022.2.1\bin;;C:\MyFiles\savefile\apache-maven-3.8.1\bin;C:\Users\11037560\AppData\Roaming\npm;C:\MyFiles\savefile\swigwin-4.1.1;C:\Users\10076532\AppData\Local\Android\Sdk\ndk\21.4.7075529;
+USERNAME=11037560
+OS=Windows_NT
+PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
+
+
+
+---------------  S Y S T E M  ---------------
+
+OS: Windows 10.0 , 64 bit Build 18362 (10.0.18362.2274)
+
+CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 78 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, rtm, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
+
+Memory: 4k page, physical 8266316k(466140k free), swap 16595860k(4656k free)
+
+vm_info: OpenJDK 64-Bit Server VM (25.242-b01) for windows-amd64 JRE (1.8.0_242-release-1644-b01), built by "builder" with MS VC++ 10.0 (VS2010)
+
+time: Mon Feb 05 14:23:30 2024
+timezone: 中国标准时间
+elapsed time: 111 seconds (0d 0h 1m 51s)
+

+ 378 - 0
hs_err_pid6376.log

@@ -0,0 +1,378 @@
+#
+# There is insufficient memory for the Java Runtime Environment to continue.
+# Native memory allocation (malloc) failed to allocate 1349536 bytes for Chunk::new
+# Possible reasons:
+#   The system is out of physical RAM or swap space
+#   The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
+# Possible solutions:
+#   Reduce memory load on the system
+#   Increase physical memory or swap space
+#   Check if swap backing store is full
+#   Decrease Java heap size (-Xmx/-Xms)
+#   Decrease number of Java threads
+#   Decrease Java thread stack sizes (-Xss)
+#   Set larger code cache with -XX:ReservedCodeCacheSize=
+#   JVM is running with Unscaled Compressed Oops mode in which the Java heap is
+#     placed in the first 4GB address space. The Java Heap base address is the
+#     maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
+#     to set the Java Heap base and to place the Java Heap above 4GB virtual address.
+# This output file may be truncated or incomplete.
+#
+#  Out of Memory Error (allocation.cpp:389), pid=6376, tid=0x0000000000005484
+#
+# JRE version: OpenJDK Runtime Environment (8.0_242-b01) (build 1.8.0_242-release-1644-b01)
+# Java VM: OpenJDK 64-Bit Server VM (25.242-b01 mixed mode windows-amd64 compressed oops)
+# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
+#
+
+---------------  T H R E A D  ---------------
+
+Current thread (0x000000001737c800):  JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=21636, stack(0x0000000018cc0000,0x0000000018dc0000)]
+
+Stack: [0x0000000018cc0000,0x0000000018dc0000]
+[error occurred during error reporting (printing stack bounds), id 0xc0000005]
+
+Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
+
+
+Current CompileTask:
+C2:  96133 21591       4       com.android.tools.r8.ir.regalloc.a::i (610 bytes)
+
+
+---------------  P R O C E S S  ---------------
+
+Java Threads: ( => current thread )
+  0x000000001ff03000 JavaThread "WorkerExecutor Queue Thread 6" [_thread_blocked, id=20596, stack(0x000000001c810000,0x000000001c910000)]
+  0x000000002011f000 JavaThread "WorkerExecutor Queue Thread 5" [_thread_blocked, id=20512, stack(0x000000002df30000,0x000000002e030000)]
+  0x0000000020120800 JavaThread "WorkerExecutor Queue Thread 4" [_thread_blocked, id=16624, stack(0x000000002de30000,0x000000002df30000)]
+  0x0000000020122000 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=21624, stack(0x000000002d5a0000,0x000000002d6a0000)]
+  0x0000000020121000 JavaThread "RMI Reaper" [_thread_blocked, id=21444, stack(0x000000002d4a0000,0x000000002d5a0000)]
+  0x000000002011e000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=17288, stack(0x000000002d3a0000,0x000000002d4a0000)]
+  0x000000001ff10000 JavaThread "GC Daemon" daemon [_thread_blocked, id=21552, stack(0x000000002d2a0000,0x000000002d3a0000)]
+  0x000000001de47800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=13340, stack(0x000000002cb60000,0x000000002cc60000)]
+  0x000000001de52000 JavaThread "stdout" [_thread_in_native, id=13568, stack(0x000000002ce60000,0x000000002cf60000)]
+  0x000000001de51800 JavaThread "stderr" [_thread_in_native, id=11576, stack(0x000000002cd60000,0x000000002ce60000)]
+  0x000000001de54800 JavaThread "pool-2-thread-1" [_thread_blocked, id=18460, stack(0x000000002cc60000,0x000000002cd60000)]
+  0x000000001de50800 JavaThread "WorkerExecutor Queue" [_thread_blocked, id=3484, stack(0x000000002ca60000,0x000000002cb60000)]
+  0x000000001de47000 JavaThread "Cache worker for execution history cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\executionHistory)" [_thread_blocked, id=2568, stack(0x000000002c360000,0x000000002c460000)]
+  0x000000001de4d800 JavaThread "Execution worker for ':' Thread 3" [_thread_blocked, id=9432, stack(0x000000002c260000,0x000000002c360000)]
+  0x000000001de4d000 JavaThread "Execution worker for ':' Thread 2" [_thread_blocked, id=18520, stack(0x000000002c160000,0x000000002c260000)]
+  0x000000001de46000 JavaThread "Execution worker for ':'" [_thread_blocked, id=15496, stack(0x000000002b940000,0x000000002ba40000)]
+  0x000000001de4c000 JavaThread "Cache worker for file content cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\fileContent)" [_thread_blocked, id=6652, stack(0x000000002ba60000,0x000000002bb60000)]
+  0x000000001ff0e800 JavaThread "Memory manager" [_thread_blocked, id=12252, stack(0x000000002b640000,0x000000002b740000)]
+  0x000000001ff0d800 JavaThread "Cache worker for Build Output Cleanup Cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\buildOutputCleanup)" [_thread_blocked, id=11140, stack(0x000000002a200000,0x000000002a300000)]
+  0x0000000018759800 JavaThread "Build operations Thread 4" [_thread_in_Java, id=21844, stack(0x0000000022c00000,0x0000000022d00000)]
+  0x0000000018758000 JavaThread "Build operations Thread 3" [_thread_in_native, id=7468, stack(0x0000000022b00000,0x0000000022c00000)]
+  0x0000000018756800 JavaThread "Build operations Thread 2" [_thread_in_Java, id=19144, stack(0x0000000022a00000,0x0000000022b00000)]
+  0x0000000018755800 JavaThread "Build operations" [_thread_in_native, id=21576, stack(0x0000000022900000,0x0000000022a00000)]
+  0x000000001adad000 JavaThread "Cache worker for file content cache (C:\Users\10076532\.gradle\caches\6.5\fileContent)" [_thread_blocked, id=16808, stack(0x0000000021230000,0x0000000021330000)]
+  0x000000001adac000 JavaThread "Cache worker for execution history cache (C:\Users\10076532\.gradle\caches\6.5\executionHistory)" [_thread_blocked, id=20312, stack(0x0000000020a30000,0x0000000020b30000)]
+  0x000000001adaa800 JavaThread "Cache worker for cache directory md-rule (C:\Users\10076532\.gradle\caches\6.5\md-rule)" [_thread_blocked, id=11976, stack(0x0000000020930000,0x0000000020a30000)]
+  0x000000001ada9000 JavaThread "Cache worker for cache directory md-supplier (C:\Users\10076532\.gradle\caches\6.5\md-supplier)" [_thread_blocked, id=7524, stack(0x000000001f4b0000,0x000000001f5b0000)]
+  0x000000001adaa000 JavaThread "Cache worker for checksums cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\checksums)" [_thread_blocked, id=22084, stack(0x000000001f3b0000,0x000000001f4b0000)]
+  0x000000001adab800 JavaThread "Cache worker for file hash cache (C:\MyFiles\savefile\AndroidStudioProjects\issp-dev\issp\.gradle\6.5\fileHashes)" [_thread_blocked, id=21120, stack(0x0000000020830000,0x0000000020930000)]
+  0x000000001ada7800 JavaThread "Cache worker for file hash cache (C:\Users\10076532\.gradle\caches\6.5\fileHashes)" [_thread_blocked, id=9284, stack(0x000000001cf10000,0x000000001d010000)]
+  0x000000001ada7000 JavaThread "File lock request listener" [_thread_in_native, id=14124, stack(0x000000001ce10000,0x000000001cf10000)]
+  0x000000001ae37000 JavaThread "Cache worker for journal cache (C:\Users\10076532\.gradle\caches\journal-1)" [_thread_blocked, id=868, stack(0x000000001cc10000,0x000000001cd10000)]
+  0x0000000019312800 JavaThread "Thread-9" [_thread_blocked, id=13204, stack(0x000000001c910000,0x000000001ca10000)]
+  0x000000001925f000 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:52020 to /127.0.0.1:52021" [_thread_blocked, id=5464, stack(0x000000001c710000,0x000000001c810000)]
+  0x0000000019260000 JavaThread "Daemon worker" [_thread_blocked, id=13848, stack(0x000000001c610000,0x000000001c710000)]
+  0x000000001adfa000 JavaThread "Cancel handler" [_thread_blocked, id=10264, stack(0x000000001c510000,0x000000001c610000)]
+  0x000000001adcb000 JavaThread "Handler for socket connection from /127.0.0.1:52020 to /127.0.0.1:52021" [_thread_in_native, id=1232, stack(0x000000001c410000,0x000000001c510000)]
+  0x000000001ada5800 JavaThread "Daemon periodic checks" [_thread_blocked, id=9356, stack(0x000000001c310000,0x000000001c410000)]
+  0x000000001ada4800 JavaThread "Daemon" [_thread_blocked, id=476, stack(0x000000001c210000,0x000000001c310000)]
+  0x000000001ad20800 JavaThread "Incoming local TCP Connector on port 52020" [_thread_in_native, id=6064, stack(0x000000001be60000,0x000000001bf60000)]
+  0x0000000019223800 JavaThread "Daemon health stats" [_thread_blocked, id=11828, stack(0x000000001bb60000,0x000000001bc60000)]
+  0x000000001874d000 JavaThread "Service Thread" daemon [_thread_blocked, id=18184, stack(0x0000000018fc0000,0x00000000190c0000)]
+  0x00000000186d2800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=17896, stack(0x0000000018ec0000,0x0000000018fc0000)]
+  0x0000000017382000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=13896, stack(0x0000000018dc0000,0x0000000018ec0000)]
+=>0x000000001737c800 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=21636, stack(0x0000000018cc0000,0x0000000018dc0000)]
+  0x0000000017368800 JavaThread "Attach Listener" daemon [_thread_blocked, id=3260, stack(0x0000000018bc0000,0x0000000018cc0000)]
+  0x00000000186d0800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=18884, stack(0x0000000018ac0000,0x0000000018bc0000)]
+  0x000000000274c000 JavaThread "Finalizer" daemon [_thread_blocked, id=16524, stack(0x00000000185c0000,0x00000000186c0000)]
+  0x0000000002743800 JavaThread "Reference Handler" daemon [_thread_blocked, id=1972, stack(0x00000000184c0000,0x00000000185c0000)]
+  0x00000000021fe000 JavaThread "main" [_thread_blocked, id=15244, stack(0x0000000002550000,0x0000000002650000)]
+
+Other Threads:
+  0x0000000017336000 VMThread [stack: 0x00000000183c0000,0x00000000184c0000] [id=9500]
+  0x000000001874e000 WatcherThread [stack: 0x00000000190c0000,0x00000000191c0000] [id=3680]
+
+VM state:not at safepoint (normal execution)
+
+VM Mutex/Monitor currently owned by a thread: None
+
+heap address: 0x0000000080000000, size: 2048 MB, Compressed Oops mode: 32-bit
+Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
+Compressed class space size: 1073741824 Address: 0x0000000100000000
+
+Heap:
+ PSYoungGen      total 562176K, used 235459K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 47% used [0x00000000d5580000,0x00000000e3b70e20,0x00000000f3800000)
+  from space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 425472K, used 173793K [0x0000000080000000, 0x0000000099f80000, 0x00000000d5580000)
+  object space 425472K, 40% used [0x0000000080000000,0x000000008a9b8658,0x0000000099f80000)
+ Metaspace       used 111271K, capacity 116564K, committed 116824K, reserved 1150976K
+  class space    used 14288K, capacity 15411K, committed 15488K, reserved 1048576K
+
+Card table byte_map: [0x0000000011b10000,0x0000000011f20000] byte_map_base: 0x0000000011710000
+
+Marking Bits: (ParMarkBitMap*) 0x0000000055b4f030
+ Begin Bits: [0x00000000125d0000, 0x00000000145d0000)
+ End Bits:   [0x00000000145d0000, 0x00000000165d0000)
+
+Polling page: 0x0000000000950000
+
+CodeCache: size=245760Kb used=60926Kb max_used=61172Kb free=184833Kb
+ bounds [0x0000000002750000, 0x00000000063e0000, 0x0000000011750000]
+ total_blobs=18788 nmethods=17872 adapters=824
+ compilation: enabled
+
+Compilation events (10 events):
+Event: 96.058 Thread 0x00000000186d2800 21647       2       com.android.tools.r8.ir.conversion.o0::b (13 bytes)
+Event: 96.058 Thread 0x00000000186d2800 nmethod 21647 0x00000000059ba110 code [0x00000000059ba260, 0x00000000059ba3b0]
+Event: 96.059 Thread 0x00000000186d2800 21648       2       com.android.tools.r8.q.a.a.b.X::a (21 bytes)
+Event: 96.059 Thread 0x00000000186d2800 nmethod 21648 0x0000000005161350 code [0x00000000051614e0, 0x0000000005161838]
+Event: 96.059 Thread 0x00000000186d2800 21649       2       com.android.tools.r8.t.a.a.a.f.d0$f::next (8 bytes)
+Event: 96.059 Thread 0x00000000186d2800 nmethod 21649 0x0000000005f33710 code [0x0000000005f33880, 0x0000000005f33a08]
+Event: 96.105 Thread 0x00000000186d2800 21650       2       com.android.tools.r8.t.a.a.a.f.c0::e (35 bytes)
+Event: 96.106 Thread 0x00000000186d2800 nmethod 21650 0x0000000005f332d0 code [0x0000000005f33420, 0x0000000005f335f0]
+Event: 96.110 Thread 0x00000000186d2800 21651       1       com.android.tools.r8.ir.conversion.f0::c (5 bytes)
+Event: 96.111 Thread 0x00000000186d2800 nmethod 21651 0x0000000005292650 code [0x00000000052927a0, 0x0000000005292890]
+
+GC Heap History (10 events):
+Event: 75.059 GC heap before
+{Heap before GC invocations=30 (full 4):
+ PSYoungGen      total 491008K, used 436581K [0x00000000d5580000, 0x00000000fc580000, 0x0000000100000000)
+  eden space 419840K, 100% used [0x00000000d5580000,0x00000000eef80000,0x00000000eef80000)
+  from space 71168K, 23% used [0x00000000eef80000,0x00000000effd95b0,0x00000000f3500000)
+  to   space 69632K, 0% used [0x00000000f8180000,0x00000000f8180000,0x00000000fc580000)
+ ParOldGen       total 280576K, used 226795K [0x0000000080000000, 0x0000000091200000, 0x00000000d5580000)
+  object space 280576K, 80% used [0x0000000080000000,0x000000008dd7afc0,0x0000000091200000)
+ Metaspace       used 111046K, capacity 116186K, committed 116440K, reserved 1150976K
+  class space    used 14273K, capacity 15354K, committed 15360K, reserved 1048576K
+Event: 75.134 GC heap after
+Heap after GC invocations=30 (full 4):
+ PSYoungGen      total 555008K, used 35563K [0x00000000d5580000, 0x00000000fbd00000, 0x0000000100000000)
+  eden space 494080K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3800000)
+  from space 60928K, 58% used [0x00000000f8180000,0x00000000fa43ac78,0x00000000fbd00000)
+  to   space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+ ParOldGen       total 280576K, used 233356K [0x0000000080000000, 0x0000000091200000, 0x00000000d5580000)
+  object space 280576K, 83% used [0x0000000080000000,0x000000008e3e3278,0x0000000091200000)
+ Metaspace       used 111046K, capacity 116186K, committed 116440K, reserved 1150976K
+  class space    used 14273K, capacity 15354K, committed 15360K, reserved 1048576K
+}
+Event: 78.238 GC heap before
+{Heap before GC invocations=31 (full 4):
+ PSYoungGen      total 555008K, used 529643K [0x00000000d5580000, 0x00000000fbd00000, 0x0000000100000000)
+  eden space 494080K, 100% used [0x00000000d5580000,0x00000000f3800000,0x00000000f3800000)
+  from space 60928K, 58% used [0x00000000f8180000,0x00000000fa43ac78,0x00000000fbd00000)
+  to   space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+ ParOldGen       total 280576K, used 233356K [0x0000000080000000, 0x0000000091200000, 0x00000000d5580000)
+  object space 280576K, 83% used [0x0000000080000000,0x000000008e3e3278,0x0000000091200000)
+ Metaspace       used 111099K, capacity 116322K, committed 116440K, reserved 1150976K
+  class space    used 14278K, capacity 15354K, committed 15360K, reserved 1048576K
+Event: 79.322 GC heap after
+Heap after GC invocations=31 (full 4):
+ PSYoungGen      total 562176K, used 68086K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3800000)
+  from space 68096K, 99% used [0x00000000f3800000,0x00000000f7a7d958,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 292864K, used 292847K [0x0000000080000000, 0x0000000091e00000, 0x00000000d5580000)
+  object space 292864K, 99% used [0x0000000080000000,0x0000000091dfbd68,0x0000000091e00000)
+ Metaspace       used 111099K, capacity 116322K, committed 116440K, reserved 1150976K
+  class space    used 14278K, capacity 15354K, committed 15360K, reserved 1048576K
+}
+Event: 79.323 GC heap before
+{Heap before GC invocations=32 (full 5):
+ PSYoungGen      total 562176K, used 68086K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3800000)
+  from space 68096K, 99% used [0x00000000f3800000,0x00000000f7a7d958,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 292864K, used 292847K [0x0000000080000000, 0x0000000091e00000, 0x00000000d5580000)
+  object space 292864K, 99% used [0x0000000080000000,0x0000000091dfbd68,0x0000000091e00000)
+ Metaspace       used 111099K, capacity 116322K, committed 116440K, reserved 1150976K
+  class space    used 14278K, capacity 15354K, committed 15360K, reserved 1048576K
+Event: 85.328 GC heap after
+Heap after GC invocations=32 (full 5):
+ PSYoungGen      total 562176K, used 0K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3800000)
+  from space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 292864K, used 260128K [0x0000000080000000, 0x0000000091e00000, 0x00000000d5580000)
+  object space 292864K, 88% used [0x0000000080000000,0x000000008fe081d0,0x0000000091e00000)
+ Metaspace       used 111074K, capacity 116268K, committed 116440K, reserved 1150976K
+  class space    used 14269K, capacity 15339K, committed 15360K, reserved 1048576K
+}
+Event: 91.813 GC heap before
+{Heap before GC invocations=33 (full 6):
+ PSYoungGen      total 562176K, used 494080K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 100% used [0x00000000d5580000,0x00000000f3800000,0x00000000f3800000)
+  from space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 292864K, used 260128K [0x0000000080000000, 0x0000000091e00000, 0x00000000d5580000)
+  object space 292864K, 88% used [0x0000000080000000,0x000000008fe081d0,0x0000000091e00000)
+ Metaspace       used 111114K, capacity 116282K, committed 116440K, reserved 1150976K
+  class space    used 14271K, capacity 15342K, committed 15360K, reserved 1048576K
+Event: 92.636 GC heap after
+Heap after GC invocations=33 (full 6):
+ PSYoungGen      total 562176K, used 0K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3800000)
+  from space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 292864K, used 265612K [0x0000000080000000, 0x0000000091e00000, 0x00000000d5580000)
+  object space 292864K, 90% used [0x0000000080000000,0x0000000090363288,0x0000000091e00000)
+ Metaspace       used 111114K, capacity 116282K, committed 116440K, reserved 1150976K
+  class space    used 14271K, capacity 15342K, committed 15360K, reserved 1048576K
+}
+Event: 94.470 GC heap before
+{Heap before GC invocations=34 (full 7):
+ PSYoungGen      total 562176K, used 494080K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 100% used [0x00000000d5580000,0x00000000f3800000,0x00000000f3800000)
+  from space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 292864K, used 265612K [0x0000000080000000, 0x0000000091e00000, 0x00000000d5580000)
+  object space 292864K, 90% used [0x0000000080000000,0x0000000090363288,0x0000000091e00000)
+ Metaspace       used 111260K, capacity 116560K, committed 116824K, reserved 1150976K
+  class space    used 14288K, capacity 15411K, committed 15488K, reserved 1048576K
+Event: 95.066 GC heap after
+Heap after GC invocations=34 (full 7):
+ PSYoungGen      total 562176K, used 0K [0x00000000d5580000, 0x0000000100000000, 0x0000000100000000)
+  eden space 494080K, 0% used [0x00000000d5580000,0x00000000d5580000,0x00000000f3800000)
+  from space 68096K, 0% used [0x00000000f3800000,0x00000000f3800000,0x00000000f7a80000)
+  to   space 100352K, 0% used [0x00000000f9e00000,0x00000000f9e00000,0x0000000100000000)
+ ParOldGen       total 425472K, used 173793K [0x0000000080000000, 0x0000000099f80000, 0x00000000d5580000)
+  object space 425472K, 40% used [0x0000000080000000,0x000000008a9b8658,0x0000000099f80000)
+ Metaspace       used 111260K, capacity 116560K, committed 116824K, reserved 1150976K
+  class space    used 14288K, capacity 15411K, committed 15488K, reserved 1048576K
+}
+
+Deoptimization events (10 events):
+Event: 93.089 Thread 0x000000001de50800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003759654 method=java.lang.AbstractStringBuilder.append(Ljava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder; @ 18
+Event: 93.092 Thread 0x000000001de50800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003759654 method=java.lang.AbstractStringBuilder.append(Ljava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder; @ 18
+Event: 93.095 Thread 0x000000001925f000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003516978 method=com.esotericsoftware.kryo.io.Output.writeString(Ljava/lang/CharSequence;)V @ 83
+Event: 93.137 Thread 0x000000001de50800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002defe18 method=java.lang.AbstractStringBuilder.append(Ljava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder; @ 18
+Event: 93.363 Thread 0x0000000018759800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002e63324 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 84
+Event: 93.535 Thread 0x000000001de50800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000043cde6c method=org.gradle.internal.operations.DefaultBuildOperationExecutor$3.stop()V @ 61
+Event: 94.229 Thread 0x0000000018755800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000006350398 method=com.android.tools.r8.ir.regalloc.j.a(I)Z @ 17
+Event: 94.306 Thread 0x0000000018755800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000063194d8 method=com.android.tools.r8.ir.regalloc.a.a(Lcom/android/tools/r8/ir/regalloc/a$a;Z)Lcom/android/tools/r8/ir/regalloc/a$a; @ 2282
+Event: 94.310 Thread 0x0000000018755800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000061a1358 method=com.android.tools.r8.utils.k0.M()Z @ 6
+Event: 95.611 Thread 0x0000000018755800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000004220200 method=com.android.tools.r8.s.b.q1.a(Lcom/android/tools/r8/graph/f;Lcom/android/tools/r8/s/b/X;)Z @ 30
+
+Classes redefined (0 events):
+No events
+
+Internal exceptions (10 events):
+Event: 74.901 Thread 0x0000000018759800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000ec40d348) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 74.989 Thread 0x0000000018759800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000ed62dab0) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 75.035 Thread 0x0000000018758000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000ee10da20) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 75.160 Thread 0x0000000018759800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000d5840900) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 75.303 Thread 0x0000000018758000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000d7663898) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 75.545 Thread 0x0000000018756800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000dad13e08) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 76.216 Thread 0x0000000018759800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e0303d20) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 76.428 Thread 0x0000000018758000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e37b0420) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+Event: 93.535 Thread 0x000000001de50800 Exception <a 'java/lang/reflect/InvocationTargetException'> (0x00000000ddb88dd0) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\runtime\reflection.cpp, line 1092]
+Event: 93.783 Thread 0x0000000018755800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000e7b46d38) thrown at [C:\src\AOSP-openjdk-git\hotspot\src\share\vm\prims\jni.cpp, line 710]
+
+Events (10 events):
+Event: 95.802 Thread 0x0000000018756800 DEOPT PACKING pc=0x0000000005f4937a sp=0x0000000022afa0c0
+Event: 95.802 Thread 0x0000000018756800 DEOPT UNPACKING pc=0x00000000027975d0 sp=0x0000000022afa110 mode 0
+Event: 95.822 Thread 0x0000000018756800 DEOPT PACKING pc=0x00000000053f3aba sp=0x0000000022af9e80
+Event: 95.822 Thread 0x0000000018756800 DEOPT UNPACKING pc=0x00000000027975d0 sp=0x0000000022af9d48 mode 0
+Event: 95.912 Thread 0x0000000018756800 DEOPT PACKING pc=0x00000000053f3aba sp=0x0000000022af9ab0
+Event: 95.912 Thread 0x0000000018756800 DEOPT UNPACKING pc=0x00000000027975d0 sp=0x0000000022af9978 mode 0
+Event: 95.978 Thread 0x0000000018756800 DEOPT PACKING pc=0x00000000052ea7ff sp=0x0000000022afa250
+Event: 95.978 Thread 0x0000000018756800 DEOPT UNPACKING pc=0x00000000027975d0 sp=0x0000000022afa110 mode 0
+Event: 96.033 Thread 0x0000000018755800 DEOPT PACKING pc=0x0000000005f4937a sp=0x00000000229f9d10
+Event: 96.033 Thread 0x0000000018755800 DEOPT UNPACKING pc=0x00000000027975d0 sp=0x00000000229f9d60 mode 0
+
+
+Dynamic libraries:
+0x00007ff7782b0000 - 0x00007ff7782e1000 	C:\Program Files\Android\Android Studio\jre\bin\java.exe
+0x00007ffe0bd60000 - 0x00007ffe0bf50000 	C:\WINDOWS\SYSTEM32\ntdll.dll
+0x00007ffe0abe0000 - 0x00007ffe0ac92000 	C:\WINDOWS\System32\KERNEL32.DLL
+0x00007ffe09920000 - 0x00007ffe09bc5000 	C:\WINDOWS\System32\KERNELBASE.dll
+0x00007ffe0ad40000 - 0x00007ffe0ade5000 	C:\WINDOWS\System32\ADVAPI32.dll
+0x00007ffe0aca0000 - 0x00007ffe0ad3e000 	C:\WINDOWS\System32\msvcrt.dll
+0x00007ffe0a620000 - 0x00007ffe0a6b8000 	C:\WINDOWS\System32\sechost.dll
+0x00007ffe0a1b0000 - 0x00007ffe0a2cb000 	C:\WINDOWS\System32\RPCRT4.dll
+0x00007ffe0aea0000 - 0x00007ffe0b034000 	C:\WINDOWS\System32\USER32.dll
+0x00007ffe08d80000 - 0x00007ffe08da1000 	C:\WINDOWS\System32\win32u.dll
+0x00007ffe0a400000 - 0x00007ffe0a426000 	C:\WINDOWS\System32\GDI32.dll
+0x00007ffe09000000 - 0x00007ffe09198000 	C:\WINDOWS\System32\gdi32full.dll
+0x00007ffe08f60000 - 0x00007ffe08ffe000 	C:\WINDOWS\System32\msvcp_win.dll
+0x00007ffe09c00000 - 0x00007ffe09cfa000 	C:\WINDOWS\System32\ucrtbase.dll
+0x00007ffdebdc0000 - 0x00007ffdec044000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.2274_none_9e8067a5e45c3d75\COMCTL32.dll
+0x00007ffe09e00000 - 0x00007ffe0a136000 	C:\WINDOWS\System32\combase.dll
+0x00007ffe08cd0000 - 0x00007ffe08d54000 	C:\WINDOWS\System32\bcryptPrimitives.dll
+0x00007ffe0ae70000 - 0x00007ffe0ae9e000 	C:\WINDOWS\System32\IMM32.DLL
+0x0000000000520000 - 0x0000000000534000 	C:\WINDOWS\System32\umppc17706.dll
+0x0000000054950000 - 0x0000000054a22000 	C:\Program Files\Android\Android Studio\jre\jre\bin\msvcr100.dll
+0x0000000055380000 - 0x0000000055bcb000 	C:\Program Files\Android\Android Studio\jre\jre\bin\server\jvm.dll
+0x00007ffe0b040000 - 0x00007ffe0b048000 	C:\WINDOWS\System32\PSAPI.DLL
+0x00007ffde13b0000 - 0x00007ffde13b9000 	C:\WINDOWS\SYSTEM32\WSOCK32.dll
+0x00007ffe0a960000 - 0x00007ffe0a9cf000 	C:\WINDOWS\System32\WS2_32.dll
+0x00007ffe02010000 - 0x00007ffe02034000 	C:\WINDOWS\SYSTEM32\WINMM.dll
+0x00007ffe030d0000 - 0x00007ffe030da000 	C:\WINDOWS\SYSTEM32\VERSION.dll
+0x00007ffe01fe0000 - 0x00007ffe0200d000 	C:\WINDOWS\SYSTEM32\WINMMBASE.dll
+0x00007ffe09db0000 - 0x00007ffe09dfa000 	C:\WINDOWS\System32\cfgmgr32.dll
+0x00007ffdfd740000 - 0x00007ffdfd74f000 	C:\Program Files\Android\Android Studio\jre\jre\bin\verify.dll
+0x00007ffdf0290000 - 0x00007ffdf02b9000 	C:\Program Files\Android\Android Studio\jre\jre\bin\java.dll
+0x00007ffdfcdd0000 - 0x00007ffdfcde6000 	C:\Program Files\Android\Android Studio\jre\jre\bin\zip.dll
+0x00007ffe0b550000 - 0x00007ffe0bc37000 	C:\WINDOWS\System32\SHELL32.dll
+0x00007ffe0a350000 - 0x00007ffe0a3f9000 	C:\WINDOWS\System32\shcore.dll
+0x00007ffe091a0000 - 0x00007ffe0991c000 	C:\WINDOWS\System32\windows.storage.dll
+0x00007ffe08c20000 - 0x00007ffe08c3e000 	C:\WINDOWS\System32\profapi.dll
+0x00007ffe08c80000 - 0x00007ffe08cca000 	C:\WINDOWS\System32\powrprof.dll
+0x00007ffe08c10000 - 0x00007ffe08c20000 	C:\WINDOWS\System32\UMPDC.dll
+0x00007ffe0a790000 - 0x00007ffe0a7e2000 	C:\WINDOWS\System32\shlwapi.dll
+0x00007ffe08c60000 - 0x00007ffe08c71000 	C:\WINDOWS\System32\kernel.appcore.dll
+0x00007ffe08d60000 - 0x00007ffe08d77000 	C:\WINDOWS\System32\cryptsp.dll
+0x00007ffdfcd60000 - 0x00007ffdfcd7a000 	C:\Program Files\Android\Android Studio\jre\jre\bin\net.dll
+0x00007ffe08450000 - 0x00007ffe084b7000 	C:\WINDOWS\system32\mswsock.dll
+0x00007ffdf5570000 - 0x00007ffdf5583000 	C:\Program Files\Android\Android Studio\jre\jre\bin\nio.dll
+0x00007ffde2310000 - 0x00007ffde2337000 	C:\Users\10076532\.gradle\native\f6784746aeab05261644944871eae4fe03e0ef1612fff0a4a95f87b438bc6780\windows-amd64\native-platform.dll
+0x00007ffdfce80000 - 0x00007ffdfce8d000 	C:\Program Files\Android\Android Studio\jre\jre\bin\management.dll
+0x00007ffe07d50000 - 0x00007ffe07d83000 	C:\WINDOWS\system32\rsaenh.dll
+0x00007ffe09bd0000 - 0x00007ffe09bf6000 	C:\WINDOWS\System32\bcrypt.dll
+0x00007ffe08b00000 - 0x00007ffe08b25000 	C:\WINDOWS\SYSTEM32\USERENV.dll
+0x00007ffe08620000 - 0x00007ffe0862c000 	C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
+0x00007ffe08160000 - 0x00007ffe0819a000 	C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
+0x00007ffe0bd10000 - 0x00007ffe0bd18000 	C:\WINDOWS\System32\NSI.dll
+0x00007ffdfee30000 - 0x00007ffdfee46000 	C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
+0x00007ffdfebf0000 - 0x00007ffdfec0c000 	C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
+0x00007ffe081a0000 - 0x00007ffe0826a000 	C:\WINDOWS\SYSTEM32\DNSAPI.dll
+0x00007ffe002e0000 - 0x00007ffe002eb000 	C:\WINDOWS\SYSTEM32\WINNSI.DLL
+0x00007ffdeffe0000 - 0x00007ffdf0004000 	C:\Program Files\Android\Android Studio\jre\jre\bin\sunec.dll
+0x00007ffe07910000 - 0x00007ffe07941000 	C:\WINDOWS\SYSTEM32\ntmarta.dll
+
+VM Arguments:
+jvm_args: -Xmx2048m -Dfile.encoding=UTF-8 -Duser.country=CN -Duser.language=zh -Duser.variant 
+java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 6.5
+java_class_path (initial): C:\Users\10076532\.gradle\wrapper\dists\gradle-6.5-all\2oz4ud9k3tuxjg84bbf55q0tn\gradle-6.5\lib\gradle-launcher-6.5.jar
+Launcher Type: SUN_STANDARD
+
+Environment Variables:
+JAVA_HOME=C:\Program Files\Java\jdk1.8.0_281
+CLASSPATH=.C:\Program Files\Java\jdk1.8.0_281\lib;C:\Program Files\Java\jdk1.8.0_281\lib\tools.jar
+PATH=C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Java\jdk1.8.0_281\bin;C:\Program Files\Java\jdk1.8.0_281\jre\bin;C:\Program Files\Git\cmd;C:\Program Files\dotnet\;C:\Program Files (x86)\Tencent\微信web开发者工具\dll;C:\Program Files\nodejs\;C:\MyFiles\savefile\swigwin-4.1.1;C:\Users\10076532\AppData\Local\Android\Sdk\ndk\21.4.7075529;C:\Users\10076532\AppData\Local\Android\android-sdk\platform-tools;C:\Users\11037560\AppData\Local\Microsoft\WindowsApps;C:\Users\11037560\.dotnet\tools;C:\Program Files\JetBrains\IntelliJ IDEA 2022.2.1\bin;;C:\MyFiles\savefile\apache-maven-3.8.1\bin;C:\Users\11037560\AppData\Roaming\npm;C:\MyFiles\savefile\swigwin-4.1.1;C:\Users\10076532\AppData\Local\Android\Sdk\ndk\21.4.7075529;
+USERNAME=11037560
+OS=Windows_NT
+PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
+
+
+
+---------------  S Y S T E M  ---------------
+
+OS: Windows 10.0 , 64 bit Build 18362 (10.0.18362.2274)
+
+CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 78 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, rtm, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
+
+Memory: 4k page, physical 8266316k(585872k free), swap 16595860k(5800k free)
+
+vm_info: OpenJDK 64-Bit Server VM (25.242-b01) for windows-amd64 JRE (1.8.0_242-release-1644-b01), built by "builder" with MS VC++ 10.0 (VS2010)
+
+time: Mon Feb 05 14:21:26 2024
+timezone: 中国标准时间
+elapsed time: 96 seconds (0d 0h 1m 36s)
+

File diff suppressed because it is too large
+ 51 - 0
replay_pid14808.log


File diff suppressed because it is too large
+ 517 - 0
replay_pid540.log


File diff suppressed because it is too large
+ 118 - 0
replay_pid6376.log


Some files were not shown because too many files changed in this diff